/* ============================================
   TREHAN PROPERTIES — Premium + Interactive
   Color Theme: Navy + Gold on White
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
    /* Core Colors — Navy + Gold Theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-card-alt: #F8FAFC;
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;

    /* Text Colors */
    --text-heading: #111827;
    --text-body: #6B7280;
    --text-muted: #9CA3AF;
    --text-subtle: #D1D5DB;

    /* Primary — Navy */
    --navy: #0F172A;
    --navy-light: #1E293B;
    --navy-glow: rgba(15, 23, 42, 0.06);
    --navy-glow-strong: rgba(15, 23, 42, 0.12);

    /* Accent — Gold */
    --gold: #D4AF37;
    --gold-hover: #B8962E;
    --gold-light: #E5C961;
    --gold-glow: rgba(212, 175, 55, 0.1);
    --gold-glow-strong: rgba(212, 175, 55, 0.2);

    /* Core */
    --white: #FFFFFF;
    --black: #111827;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 4rem 0;
    --container-max: 1280px;
    --container-padding: 0 2rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body.menu-open {
    overflow: hidden !important;
    height: 100vh !important;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ---- SECTION LABEL ---- */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}

/* ---- SECTION TITLE ---- */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--navy-glow-strong);
}

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

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all var(--transition-base);
    background: var(--navy);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-base);
}

.logo-img {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-base);
}

.nav-logo:hover .logo-icon,
.nav-logo:hover .logo-img {
    transform: scale(1.05) rotate(-2deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy);
    min-width: 260px;
    padding: 1rem 0;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(255,255,255,0.05);
    color: var(--gold);
    padding-left: 1.75rem;
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 0.4rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 2rem 4rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--gold);
    transform: translateX(10px);
}

.mobile-dropdown-links {
    list-style: none;
    margin-left: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: none; /* Hidden by default */
}

.mobile-dropdown-links.active {
    display: block; /* Shown when active */
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-dropdown-item {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.mobile-dropdown-item:hover {
    color: var(--gold);
}

.mobile-social-icons {
    display: flex;
    gap: 1.5rem;
}

.mobile-social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.mobile-social-icons a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0 5rem;
    overflow: hidden;
    background: #eef7ff; /* Light bluish background as in reference */
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.7vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 0.5rem;
}

.hero-established-text {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.3rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    align-self: flex-start;
}

.hero-cta-group {
    margin: 0;
    z-index: 5;
    position: relative;
}

#hero-btn-primary {
    background-color: #0F172A !important; /* Navy */
    color: #FFFFFF !important; /* White */
    display: inline-flex !important;
    padding: 0.9rem 2.3rem !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    min-width: 180px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

#hero-btn-primary:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2) !important;
    background-color: #0F172A !important;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-visual {
    height: 100%;
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    height: 75vh;
    border-top-left-radius: 120px;
    border-bottom-left-radius: 120px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet Overrides */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 4rem;
    }
    
    .hero-image-placeholder {
        height: 50vh;
        border-radius: var(--radius-lg);
    }
    
    .search-fields {
        flex-wrap: wrap;
    }
    
    .search-field {
        flex: 1 1 200px;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Devices Overrides */
@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 3rem;
    }
    .hero-container {
        display: flex;
        flex-direction: column;
        padding: 0 1.25rem;
        width: 100%;
        margin: 0 auto;
        gap: 2.5rem;
    }
    .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: 1.8rem;
        width: 100%;
    }
    .hero-subtitle {
        font-size: 0.85rem;
        margin: 0 auto 1.5rem;
        width: 100%;
    }
    .hero-established-text {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin: 0 auto 1.5rem;
        display: inline-flex;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem auto 0;
        width: 100%;
        align-items: center;
    }
    .hero-visual {
        width: 100%;
        margin-top: 2rem;
    }
    .hero-image-placeholder {
        height: 40vh;
        border-radius: var(--radius-lg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    #hero-btn-primary {
        width: 100%;
        max-width: 300px;
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
    }
}

/* ================================================
   ABOUT / OVERVIEW
   ================================================ */
.about-overview {
    padding: var(--section-padding);
    position: relative;
    background: var(--navy);
}

.about-overview .section-label span:last-child {
    color: var(--gold);
}

.about-overview .section-label .label-line {
    background: var(--gold);
}

.about-overview .section-title {
    color: var(--white);
}

.about-overview .about-text {
    color: rgba(255, 255, 255, 0.7);
}

.about-overview .about-tagline {
    color: var(--gold);
    border-left-color: var(--gold);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-left .section-title {
    position: sticky;
    top: 120px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.85;
}

.about-tagline {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 1rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--gold);
    line-height: 1.6;
}

/* ================================================
   SOLUTIONS INTRO
   ================================================ */
.solutions-intro {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.solutions-intro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.3;
}

.solutions-intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solutions-intro-content .section-label {
    justify-content: center;
}

.solutions-title {
    margin-bottom: 2rem;
}

.solutions-text {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.solutions-quote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    font-style: italic;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    background: var(--gold-glow);
    position: relative;
}

.solutions-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: var(--font-heading);
    line-height: 1;
}

/* ================================================
   SERVICES
   ================================================ */
.services {
    padding: var(--section-padding);
    background: var(--navy);
}

.services .section-label span:last-child {
    color: var(--gold);
}

.services .section-label .label-line {
    background: var(--gold);
}

.services .service-title {
    color: var(--white);
}

.services .service-text {
    color: rgba(255, 255, 255, 0.7);
}

.services .service-tagline {
    color: var(--gold);
    border-left-color: var(--gold);
}

.services .service-link {
    color: var(--gold);
}

.services .service-link:hover {
    color: var(--gold-light);
}

.services .service-number {
    color: var(--gold);
    opacity: 0.08;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    position: relative;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block-reverse {
    direction: rtl;
}

.service-block-reverse > * {
    direction: ltr;
}

.service-visual {
    position: relative;
}

.service-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.service-block:hover .service-image-placeholder::before {
    opacity: 1;
}

.service-block:hover .service-image-placeholder {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-heading);
    letter-spacing: -0.01em;
}

.service-text {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.85;
}

.service-tagline {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    font-style: italic;
    padding-left: 1rem;
    border-left: 2px solid var(--gold);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 0.5rem;
    transition: all var(--transition-base);
}

.service-link:hover {
    gap: 0.8rem;
    color: var(--gold-hover);
}

.service-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-base);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ================================================
   WHY CHOOSE US
   ================================================ */
.why-us {
    padding: var(--section-padding);
    position: relative;
    background: var(--bg-secondary);
}

.why-us-header {
    max-width: 700px;
    margin-bottom: 4rem;
}

.why-us-header .section-title {
    margin-bottom: 1.5rem;
}

.why-us-intro {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

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

.why-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08),
                0 0 40px var(--gold-glow);
}

.why-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    transition: all var(--transition-base);
}

.why-card:hover .why-card-icon {
    background: var(--gold);
    color: var(--navy);
}

.why-card-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

.why-us-promise {
    text-align: center;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.why-us-promise p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.why-us-closing {
    text-align: center;
}

.why-us-closing p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    font-style: italic;
}

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow-strong) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.cta-highlight {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.cta-buttons .btn-primary:hover {
    background: var(--white);
    color: var(--navy);
}

.cta-buttons .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: 5rem 0 3rem;
    border-top: none;
    background: var(--navy);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.footer-logo .logo-img {
    height: 43px;
    width: auto;
}

.footer-logo .logo-text {
    font-size: 1.1rem;
    color: var(--white);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-list a,
.footer-list span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-list a:hover {
    color: var(--gold);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact-list i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ================================================
   BOTTOM STRIP
   ================================================ */
.bottom-strip {
    padding: 1.5rem 0;
    background: #0a0f1d; /* Slightly darker than navy for depth */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.bottom-strip p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.03em;
    font-weight: 400;
}

.bottom-strip a {
    color: var(--white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all var(--transition-base);
}

.bottom-strip a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

/* ================================================
   CONTACT PAGE SPECIFIC
   ================================================ */
.contact-page-hero {
    padding: 10rem 0 6rem;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.contact-page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.contact-page-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-section {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-glow);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-card-content p, 
.contact-card-content a {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-card-content a:hover {
    color: var(--gold);
}

.contact-form-container {
    background: var(--bg-card);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

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

.map-section {
    margin-top: 4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    border: 1px solid var(--border-light);
}

/* ================================================
   FLOATING ACTIONS (WhatsApp, Call, Email)
   ================================================ */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    text-decoration: none;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.call {
    background: var(--navy);
}

.floating-btn.email {
    background: var(--gold);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ================================================
   RESPONSIVE DESIGN — 200px to 2560px
   ================================================ */

/* Ultra-wide (1920px+) */
@media (min-width: 1920px) {
    :root {
        --container-max: 1400px;
    }

    html {
        font-size: 18px;
    }
}

/* Large Desktop (1440px) */
@media (max-width: 1440px) {
    .hero-container {
        gap: 3rem;
    }
}

/* Medium Desktop */
@media (max-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 3rem 0;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }

    /* 30% reduction for 425px - 1024px range */
    @media (min-width: 425px) {
        .hero-visual {
            max-width: 280px;
        }
    }

    .hero-quote {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--gold);
        padding-top: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-left .section-title {
        position: static;
    }

    .service-block,
    .service-block-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .service-block {
        margin-bottom: 4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    :root {
        --section-padding: 2.5rem 0;
        --container-padding: 0 1.5rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }

    .hero-stat-card {
        display: none;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 2rem 1.5rem;
    }

    .why-us-promise {
        padding: 2rem 1.5rem;
    }

    .cta-content {
        padding: 3rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .strip-content {
        flex-direction: column;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-form-container {
        padding: 2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root {
        --container-padding: 0 1rem;
    }

    html {
        font-size: 15px;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .service-number {
        font-size: 3rem;
        top: -10px;
        right: -10px;
    }

    .solutions-quote {
        padding: 1.5rem;
        font-size: 1.05rem;
    }

    .cta-content {
        padding: 2.5rem 1.5rem;
        border-radius: var(--radius-lg);
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-nav-link {
        font-size: 1.5rem;
    }
}

/* Ultra Small */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero-image-placeholder {
        aspect-ratio: 1/1;
    }
}

/* Minimum (200px) */
@media (max-width: 280px) {
    html {
        font-size: 12px;
    }

    :root {
        --container-padding: 0 0.75rem;
    }

    .hero-badge {
        font-size: 0.6rem;
    }

    .hero-visual {
        display: none;
    }

    .why-card {
        padding: 1.5rem 1rem;
    }
}

/* Force hero and service image reduction for 425px-1024px */
@media (min-width: 425px) and (max-width: 1024px) {
    .hero-visual, .hero-image-placeholder {
        max-width: 340px !important;
        height: auto !important;
        margin: 2rem auto !important;
    }
    .service-image-placeholder {
        max-width: 85% !important;
        height: auto !important;
        aspect-ratio: auto !important;
        margin: 2rem auto !important;
    }
    .hero-img, .service-img {
        height: auto !important;
    }
}
