/* CSS Reset and Variables */
:root {
    /* Brand Colors */
    --primary-color: #0f2c59;      /* Deep Rich Blue */
    --primary-light: #1e4f9c;
    --accent-color: #d97706;       /* Warm Gold */
    --accent-light: #f59e0b;       /* Bright Amber */
    --secondary-color: #059669;    /* Emerald Green from Logo */
    --danger-color: #dc2626;       /* Red from Logo */
    
    /* Social Colors */
    --whatsapp-color: #25d366;     /* WhatsApp Green */
    --phone-color: #0284c7;        /* Dial/Sky Blue */
    
    /* Neutral Tones */
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --bg-card-dark: #1e293b;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --border-color: #e2e8f0;
    
    /* Layout & Effects */
    --container-width: 1240px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px -5px rgba(15, 44, 89, 0.1), 0 8px 10px -6px rgba(15, 44, 89, 0.05);
    --shadow-hover: 0 20px 35px -5px rgba(15, 44, 89, 0.15), 0 10px 15px -5px rgba(15, 44, 89, 0.1);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    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-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(217, 119, 6, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 255, 255, 0.1);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* Hero CTA Buttons */
.btn-contact-hero {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(217, 119, 6, 0.35);
}

.btn-contact-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.5);
    filter: brightness(1.1);
}

.btn-whatsapp-hero {
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white !important;
    border: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    filter: brightness(1.1);
}

/* Sections Styling */
.section-padding {
    padding: 6.5rem 0;
}

.bg-light {
    background-color: #f1f5f9;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    background-color: rgba(217, 119, 6, 0.1);
}

.tag-light {
    color: var(--accent-light);
    background-color: rgba(245, 158, 11, 0.15);
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.5px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.line-left {
    margin-left: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Header & Sticky Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: transparent;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.site-header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px -2px rgba(15, 44, 89, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.site-header.sticky .nav-logo {
    height: 42px;
    width: 42px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    line-height: 1.1;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.brand-subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
}

.site-header.sticky .brand-title {
    color: var(--primary-color);
}

.site-header.sticky .brand-subtitle {
    color: var(--text-muted);
}

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: white;
}

.site-header.sticky .nav-link {
    color: var(--text-dark);
}

.site-header.sticky .nav-link:hover {
    color: var(--primary-color);
}

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

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

.site-header.sticky .nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Nav Contact Icons */
.contact-nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-contact-icon.call {
    background-color: var(--phone-color);
}

.nav-contact-icon.whatsapp {
    background-color: var(--whatsapp-color);
}

.nav-contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.btn-nav {
    background-color: var(--accent-color);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
}

.btn-nav:hover {
    background-color: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.2);
}

.btn-nav::after {
    display: none;
}

/* Hamburger Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.site-header.sticky .mobile-toggle span {
    background-color: var(--primary-color);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    padding: 2rem;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    backdrop-filter: blur(4px);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.drawer-logo {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.drawer-close {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.drawer-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: block;
    padding: 0.3rem 0;
}

.drawer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.drawer-btn {
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 0.8rem;
    border-radius: 8px;
}

.drawer-btn:hover {
    background-color: var(--accent-light);
    color: white;
    padding-left: 0;
}

.drawer-contact-quick {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.drawer-quick-btn {
    padding: 0.6rem 0.4rem;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.drawer-quick-btn.call {
    background-color: var(--phone-color);
}

.drawer-quick-btn.whatsapp {
    background-color: var(--whatsapp-color);
}

.drawer-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.drawer-footer p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 6rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    transform: scale(1.04);
    transition: transform 0.5s ease;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: particleDrift linear infinite;
}

.hero-particle.p1 { width: 300px; height: 300px; background: var(--accent-color); top: -80px; left: 15%; animation-duration: 18s; animation-delay: 0s; }
.hero-particle.p2 { width: 200px; height: 200px; background: var(--primary-light); top: 40%; right: 5%; animation-duration: 22s; animation-delay: -4s; }
.hero-particle.p3 { width: 150px; height: 150px; background: var(--secondary-color); bottom: 5%; left: 40%; animation-duration: 15s; animation-delay: -8s; }
.hero-particle.p4 { width: 100px; height: 100px; background: var(--accent-light); top: 20%; left: 5%; animation-duration: 20s; animation-delay: -2s; }
.hero-particle.p5 { width: 250px; height: 250px; background: var(--primary-color); bottom: -60px; right: 20%; animation-duration: 25s; animation-delay: -10s; }

@keyframes particleDrift {
    0% { transform: translateY(0) scale(1); opacity: 0.12; }
    50% { transform: translateY(-40px) scale(1.1); opacity: 0.18; }
    100% { transform: translateY(0) scale(1); opacity: 0.12; }
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-col {
    text-align: left;
}

.hero-center-layout {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-center-layout .hero-ctas {
    justify-content: center;
}

/* Fade in Animation for Hero Content */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Second gradient accent on hero title */
.accent-gradient-2 {
    background: linear-gradient(135deg, #34d399, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--secondary-color);
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.12;
    font-weight: 800;
    color: white;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.accent-text {
    background: linear-gradient(135deg, var(--accent-light), #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    animation: heroFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* Feature Pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
}

.feature-pill i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Trust Stats Bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: fit-content;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 0.15rem;
}

.trust-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* Quick Contacts in Hero */
.hero-quick-contacts {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white !important;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
}

.quick-contact-pill.call:hover {
    background-color: var(--phone-color);
    border-color: var(--phone-color);
    transform: translateY(-2px);
}

.quick-contact-pill.whatsapp:hover {
    background-color: var(--whatsapp-color);
    border-color: var(--whatsapp-color);
    transform: translateY(-2px);
}

.quick-contact-pill i {
    font-size: 1.1rem;
}

/* Big Hero Logo Redesigned */
.hero-logo-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    padding: 1.5rem;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255,255,255,0.08),
        inset 0 1px 0 rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatAnimation 6s ease-in-out infinite;
}

/* Orbit Rings */
.logo-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbitSpin linear infinite;
}

.logo-orbit-ring.ring-1 {
    width: 420px;
    height: 420px;
    animation-duration: 20s;
}

.logo-orbit-ring.ring-2 {
    width: 490px;
    height: 490px;
    border-color: rgba(245, 158, 11, 0.15);
    animation-duration: 30s;
    animation-direction: reverse;
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-big-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.06),
        var(--shadow-lg);
}

.logo-floating-glow {
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    top: -5%;
    left: -5%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12) 0%, rgba(255,255,255,0) 65%);
    pointer-events: none;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.05); }
}

/* Floating Badges around logo */
.logo-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 3;
}

.logo-floating-badge i {
    color: var(--accent-light);
    font-size: 0.9rem;
}

.badge-top-right {
    top: 8%;
    right: -14%;
    animation: floatBadgeA 5s ease-in-out infinite;
}

.badge-bottom-left {
    bottom: 8%;
    left: -14%;
    animation: floatBadgeB 5s ease-in-out infinite;
}

@keyframes floatBadgeA {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

@keyframes floatBadgeB {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* Hero Info Bar */
.hero-info-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-bar-item:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.15);
    padding-right: 1.5rem;
}

.info-bar-item i {
    font-size: 1.8rem;
    color: var(--accent-light);
}

.info-bar-item h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.1rem;
}

.info-bar-item p {
    font-size: 0.8rem;
    color: rgba(248, 250, 252, 0.7);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mouse-icon {
    width: 18px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background-color: var(--accent-light);
    border-radius: 1.5px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

/* About Us Section Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-text-column h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.about-text-column p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.experience-stats {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-card {
    flex: 1;
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.about-vision-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: white;
    padding: 2.2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 44, 89, 0.04);
    display: flex;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

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

.card-icon-box {
    width: 54px;
    height: 54px;
    background-color: rgba(15, 44, 89, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.vision-card .card-icon-box {
    background-color: rgba(217, 119, 6, 0.08);
}

.vision-card .card-icon-box i {
    color: var(--accent-color);
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.card-content ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.card-content li {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.bullet-check {
    color: var(--secondary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Services Section Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 44, 89, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(217, 119, 6, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(15, 44, 89, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
}

.service-card:hover .service-icon i {
    color: white;
    transform: rotateY(180deg);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Resort Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.partner-card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.partner-image-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.partner-img {
    max-width: 88%;
    max-height: 88%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

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

.partner-tag {
    display: inline-block;
    align-self: flex-start;
    background-color: rgba(15, 44, 89, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(15, 44, 89, 0.16);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}

.partner-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.partner-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.partner-loc {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.partner-loc i {
    margin-right: 0.2rem;
}

.partner-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.partner-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    align-self: flex-start;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid transparent;
}

.partner-link-btn:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Why Choose Us Section Styles */
.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.why-text h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.why-text p {
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 2.5rem;
}

.why-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.checklist-item {
    display: flex;
    gap: 1.2rem;
}

.check-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.checklist-item h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.3rem;
}

.checklist-item p {
    color: rgba(248, 250, 252, 0.65);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.why-features {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

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

.feature-box-mini {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 12px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-fast);
}

.feature-box-mini:hover {
    background-color: rgba(255,255,255,0.07);
    transform: translateX(5px);
}

.feature-box-mini i {
    font-size: 1.8rem;
    color: var(--accent-light);
    margin-bottom: 0.6rem;
}

.feature-box-mini h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.feature-box-mini p {
    color: rgba(248, 250, 252, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Contact & Enquiry Section Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
}

.details-card {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.details-card h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.details-intro {
    color: rgba(248, 250, 252, 0.75);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    margin-bottom: 2rem;
}

.details-item {
    display: flex;
    gap: 1.2rem;
}

.details-item i {
    font-size: 1.4rem;
    color: var(--accent-light);
    margin-top: 4px;
}

.details-item h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.details-item p {
    color: rgba(248, 250, 252, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-link {
    display: block;
    color: white !important;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-link:hover {
    color: var(--accent-light) !important;
    text-decoration: underline;
}

.contact-link-wa {
    color: var(--whatsapp-color) !important;
    font-weight: 700;
}

.contact-link-wa:hover {
    text-decoration: underline;
    filter: brightness(1.2);
}

.or-text {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin: 0 0.4rem;
}

.landmark-text {
    display: inline-block;
    background-color: rgba(255,255,255,0.08);
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.company-name-bold {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.office-contact-meta {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.office-contact-meta p {
    margin-bottom: 0.4rem;
}

.landmark-text i {
    font-size: 0.8rem;
    color: #f43f5e;
    margin-top: 0;
}

/* Direct Contact Buttons Row inside Details Card */
.direct-contact-action-box {
    margin-top: auto;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
}

.direct-contact-action-box h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.action-btn {
    padding: 0.8rem;
    border-radius: 8px;
    color: white !important;
    font-weight: 700;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.action-btn.call-action {
    background-color: var(--phone-color);
}

.action-btn.wa-action {
    background-color: var(--whatsapp-color);
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

/* Enquiry Form Styling */
.form-card {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.8rem;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(30, 79, 156, 0.1);
}

/* Overlay Popup on Form Completion */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-box {
    text-align: center;
    max-width: 380px;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.form-success-overlay.active .success-box {
    transform: scale(1);
}

.success-box i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.success-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.success-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Footer Styles */
.site-footer {
    background-color: #0b1120;
    color: white;
    padding-top: 5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-about img {
    height: 54px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(248, 250, 252, 0.65);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

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

.footer-links a {
    color: rgba(248, 250, 252, 0.65);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-contact p {
    color: rgba(248, 250, 252, 0.65);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-contact p i {
    color: var(--accent-light);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(248, 250, 252, 0.45);
}

.footer-bottom p {
    margin-bottom: 0.4rem;
}

.legal-footer {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* Prominent Floating Action Buttons (FABs) */
.floating-contact-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 998;
}

.floating-fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    position: relative;
}

.floating-fab.fab-call {
    background-color: var(--phone-color);
}

.floating-fab.fab-whatsapp {
    background-color: var(--whatsapp-color);
}

.floating-fab:hover {
    transform: scale(1.1) translateY(-3px);
    filter: brightness(1.1);
}

.fab-tooltip {
    position: absolute;
    left: 62px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background-color: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.floating-fab:hover .fab-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(217, 119, 6, 0.3);
}

/* Animations Reveal */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Keyframe Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(5, 150, 105, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 6px;
    }
    50% {
        opacity: 0.3;
        top: 18px;
    }
    100% {
        opacity: 1;
        top: 6px;
    }
}

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

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    .hero-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .hero-logo-wrapper {
        width: 260px;
        height: 260px;
    }
    .logo-orbit-ring.ring-1 { width: 310px; height: 310px; }
    .logo-orbit-ring.ring-2 { width: 365px; height: 365px; }
    .badge-top-right { right: -8%; font-size: 0.75rem; }
    .badge-bottom-left { left: -8%; font-size: 0.75rem; }
    .about-grid, .why-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .why-features {
        padding: 2rem;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .partner-image-wrapper {
        height: 160px;
        padding: 1.25rem;
    }
    .partner-img {
        max-width: 80%;
        max-height: 100px;
    }
    .partner-img[src*="guhantara"],
    .partner-img[src*="shilhaandara"] {
        max-width: 90%;
        max-height: 130px;
    }
    .partner-img[src*="sky-blueorchides"],
    .partner-img[src*="wonderla"] {
        max-width: 70%;
        max-height: 85px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-right: 1rem;
        padding-left: 1rem;
    }
    .desktop-nav {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .section-padding {
        padding: 4.5rem 0;
    }

    /* Hero Mobile */
    .hero-section {
        padding-top: 5.5rem;
        padding-bottom: 4rem;
        min-height: auto;
    }
    .hero-bg {
        background-attachment: scroll; /* fix iOS scroll jank */
    }
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-logo-col {
        order: 1;
    }
    .hero-content-col {
        order: 2;
        text-align: center;
    }
    .hero-badge {
        margin: 0 auto 1.2rem;
    }
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
        margin-bottom: 1.5rem;
    }
    .hero-logo-wrapper {
        width: 180px;
        height: 180px;
        padding: 0.8rem;
    }
    /* hide rings & badges — prevent horizontal overflow on mobile */
    .logo-orbit-ring,
    .logo-floating-badge {
        display: none;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
    }
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-info-bar {
        grid-template-columns: 1fr;
        padding: 1.2rem;
        gap: 1rem;
    }
    .info-bar-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding-right: 0;
        padding-bottom: 1rem;
    }
    .experience-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .form-card, .details-card {
        padding: 2rem;
    }
    .contact-action-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
@media (max-width: 480px) {
    .brand-title {
        font-size: 1.05rem;
    }
    .brand-subtitle {
        font-size: 0.65rem;
    }
    .nav-logo {
        height: 38px;
        width: 38px;
    }
    .logo-area {
        gap: 0.5rem;
    }
    .why-features, .form-card, .details-card {
        padding: 1.25rem;
    }
    .floating-contact-container {
        left: 1rem;
        bottom: 1rem;
    }
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
    }
    .floating-fab {
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }
    .back-to-top {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    /* Hero extra-small */
    .hero-title {
        font-size: 1.9rem;
        letter-spacing: -0.5px;
    }
    .hero-logo-wrapper {
        width: 150px;
        height: 150px;
    }
    .hero-badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.9rem;
    }
    .btn-contact-hero,
    .btn-whatsapp-hero {
        font-size: 0.88rem;
        padding: 0.8rem 1.2rem;
    }
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .partner-image-wrapper {
        height: 140px;
        padding: 1rem;
    }
    .partner-img {
        max-width: 75%;
        max-height: 85px;
    }
    .partner-img[src*="guhantara"],
    .partner-img[src*="shilhaandara"] {
        max-width: 85%;
        max-height: 110px;
    }
    .partner-img[src*="sky-blueorchides"],
    .partner-img[src*="wonderla"] {
        max-width: 65%;
        max-height: 70px;
    }
}
