/* =============================================
   CEDAR HOTELS & RESORTS - MODERN STYLESHEET
   Ultra-Premium Glassmorphism Design
   ============================================= */

/* Design Tokens */
:root {
    /* Premium Color Palette */
    --primary: #fef4e0;
    --primary-light: #ffffff;
    --primary-dark: #e6dbc5;
    --primary-glow: rgba(254, 244, 224, 0.3);

    --accent: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.3);

    --dark: #221713;
    --dark-light: #2d1f1a;
    --dark-surface: rgba(34, 23, 19, 0.8);
    --surface-light: #fff9eb;

    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;

    /* Glassmorphism */
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-strong: rgba(255, 255, 255, 0.1);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 60px var(--primary-glow);

    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    line-height: 1.7;
    color: var(--gray-100);
    background: var(--dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(254, 244, 224, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(6, 182, 212, 0.1), transparent),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(254, 244, 224, 0.08), transparent);
    pointer-events: none;
    z-index: -1;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* =============================================
   NAVIGATION - Glassmorphism
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(3, 7, 18, 0.95);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo span {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 8px;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.footer .logo-img {
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
    background: var(--glass);
}

.nav-links a.active {
    color: var(--white);
    background: var(--glass-strong);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px var(--primary-glow) !important;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu span {
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO SECTION - Immersive Design
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 7, 18, 0.7) 0%, rgba(3, 7, 18, 0.4) 50%, rgba(3, 7, 18, 0.8) 100%),
        url('../images/client/AJ/AJ.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    animation: heroZoom 30s ease-in-out infinite;
}

@keyframes heroZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23f59e0b' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero h1 span.gradient {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray-400);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
    font-size: 0.85rem;
    animation: bounce 2.5s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.5;
    }
}

/* =============================================
   BUTTONS - Modern Glass
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    box-shadow: 0 8px 32px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px var(--primary-glow);
}

.btn-outline {
    background: var(--glass);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-strong);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-outline-light:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark-light);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--primary);
    transform: translateY(-4px);
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* =============================================
   STATS SECTION - Floating Cards
   ============================================= */
.stats {
    padding: 80px 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 60px 0;
    position: relative;
}

.section-white {
    background: var(--surface-light);
}

.section-white,
.section-white .section-header h2,
.section-white h2,
.section-white h3,
.section-white h4 {
    color: var(--gray-900);
}

.section-white p,
.section-white .lead {
    color: var(--gray-600);
}

.section-light {
    background: var(--gray-50);
}

.section-light,
.section-light .section-header h2,
.section-light h2,
.section-light h3,
.section-light h4 {
    color: var(--gray-900);
}

.section-light p {
    color: var(--gray-600);
}

.section-dark {
    background: var(--dark);
}

.section-gradient {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 100px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-white .badge,
.section-light .badge {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(6, 182, 212, 0.05));
    color: var(--primary-dark);
}

.section-header h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray-400);
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: 64px;
}

/* =============================================
   BENTO GRID - Modern Services Layout
   ============================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 24px;
}

.bento-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
}

/* Bento Card Sizes */
.bento-main {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
    padding: 0;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
}

.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Background Image Cards */
.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.bento-card:hover .bento-bg {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.3) 0%, rgba(3, 7, 18, 0.9) 100%);
}

.bento-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    width: 100%;
}

/* Bento Icons */
.bento-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Gradient Variant */
.bento-gradient {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.bento-gradient:hover {
    border-color: var(--primary-light);
}

/* Accent Variant */
.bento-accent {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-color: rgba(6, 182, 212, 0.3);
}

.bento-accent:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.15);
}

/* Glow Effect */
.bento-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Bento Tags */
.bento-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.bento-tags span {
    padding: 6px 14px;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Bento Stats */
.bento-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.bento-stat .stat-num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-stat .stat-text {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* Bento Metric */
.bento-metric {
    margin-top: 20px;
    text-align: center;
    padding: 20px;
    background: var(--glass);
    border-radius: var(--radius);
}

.bento-metric .metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-metric .metric-label {
    color: var(--gray-400);
    font-size: 0.85rem;
}

/* Bento Features */
.bento-features {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.bento-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 0.9rem;
}

.bento-features .feature span {
    font-size: 1.2rem;
}

/* Bento Light Theme */
.section-light .bento-card,
.section-white .bento-card {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow);
}

.section-light .bento-card:hover,
.section-white .bento-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.12);
}

.section-light .bento-card h3,
.section-white .bento-card h3 {
    color: var(--gray-900);
}

.section-light .bento-card p,
.section-white .bento-card p {
    color: var(--gray-600);
}

.section-light .bento-content h3,
.section-white .bento-content h3 {
    color: var(--white);
}

.section-light .bento-content p,
.section-white .bento-content p {
    color: var(--gray-300);
}

.section-light .bento-stat .stat-text,
.section-white .bento-stat .stat-text {
    color: var(--gray-600);
}

.section-light .bento-tags span,
.section-white .bento-tags span {
    background: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-700);
}

.section-light .bento-metric,
.section-white .bento-metric {
    background: var(--gray-50);
}

.section-light .bento-metric .metric-label,
.section-white .bento-metric .metric-label {
    color: var(--gray-600);
}

.section-light .bento-gradient,
.section-white .bento-gradient {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.section-light .bento-accent,
.section-white .bento-accent {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(6, 182, 212, 0.03) 100%);
    border-color: rgba(6, 182, 212, 0.2);
}

.section-light .bento-glow,
.section-white .bento-glow {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

.section-light .bento-features .feature,
.section-white .bento-features .feature {
    color: var(--gray-100);
}

/* Bento Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-main {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }

    .bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-main,
    .bento-wide,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-main {
        min-height: 350px;
    }

    .bento-wide {
        min-height: 250px;
    }
}

/* =============================================
   SERVICES GRID - Glassmorphism Cards
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(245, 158, 11, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 4px 12px var(--primary-glow));
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
}

.service-card p {
    color: var(--gray-400);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Light section service cards */
.section-light .service-card,
.section-white .service-card {
    background: var(--white);
    border-color: var(--gray-200);
}

.section-light .service-card h3,
.section-white .service-card h3 {
    color: var(--gray-900);
}

.section-light .service-card p,
.section-white .service-card p {
    color: var(--gray-600);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-content p {
    color: var(--gray-400);
    margin-bottom: 28px;
    line-height: 1.9;
}

.highlights {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.highlight {
    padding: 12px 24px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.highlight:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.about-visual {
    position: relative;
}

.visual-card {
    aspect-ratio: 1;
    background:
        linear-gradient(135deg, rgba(3, 7, 18, 0.3) 0%, rgba(3, 7, 18, 0.6) 100%),
        url('../images/client/ushashree/Ushasree.jpeg');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.15), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.1), transparent 50%);
}

.visual-card::after {
    display: none;
}

.floating-stat {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fs-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.fs-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* =============================================
   WHY CEDAR
   ============================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-glow), transparent 30%);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: var(--transition);
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.why-card:hover::before {
    opacity: 0.5;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.why-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.why-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.why-stat {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(6, 182, 212, 0.1));
    color: var(--primary-light);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.15rem;
    margin-bottom: 36px;
    position: relative;
}

.cta-section .btn-primary {
    background: var(--dark);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark);
    padding: 80px 0 32px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a,
.footer-links li {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.15), transparent 60%),
        radial-gradient(ellipse at 100% 100%, rgba(6, 182, 212, 0.1), transparent 50%);
}

.page-header h1 {
    font-size: clamp(2.75rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
}

.page-header p {
    color: var(--gray-400);
    font-size: 1.15rem;
    position: relative;
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */
.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-text .lead {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.9;
}

.about-image .image-card {
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.about-image .image-card::before {
    content: '🌲';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    opacity: 0.5;
}

/* Mission Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mv-card {
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
}

.mv-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.mv-card p {
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline-year {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
}

.team-avatar::after {
    content: '👤';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.team-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.team-role {
    color: var(--primary-light);
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* =============================================
   SERVICES PAGE STYLES
   ============================================= */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-full-card {
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    display: flex;
    gap: 32px;
    transition: var(--transition);
}

.service-full-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.sfc-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.sfc-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.sfc-content>p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.sfc-list {
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
}

.sfc-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sfc-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 10px 24px 32px;
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-num {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 12px;
    line-height: 1;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
}

/* =============================================
   CLIENTELE PAGE STYLES
   ============================================= */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.client-card {
    background: var(--surface-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-100);
}

.client-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.client-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.client-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.client-image {
    height: 220px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.client-card.featured .client-image {
    height: 100%;
    min-height: 350px;
}

.client-image::after {
    display: none;
}

.client-info {
    padding: 28px;
}

.client-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.client-details {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 500;
}

/* =============================================
   PROPERTY DETAIL SECTIONS
   ============================================= */
.property-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--glass-border);
}

.property-section:nth-child(even) {
    background: transparent;
}

.property-section:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.property-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.property-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.property-location {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-description {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.property-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
}

.prop-stat-item {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
}

.prop-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.prop-stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.property-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 250px 250px;
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

.gallery-img.large {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .property-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .property-gallery {
        order: -1;
    }
}

.client-location {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.client-desc {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Destinations */
/* Destinations */
.destinations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dest-card {
    width: 190px;
    background: var(--surface-light);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.dest-flag {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.dest-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.dest-card p {
    font-size: 0.85rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.testimonial-card>p {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-card>p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 4px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    position: relative;
}

.author-avatar::after {
    content: '👤';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* =============================================
   CHANNEL PARTNERS STYLES
   ============================================= */
.channel-section {
    background: var(--surface-light);
    padding: 80px 0;
    text-align: center;
}

.channel-section h2 {
    color: var(--dark);
    margin-bottom: 12px;
}

.channel-section p {
    color: var(--gray-600);
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}

@media (max-width: 992px) {
    .channel-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

.channel-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100px;
}

.channel-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.channel-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #221713;
}

.contact-info>p {
    margin-bottom: 40px;
    line-height: 1.9;
    color: #221713;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 23, 19, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.ci-icon {
    font-size: 1.75rem;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    color: #221713;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: #221713;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 23, 19, 0.1);
    border-radius: var(--radius);
    color: #221713;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(34, 23, 19, 0.1);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #221713;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: var(--font);
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(34, 23, 19, 0.1);
    border-radius: var(--radius);
    color: #221713;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239ca3af' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Maps */
.map-section {
    padding: 80px 0;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-card {
    text-align: center;
}

.map-placeholder {
    height: 220px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
}

.map-placeholder span {
    font-size: 5rem;
    position: relative;
    z-index: 1;
}

.map-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.map-card p {
    color: var(--gray-400);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    line-height: 1.8;
}

/* =============================================
   GRADIENT BACKGROUNDS
   ============================================= */
.gradient-1 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/261102/pexels-photo-261102.jpeg?auto=compress&cs=tinysrgb&w=600');
    background-size: cover;
    background-position: center;
}

.gradient-2 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/1134176/pexels-photo-1134176.jpeg?auto=compress&cs=tinysrgb&w=600');
    background-size: cover;
    background-position: center;
}

.gradient-3 {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/2869215/pexels-photo-2869215.jpeg?auto=compress&cs=tinysrgb&w=600');
    background-size: cover;
    background-position: center;
}

.gradient-dubai {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/1134176/pexels-photo-1134176.jpeg?auto=compress&cs=tinysrgb&w=800');
    background-size: cover;
    background-position: center;
}

.gradient-munnar {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/3225531/pexels-photo-3225531.jpeg?auto=compress&cs=tinysrgb&w=600');
    background-size: cover;
    background-position: center;
}

.gradient-ooty {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/338504/pexels-photo-338504.jpeg?auto=compress&cs=tinysrgb&w=600');
    background-size: cover;
    background-position: center;
}

.gradient-coorg {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/2034335/pexels-photo-2034335.jpeg?auto=compress&cs=tinysrgb&w=600');
    background-size: cover;
    background-position: center;
}

.gradient-wayanad {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/53464/sheraton-palace-hotel-lobby-architecture-san-francisco-53464.jpeg?auto=compress&cs=tinysrgb&w=600');
    background-size: cover;
    background-position: center;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .destinations-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .dest-card {
        width: auto;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3, 7, 18, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-top: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
    }

    .mobile-menu {
        display: flex;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .stats {
        margin-top: -60px;
    }

    .services-grid,
    .mv-grid,
    .team-grid,
    .services-full-grid,
    .process-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .about-full-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .clients-grid,
    .testimonials-grid,
    .maps-grid {
        grid-template-columns: 1fr;
    }

    .client-card.featured {
        grid-column: span 1;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-btns {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .service-full-card {
        flex-direction: column;
        text-align: center;
        padding: 36px;
    }

    .contact-form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .highlight {
        text-align: center;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        text-align: center;
    }
}