/* 
========================================================================
UMME MIGRATION EDUCATION & VISA SERVICES - LUXURY CORPORATE STYLE SHEET
========================================================================
Designed with absolute premium typography, responsive flow, custom animations, 
glassmorphic backdrop blurs, and sophisticated gold/navy/red accents.
*/

/* --- 1. CORE DESIGN SYSTEM & CUSTOM VARIABLE TOKENS --- */
:root {
    /* Color Palette */
    --color-gold: #D4AF37;
    --color-gold-hover: #B5932A;
    --color-gold-light: rgba(212, 175, 55, 0.1);
    --color-gold-glow: rgba(212, 175, 55, 0.35);
    
    --color-red: #D9383A;
    --color-red-hover: #B82B2D;
    --color-red-light: rgba(217, 56, 58, 0.1);
    
    --color-navy: #0A2540;
    --color-navy-light: #1E3A8A;
    --color-navy-dark: #061B30;
    
    --color-black: #0B0F19;
    --color-charcoal: #1E293B;
    --color-gray-dark: #475569;
    --color-gray-medium: #94A3B8;
    --color-gray-light: #F1F5F9;
    --color-white: #FFFFFF;
    
    /* Backgrounds */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-dark: #0B0F19;
    
    /* Glassmorphism blurs */
    --glass-bg-light: rgba(255, 255, 255, 0.85);
    --glass-bg-dark: rgba(11, 15, 25, 0.85);
    --glass-border-light: rgba(255, 255, 255, 0.4);
    --glass-border-dark: rgba(212, 175, 55, 0.15);
    --glass-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    --premium-shadow-hover: 0 20px 50px -15px rgba(212, 175, 55, 0.15);
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    
    /* Fonts & Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--color-charcoal);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-primary);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
    background: none;
}

/* --- 3. PREMIUM WEB APP LOADING SPLASH SCREEN (PRELOADER) --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.preloader-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 30px var(--color-gold-glow);
    animation: pulseLogo 2s infinite ease-in-out;
    margin-bottom: 24px;
}

.preloader-spinner-bar {
    width: 160px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}

.preloader-spinner-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--color-red), var(--color-gold));
    border-radius: 2px;
    animation: preloaderSlide 1.5s infinite ease-in-out;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.preloader-subtext {
    font-size: 0.85rem;
    color: var(--color-gold);
    letter-spacing: 1px;
}

/* --- 4. TOP CONTACT BAR & BRAND LINKS --- */
.top-contact-bar {
    background-color: var(--color-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    padding: 10px 0;
    font-weight: 500;
}

.top-contact-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-details-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    margin-right: 6px;
    font-size: 0.85rem;
}

.phone-gold {
    color: var(--color-gold);
}

.envelope-red {
    color: var(--color-red);
}

.contact-divider {
    color: rgba(255, 255, 255, 0.2);
}

.contact-details-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-status-top {
    color: var(--color-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

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

.social-links-top a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-links-top a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* --- 5. STICKY GLASSMORPHIC HEADER & NAVIGATION --- */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

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

.logo-link {
    display: inline-block;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-crest {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold);
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-black);
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-tagline {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--color-red);
    text-transform: uppercase;
    margin-top: 2px;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-navy);
    padding: 6px 0;
    position: relative;
}

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

.nav-link:hover {
    color: var(--color-gold);
}

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

.nav-link.active {
    color: var(--color-gold);
}

/* Premium Navigation Action CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-button-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-black), var(--color-navy));
    color: var(--color-white);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    border: 1.5px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-gold:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    color: var(--color-black);
    border-color: var(--color-black);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* Mobile Toggle Bar */
.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    justify-content: center;
    align-items: center;
}

.bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-black);
    transition: var(--transition-fast);
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 115px; /* Directly below top header + top bar */
    left: 0;
    width: 100%;
    background-color: var(--glass-bg-light);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--color-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 30px 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 999;
}

.mobile-menu-drawer.open {
    transform: translateY(0);
    opacity: 1;
}

.mobile-links-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-black);
    padding: 4px 0;
    display: block;
}

.mobile-link:hover {
    color: var(--color-gold);
    padding-left: 6px;
}

.mobile-link.active {
    color: var(--color-gold);
}

.m-cta-booking {
    text-align: center;
    background: linear-gradient(135deg, var(--color-black), var(--color-navy));
    color: var(--color-white) !important;
    border: 1.5px solid var(--color-gold);
    border-radius: 8px;
    padding: 12px !important;
}

/* --- 6. CINEMATIC HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 120px 0 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
                radial-gradient(circle at 10% 80%, rgba(26, 54, 93, 0.04) 0%, rgba(255, 255, 255, 0) 50%),
                var(--bg-primary);
    overflow: hidden;
}

.map-container-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

#world-map-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-elements-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.float-item {
    position: absolute;
    color: rgba(212, 175, 55, 0.25);
    font-size: 1.8rem;
    animation: floatIcon 6s infinite ease-in-out;
}

.plane-1 { top: 18%; left: 12%; animation-delay: 0s; font-size: 2.2rem; color: rgba(217, 56, 58, 0.2); }
.cap-1 { top: 75%; left: 45%; animation-delay: 2s; font-size: 2rem; color: rgba(26, 54, 93, 0.2); }
.passport-1 { top: 25%; right: 40%; animation-delay: 4s; font-size: 1.6rem; }
.book-1 { top: 62%; left: 8%; animation-delay: 1.5s; font-size: 1.7rem; }

.hero-content-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-text-side {
    max-width: 680px;
}

.hero-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold-hover);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.gold-star {
    animation: pulseStar 1.5s infinite ease-in-out;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--color-black) 20%, var(--color-gold) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheading {
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-btn-row {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* High Conversion Action CTAs */
.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-black), var(--color-navy));
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1.5px solid var(--color-gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-gold:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-hover));
    color: var(--color-black);
    border-color: var(--color-black);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.35);
    transform: translateY(-3px);
}

.btn-secondary-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1.5px solid var(--color-gray-light);
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-white:hover {
    background-color: var(--color-gray-light);
    border-color: var(--color-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.hero-badges-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.trust-badge-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow);
}

.badge-flag {
    width: 28px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    object-fit: cover;
}

.badge-texts {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-black);
}

.badge-subtitle {
    font-size: 0.65rem;
    color: var(--color-gray-dark);
}

.hero-visual-side {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-stack-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.students-visual-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    background-color: var(--color-black);
    border: 3px solid var(--color-gold);
    border-radius: 24px;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Skyline strip overlay on top of students visual */
.skyline-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0));
    padding: 16px;
    display: flex;
    justify-content: space-around;
    gap: 8px;
    z-index: 3;
}

.skyline-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-white);
    background-color: rgba(212, 175, 55, 0.25);
    border: 1px solid var(--color-gold);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--color-navy) 20%, var(--color-black) 90%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    padding: 24px;
}

.placeholder-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    border: 2px dashed var(--color-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 0 30px var(--color-gold-glow);
}

.main-globe-spin {
    font-size: 3.5rem;
    color: var(--color-gold);
    animation: rotateGlobe 20s infinite linear;
}

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

.p-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-white);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.p-sub {
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.student-approval-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--glass-bg-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--color-gold);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 4;
    max-width: 250px;
}

.card-top {
    top: 25%;
    right: -25px;
    animation: floatCard1 4s infinite ease-in-out;
}

.card-bottom {
    bottom: 12%;
    left: -25px;
    animation: floatCard2 4s infinite ease-in-out;
    animation-delay: 2s;
}

.student-avatar-mock {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold);
    font-size: 1.1rem;
}

.student-info {
    display: flex;
    flex-direction: column;
}

.s-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-black);
}

.s-detail {
    font-size: 0.7rem;
    color: var(--color-gray-dark);
}

.approval-stamp {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-white);
    background-color: #10B981;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
}

.stamp-gold {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.decorative-pulse-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 1;
    animation: zoomPulse 8s infinite linear;
}

.section-divider-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 4;
}

.section-divider-curve svg {
    display: block;
    width: 100%;
    height: 40px;
}

/* --- 7. ABOUT US SECTION --- */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-image-collage {
    position: relative;
    height: 480px;
}

.collage-main-card {
    position: absolute;
    top: 50px;
    left: 40px;
    width: 280px;
    height: 340px;
    background-color: var(--color-black);
    border: 3px solid var(--color-gold);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    z-index: 3;
}

.card-logo-overlay {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--color-gold);
}

.card-logo-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-counter {
    display: flex;
    flex-direction: column;
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collage-sub-card {
    position: absolute;
    background-color: var(--color-white);
    border-left: 4px solid var(--color-gold);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    z-index: 4;
}

.card-india {
    bottom: 20px;
    right: 20px;
}

.card-canada {
    top: 20px;
    right: 60px;
    border-left-color: var(--color-red);
}

.branch-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 2px;
}

.branch-label i {
    color: var(--color-gold);
}

.card-canada .branch-label i {
    color: var(--color-red);
}

.collage-sub-card p {
    font-size: 0.75rem;
    color: var(--color-gray-dark);
}

.section-subtitle-gold {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-gold-hover);
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-title-dark {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.25;
    margin-bottom: 24px;
}

.about-narrative-paragraph {
    font-size: 1rem;
    color: var(--color-gray-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-narrative-paragraph strong {
    color: var(--color-black);
    font-weight: 600;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.highlight-item-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.h-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.gold-accent-color {
    background-color: var(--color-gold-light);
    color: var(--color-gold-hover);
}

.red-accent-color {
    background-color: var(--color-red-light);
    color: var(--color-red);
}

.navy-accent-color {
    background-color: rgba(26, 54, 93, 0.05);
    color: var(--color-navy);
}

.h-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 4px;
}

.h-text p {
    font-size: 0.8rem;
    color: var(--color-gray-dark);
}

.about-badges-footer {
    border-top: 1.5px solid var(--color-gray-light);
    padding-top: 20px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-item-mini {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-navy);
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.badge-item-mini i {
    font-size: 0.8rem;
}

.text-success {
    color: #10B981;
}

/* --- 8. COUNTRIES SECTION (Study Abroad Details) --- */
.countries-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.section-header-centered {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px auto;
}

.section-description-text {
    font-size: 1rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-top: 10px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.country-card {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--color-gray-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.country-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: var(--premium-shadow-hover);
}

.country-card-header {
    position: relative;
    height: 150px;
    display: flex;
    align-items: flex-end;
    padding: 20px 24px;
}

.flag-overlay-badge {
    position: absolute;
    top: 16px;
    right: 20px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 3;
}

.flag-overlay-badge img {
    width: 44px;
    height: 28px;
    object-fit: cover;
}

.skyline-overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.1);
    z-index: 1;
    transition: var(--transition-smooth);
}

/* Beautiful custom backdrops for country skylines using standard gradients for high premium UI performance */
.skyline-ca { background: linear-gradient(135deg, rgba(217, 56, 58, 0.85), rgba(11, 15, 25, 0.9)); }
.skyline-gb { background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(11, 15, 25, 0.9)); }
.skyline-au { background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(11, 15, 25, 0.9)); }
.skyline-us { background: linear-gradient(135deg, rgba(26, 54, 93, 0.8), rgba(217, 56, 58, 0.8)); }
.skyline-ie { background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(11, 15, 25, 0.9)); }
.skyline-nz { background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(0, 0, 0, 0.9)); }

.country-card:hover .skyline-overlay-image {
    transform: scale(1.05);
}

.country-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.country-card-body {
    padding: 24px;
}

.country-details-list {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.country-details-list li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray-dark);
}

.country-details-list li i {
    width: 22px;
    color: var(--color-gold-hover);
    font-size: 0.95rem;
}

.country-explore-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-gray-light);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.country-explore-btn:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

/* --- 9. SERVICES SECTION --- */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: var(--color-white);
    border: 1.5px solid var(--color-gray-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-6px);
    box-shadow: var(--premium-shadow-hover);
}

.s-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.35rem;
    margin-bottom: 24px;
}

.box-gold { background-color: var(--color-gold-light); color: var(--color-gold-hover); }
.box-red { background-color: var(--color-red-light); color: var(--color-red); }
.box-navy { background-color: rgba(26, 54, 93, 0.05); color: var(--color-navy); }

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-learn-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold-hover);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.service-card:hover .service-learn-more {
    color: var(--color-navy);
}

.service-card:hover .service-learn-more i {
    transform: translateX(4px);
}

/* --- 10. WHY CHOOSE US & SUCCESS COUNTER --- */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--color-black);
    position: relative;
    color: var(--color-white);
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.why-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.why-points-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-point-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.wp-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.why-point-card h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.why-point-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.luxury-counter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.counter-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
}

.counter-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--color-gold);
    transform: scale(1.03);
}

.cc-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.counter-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.counter-suffix {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-gold);
}

.counter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- 11. UNIVERSITY PARTNERS SECTION (Marquee Banner) --- */
.partners-section {
    padding: 40px 0;
    background-color: var(--bg-secondary);
    border-bottom: 1.5px solid var(--color-gray-light);
}

.partners-marquee-title {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-gray-medium);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.partners-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
}

.partners-marquee-track {
    display: inline-flex;
    animation: marquee 25s linear infinite;
    gap: 40px;
}

.partner-logo-item {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.partner-logo-item i {
    font-size: 1rem;
}

.partner-logo-item i.gold { color: var(--color-gold); }
.partner-logo-item i.red { color: var(--color-red); }
.partner-logo-item i.navy { color: var(--color-navy-light); }

/* --- 12. TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--color-gray-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

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

.t-stars {
    color: var(--color-gold);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.t-story {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.t-student-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(26, 54, 93, 0.06);
    color: var(--color-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
}

.t-student-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-black);
}

.t-destination {
    font-size: 0.75rem;
    color: var(--color-gold-hover);
    font-weight: 600;
}

/* --- 13. APPOINTMENT BOOKING SECTION --- */
.appointment-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-navy-dark), var(--color-black));
    color: var(--color-white);
}

.appointment-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.appointment-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.appointment-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.appointment-benefits li {
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.appointment-benefits li i {
    color: var(--color-gold);
}

.appointment-support-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
}

.asc-icon {
    font-size: 1.7rem;
    color: var(--color-gold);
}

.appointment-support-card span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.appointment-support-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

/* Appointment Form container styles */
.booking-glass-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.booking-glass-container h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: 0.5px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

.booking-glass-container input, 
.booking-glass-container select, 
.booking-glass-container textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.booking-glass-container select option {
    background-color: var(--color-navy-dark);
    color: var(--color-white);
}

.booking-glass-container input::placeholder, 
.booking-glass-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.booking-glass-container input:focus, 
.booking-glass-container select:focus, 
.booking-glass-container textarea:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.booking-glass-container textarea {
    resize: none;
}

.w-100 {
    width: 100% !important;
}

/* Success Messages (Hidden Initially) */
.booking-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.success-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.15);
    border: 1.5px solid #10B981;
    color: #10B981;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.booking-success-message h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.booking-success-message p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* --- 14. FAQ ACCORDION SECTION --- */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--color-gray-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-header-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    transition: var(--transition-fast);
}

.faq-header-btn i {
    font-size: 0.9rem;
    color: var(--color-gray-medium);
    transition: transform 0.3s ease;
}

.faq-header-btn:hover {
    color: var(--color-gold-hover);
}

.faq-accordion-item.active {
    border-color: var(--color-gold);
    background-color: var(--color-white);
}

.faq-accordion-item.active .faq-header-btn i {
    transform: rotate(180deg);
    color: var(--color-gold);
}

.faq-body-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body-panel p {
    padding: 0 28px 24px 28px;
    font-size: 0.88rem;
    color: var(--color-gray-dark);
    line-height: 1.65;
}

/* --- 15. AI CHATBOT SECTION (Interactive Live-Simulation) --- */
.ai-chat-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.ai-chat-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.ai-chat-visual-card {
    background-color: var(--color-white);
    border: 1.5px solid var(--color-gray-light);
    border-radius: 16px;
    box-shadow: var(--premium-shadow-hover);
    overflow: hidden;
}

.ai-chat-header {
    background-color: var(--color-black);
    border-bottom: 2px solid var(--color-gold);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bot-info-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--color-gold-light);
    color: var(--color-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    border: 1px solid var(--color-gold);
}

.bot-info-wrap h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-white);
}

.bot-info-wrap span {
    font-size: 0.7rem;
    color: var(--color-gray-medium);
    display: flex;
    align-items: center;
    gap: 5px;
}

.active-pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10B981;
    display: inline-block;
    animation: activePulse 1.5s infinite ease-in-out;
}

.clear-chat-btn {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.clear-chat-btn:hover {
    background-color: var(--color-red-light);
    color: var(--color-red);
}

.ai-chat-body {
    height: 300px;
    overflow-y: auto;
    padding: 24px;
    background-color: #FAFBFD;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    position: relative;
}

.bot-msg {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-left: 3px solid var(--color-gold);
    color: var(--color-black);
    align-self: flex-start;
}

.user-msg {
    background-color: var(--color-navy);
    color: var(--color-white);
    align-self: flex-end;
}

.msg-time {
    display: block;
    font-size: 0.65rem;
    color: var(--color-gray-medium);
    margin-top: 4px;
    text-align: right;
}

.ai-chat-footer {
    padding: 16px 24px;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-gray-light);
    display: flex;
    gap: 12px;
}

.ai-chat-footer input {
    flex-grow: 1;
    background-color: var(--color-gray-light);
    color: var(--color-black);
    padding: 12px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    border: 1px solid var(--color-gray-light);
}

.ai-chat-footer input:focus {
    border-color: var(--color-gold);
    background-color: var(--color-white);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-black));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.chat-send-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: scale(1.05);
}

.ai-chat-desc {
    font-size: 1.05rem;
    color: var(--color-gray-dark);
    margin-bottom: 24px;
}

.preset-triggers-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.preset-btn {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-navy);
    transition: var(--transition-fast);
}

.preset-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-hover);
    background-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.counselor-call-action {
    border-top: 1.5px solid var(--color-gray-light);
    padding-top: 24px;
}

.counselor-call-action p {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

/* --- 16. BLOG & LATEST NEWS SECTION --- */
.blog-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--color-gray-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: var(--premium-shadow-hover);
}

.blog-img-wrap {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-img-ca { background: linear-gradient(135deg, rgba(217, 56, 58, 0.4), rgba(11, 15, 25, 0.8)); }
.blog-img-uk { background: linear-gradient(135deg, rgba(26, 54, 93, 0.4), rgba(11, 15, 25, 0.8)); }
.blog-img-au { background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(11, 15, 25, 0.8)); }

.blog-category {
    position: absolute;
    top: 16px;
    left: 20px;
    background-color: var(--color-gold);
    color: var(--color-black);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.blog-body {
    padding: 24px;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--color-gray-medium);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.blog-date i {
    margin-right: 6px;
}

.blog-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1.35;
    margin-bottom: 12px;
}

.blog-body p {
    font-size: 0.85rem;
    color: var(--color-gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card:hover .blog-read-more {
    color: var(--color-gold-hover);
}

.blog-card:hover .blog-read-more i {
    transform: translateX(4px);
}

/* --- 17. CONTACT US SECTION & MULTI-STEP LEAD FORM --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-black);
    color: var(--color-white);
}

.text-gray {
    color: rgba(255, 255, 255, 0.6) !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    margin-bottom: 60px;
}

.office-location-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.office-location-card:hover {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.05);
}

.office-header-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.office-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.mini-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-header-wrap h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-white);
}

.office-header-wrap span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.address-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.address-text i {
    color: var(--color-gold);
    margin-right: 6px;
}

.office-phone {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gold);
}

.office-phone i {
    margin-right: 6px;
}

.central-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0;
}

.cc-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cc-item i {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.03);
    color: var(--color-red);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.cc-item span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.cc-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.contact-social-channels h5 {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.soc-row {
    display: flex;
    gap: 12px;
}

.soc-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.soc-icon:hover {
    transform: translateY(-3px);
    color: var(--color-white);
}

.soc-icon.fb:hover { background-color: #1877F2; }
.soc-icon.insta:hover { background-color: #E1306C; }
.soc-icon.ln:hover { background-color: #0A66C2; }
.soc-icon.wa:hover { background-color: #25D366; }

/* Lead submission form block style */
.contact-form-block {
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.inquiry-form-container {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.inquiry-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.inquiry-form-container p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    line-height: 1.5;
}

.inquiry-form-container label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

.inquiry-form-container input, 
.inquiry-form-container select, 
.inquiry-form-container textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

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

.inquiry-form-container input::placeholder, 
.inquiry-form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.inquiry-form-container input:focus, 
.inquiry-form-container select:focus, 
.inquiry-form-container textarea:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.inquiry-form-container textarea {
    resize: none;
}

.inquiry-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.inquiry-success-message h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.inquiry-success-message p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Simulated Vector Map Card */
.maps-simulated-wrapper {
    margin-top: 60px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
}

.map-tabs-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.map-tab {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.map-tab:hover, .map-tab.active {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.simulated-vector-map {
    height: 300px;
    background-color: #060B12;
    border-radius: 10px;
    border: 1.5px dashed rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vector-backdrop-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.map-crest-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid var(--color-gold);
    overflow: hidden;
    opacity: 0.15;
    z-index: 2;
}

.map-crest-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-pin-overlay {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-icon {
    font-size: 2.2rem;
    color: var(--color-red);
    text-shadow: 0 4px 15px rgba(217, 56, 58, 0.5);
    animation: bouncePin 2s infinite ease-in-out;
}

.pin-tooltip {
    background-color: var(--glass-bg-dark);
    border: 1.5px solid var(--color-gold);
    color: var(--color-white);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-top: 10px;
    min-width: 200px;
}

.simulated-lat-lng {
    position: absolute;
    bottom: 12px;
    left: 16px;
    font-family: monospace;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    z-index: 3;
}

/* Premium Newsletter Box */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--color-black), var(--color-navy));
    border: 1.5px solid var(--color-gold);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: var(--premium-shadow-hover);
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 6px;
}

.newsletter-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
}

.newsletter-form-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 320px;
}

.newsletter-form-wrapper form {
    display: flex;
    gap: 10px;
}

.newsletter-form-wrapper input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    flex-grow: 1;
}

.newsletter-form-wrapper input:focus {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form-wrapper button {
    padding: 12px 24px;
    border-radius: 30px;
}

.newsletter-success {
    display: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: #10B981;
    margin-top: 8px;
}

/* --- 18. FLOATING CHATS & WIDGETS --- */
/* WhatsApp Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 998;
    transition: var(--transition-smooth);
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.wa-tooltip-pop {
    position: absolute;
    left: 75px;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.whatsapp-floating-btn:hover .wa-tooltip-pop {
    opacity: 1;
    visibility: visible;
}

/* Live Chat Widget Box */
.live-chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-navy), var(--color-black));
    border: 1.5px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 998;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.live-chat-bubble:hover {
    transform: scale(1.08);
}

.chat-close-icon {
    display: none;
}

.live-chat-bubble.active .chat-open-icon {
    display: none;
}

.live-chat-bubble.active .chat-close-icon {
    display: block;
}

.chat-badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid var(--color-white);
}

.live-chat-panel-box {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 340px;
    background-color: var(--color-white);
    border: 1.5px solid var(--color-gray-light);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 997;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom right;
    transition: var(--transition-smooth);
}

.live-chat-panel-box.open {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.lcp-header {
    background-color: var(--color-black);
    border-bottom: 2px solid var(--color-gold);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lcp-bot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--color-gold);
}

.lcp-bot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lcp-header h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--color-white);
}

.lcp-header span {
    font-size: 0.65rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

.lcp-messages-container {
    height: 250px;
    overflow-y: auto;
    padding: 20px;
    background-color: #F8FAFC;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lcp-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.5;
}

.lcp-msg.incoming {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-light);
    color: var(--color-black);
    align-self: flex-start;
}

.lcp-msg.outgoing {
    background-color: var(--color-navy);
    color: var(--color-white);
    align-self: flex-end;
}

.lcp-time {
    display: block;
    font-size: 0.6rem;
    color: var(--color-gray-medium);
    margin-top: 4px;
}

.lcp-input-area {
    padding: 12px 16px;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-gray-light);
    display: flex;
    gap: 10px;
}

.lcp-input-area input {
    flex-grow: 1;
    background-color: var(--color-gray-light);
    font-size: 0.8rem;
    padding: 8px 12px;
    border-radius: 20px;
}

.btn-lcp-send {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-navy);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
}

/* Scroll To Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 105px;
    left: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--color-white);
    border: 1.5px solid var(--color-gray-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

/* --- 19. CONTEXT DETAILS MODALS --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: var(--color-white);
    width: 100%;
    max-width: 640px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
    border: 1px solid var(--color-gray-light);
    position: relative;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    z-index: 10;
}

.modal-close-btn:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.modal-header-img {
    height: 140px;
    background: linear-gradient(135deg, var(--color-black), var(--color-navy));
    padding: 28px 32px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.modal-flag-wrap {
    position: absolute;
    top: 18px;
    left: 32px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.modal-flag-wrap img {
    width: 52px;
    height: 32px;
    object-fit: cover;
}

.modal-header-img h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.modal-header-banner-flat {
    background-color: var(--color-black);
    border-bottom: 3px solid var(--color-gold);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-icon-badge {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--color-gold-light);
    color: var(--color-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.35rem;
}

.modal-header-banner-flat h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-white);
}

.modal-body-content {
    padding: 32px;
    max-height: 380px;
    overflow-y: auto;
}

.modal-detail-para {
    font-size: 0.92rem;
    color: var(--color-gray-dark);
    margin-bottom: 24px;
    line-height: 1.65;
}

.modal-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-info-list li {
    font-size: 0.85rem;
    color: var(--color-gray-dark);
}

.modal-info-list li strong {
    color: var(--color-black);
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.modal-footer-btns {
    padding: 20px 32px;
    border-top: 1.5px solid var(--color-gray-light);
    display: flex;
    justify-content: flex-end;
}

/* --- 20. PREMIUM LUXURY FOOTER --- */
.luxury-footer {
    background-color: var(--color-black);
    border-top: 3px solid var(--color-gold);
    color: rgba(255, 255, 255, 0.7);
    padding: 90px 0 0 0;
}

.footer-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.1fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 28px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
}

.branding-intro-text {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-top: 20px;
    margin-bottom: 24px;
}

.footer-badges-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.f-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
    background-color: rgba(212, 175, 55, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

.footer-links-list li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list li a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.footer-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contacts-list li {
    font-size: 0.82rem;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.footer-contacts-list li i {
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.gold-pin {
    color: var(--color-gold);
}

.footer-contacts-list li strong {
    color: var(--color-white);
}

.footer-legal-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    font-size: 0.75rem;
}

.legal-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

.legal-links a:hover {
    color: var(--color-gold);
}

.legal-dot {
    color: rgba(255,255,255,0.2);
}

/* --- 21. KEYFRAME ANIMATIONS --- */
@keyframes preloaderSlide {
    0% { left: -40%; }
    50% { left: 100%; }
    100% { left: -40%; }
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(212, 175, 55, 0.15); }
    50% { transform: scale(1.05); box-shadow: 0 0 35px var(--color-gold-glow); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

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

@keyframes pulseStar {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
}

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

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

@keyframes zoomPulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.12); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.1; }
}

@keyframes activePulse {
    0%, 100% { transform: scale(1); opacity: 0.75; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

/* Animations Trigger Utilities */
.animated-fadeIn {
    animation: fadeIn 1s forwards ease-out;
}

.animated-slideUp {
    animation: slideUp 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 22. RESPONSIVE MEDIA QUERY VIEWPORTS --- */

/* Desktop / Laptop scaling */
@media (max-width: 1200px) {
    .hero-heading { font-size: 3rem; }
    .about-grid { gap: 40px; }
    .footer-layout-grid { gap: 30px; }
}

/* Tablet (Large) */
@media (max-width: 1024px) {
    .nav-links-list { gap: 16px; }
    .hero-heading { font-size: 2.6rem; }
    .hero-content-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text-side { max-width: 100%; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-btn-row { justify-content: center; }
    .hero-badges-wrapper { justify-content: center; }
    .hero-visual-side { margin-top: 40px; }
    .card-top { right: 0; }
    .card-bottom { left: 0; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-collage { height: 420px; max-width: 440px; margin: 0 auto 40px auto; }
    .why-choose-layout { grid-template-columns: 1fr; }
    .appointment-grid { grid-template-columns: 1fr; }
    .ai-chat-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-layout-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Tablet (Small) / Mobile */
@media (max-width: 768px) {
    .top-contact-bar { display: none; }
    .mobile-toggle-btn { display: flex; }
    .desktop-navigation { display: none; }
    .header-cta-btn { display: none; }
    .mobile-menu-drawer { top: 80px; }
    
    .hero-heading { font-size: 2.2rem; }
    .hero-subheading { font-size: 0.95rem; }
    .section-title-dark { font-size: 1.85rem; }
    .about-highlights-grid { grid-template-columns: 1fr; }
    .countries-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .luxury-counter-wrapper { grid-template-columns: 1fr; }
    
    .booking-glass-container { padding: 24px; }
    .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .inquiry-form-container { padding: 24px; }
    
    .newsletter-box { padding: 24px; text-align: center; justify-content: center; }
    .newsletter-form-wrapper { width: 100%; min-width: unset; }
    .newsletter-form-wrapper form { flex-direction: column; }
    .newsletter-form-wrapper button { width: 100%; }
    
    .whatsapp-floating-btn { bottom: 20px; left: 20px; width: 50px; height: 50px; font-size: 1.6rem; }
    .live-chat-bubble { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.3rem; }
    .live-chat-panel-box { bottom: 85px; right: 20px; width: 300px; }
    .scroll-to-top-btn { bottom: 85px; left: 20px; width: 38px; height: 38px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .hero-heading { font-size: 1.85rem; }
    .hero-btn-row { flex-direction: column; width: 100%; }
    .hero-btn-row a { width: 100%; justify-content: center; }
    .about-image-collage { height: 360px; }
    .collage-main-card { width: 220px; height: 280px; left: 10px; }
    .collage-sub-card { padding: 12px; }
    .card-canada { right: 20px; }
    .card-india { right: 10px; }
}
