/* 
   IndoGlobal Trade Advisors - Premium CSS 
   Target: Indian Import/Export Consulting 
*/

:root {
    /* Color Palette */
    --primary-dark: #001C30;
    --primary-blue: #19376D;
    --accent-gold: #D4AF37;
    --accent-light-gold: #F5E8C7;
    --gold-gradient: linear-gradient(135deg, #FFE07D 0%, #D4AF37 50%, #A37A1A 100%);
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    --success-green: #10B981;
    --whatsapp-green: #25D366;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Transitions */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Border Radius */
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

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

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

.text-gold {
    color: var(--accent-gold);
}

.text-white {
    color: var(--bg-white);
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--bg-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--bg-white);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ==========================================================================
   Floating Widgets
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition-fast);
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

/* ==========================================================================
   Top Bar & Header
   ========================================================================== */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header.scrolled {
    box-shadow: var(--shadow-soft);
    padding: 5px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height var(--transition-fast);
}

.header.scrolled .nav-container {
    height: 70px;
}

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

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.header.scrolled .logo-img {
    height: 50px;
}

.logo-icon {
    font-size: 32px;
    color: var(--primary-blue);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.logo-text strong {
    font-size: 1.4rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-dark);
    position: relative;
}

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

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

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary-dark);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8ed7c83a50?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,28,48,0.95) 0%, rgba(25,55,109,0.85) 50%, rgba(0,28,48,0.7) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    color: white;
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 0 10px;
}

/* Hero Right Side Visuals */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-graphics {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/1;
}

.g-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(212,175,55,0) 100%);
    z-index: 1;
    animation: pulseCircle 4s infinite alternate;
}

.g-circle-2 {
    width: 85%;
    height: 85%;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    background: transparent;
    animation: rotateCircle 25s linear infinite;
}

.main-hero-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255,255,255,0.15);
    z-index: 2;
    box-shadow: var(--shadow-medium);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: floatAnim 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
}

.floating-card strong {
    display: block;
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 2px;
}

.floating-card span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.c-1 {
    top: 10%;
    left: -15%;
    animation-delay: 0s;
}

.c-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 2s;
}

@keyframes pulseCircle {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

@keyframes rotateCircle {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-gold);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 auto 20px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent-gold);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    display: inline-block;
    margin: 0;
}

.stat-item span {
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================================================
   Trusted By Logos (Marquee)
   ========================================================================== */
.trusted-by {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    background: white;
    overflow: hidden;
}

.trusted-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 500;
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.logo-slide-track {
    display: flex;
    width: calc(200px * 12);
    animation: scroll 20s linear infinite;
}

.slide {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: #888;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.slide:hover {
    opacity: 1;
    color: var(--primary-blue);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); }
}

/* ==========================================================================
   Why Choose Us (Features)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(25, 55, 109, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    background: var(--primary-blue);
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

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

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

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

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
}

/* ==========================================================================
   Premium Packages Section (Mirrors user image precisely)
   ========================================================================== */
.packages {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
}

.packages-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
}

.package-card.premium {
    background: var(--bg-light);
    border: 2px solid var(--accent-gold);
    transform: scale(1.02);
    box-shadow: var(--shadow-gold);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    padding: 8px 25px;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom-left-radius: var(--radius-md);
    z-index: 2;
}

.package-header {
    background: var(--primary-dark);
    padding: 35px 25px;
    text-align: center;
    color: white;
    position: relative;
    min-height: 200px; /* Aligns the start of the white body section */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.package-card.premium .package-header {
    background: linear-gradient(135deg, var(--primary-dark), #091325);
}

.package-duration {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 20px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.package-header h3 {
    color: white;
    font-size: 1.75rem; /* Better scaling to prevent wrapping */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.package-card.premium .package-header h3 {
    color: var(--accent-gold);
}

.best-for {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    max-width: 280px;
    margin: 0 auto;
}

.best-for strong {
    color: white;
}

.package-body {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-features {
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the benefits and footer down to align them */
}

.package-features.two-col {
    display: grid;
    grid-template-columns: 1fr; /* Set to 1 column for clean uniform listing */
    gap: 15px;
}

.package-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.package-features li i {
    color: var(--accent-gold); /* Warm gold icons across all cards */
    font-size: 18px;
    width: 25px;
    text-align: center;
}

/* Removed circular background overrides for premium card to enforce consistency */

.highlight-feature {
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent-gold);
}

.package-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
    margin-top: auto; /* Ensures benefits stay at the bottom of the body */
}

.benefit {
    background: #E8F5E9;
    color: var(--success-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-footer {
    padding: 0 30px 40px;
    text-align: center;
    margin-top: auto; /* Aligns footer exactly at the bottom border */
}

.price {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
    line-height: 1;
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    min-height: 38px; /* Force consistent note block height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Process Timeline
   ========================================================================== */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 2px;
    background: rgba(25, 55, 109, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
}

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

.timeline-icon {
    position: absolute;
    left: 15px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-blue);
    z-index: 1;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-icon {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--accent-gold);
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-medium);
    transform: translateX(10px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   Country Coverage
   ========================================================================== */
.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.coverage-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.country-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.country-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--primary-dark);
}

.country-list img {
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.map-illustration {
    position: relative;
    width: 100%;
}

.map-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    opacity: 0.9;
}

.pulse-point {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--accent-gold);
    border-radius: 50%;
    z-index: 2;
}

.pulse-point::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}

.pulse-point.ind { top: 45%; left: 70%; }
.pulse-point.usa { top: 35%; left: 20%; }
.pulse-point.uk { top: 30%; left: 48%; }
.pulse-point.uae { top: 45%; left: 60%; }
.pulse-point.aus { top: 75%; left: 85%; }

@keyframes mapPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* ==========================================================================
   Testimonials Slider
   ========================================================================== */
.testimonial-slider-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 5px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-slider-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 350px;
    max-width: 400px;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    scroll-snap-align: start;
    position: relative;
}

.quote-icon {
    font-size: 40px;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.faq-item {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 14px;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--bg-light);
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-muted);
    margin: 0;
}

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

/* ==========================================================================
   Contact / Lead Gen Section
   ========================================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.contact-info-panel {
    background: var(--primary-dark);
    padding: 60px 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.contact-info-panel h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-info-panel > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-detail-item i {
    font-size: 24px;
    color: var(--accent-gold);
    margin-top: 5px;
}

.contact-detail-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-detail-item p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.contact-form-panel {
    padding: 60px 50px;
}

.lead-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(25, 55, 109, 0.1);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 15px;
}

.privacy-note i {
    color: var(--success-green);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #001220;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about p {
    margin: 20px 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-links h3,
.footer-newsletter h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-newsletter p {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    outline: none;
}

.newsletter-form button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.footer-bottom-links a {
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .coverage-content { grid-template-columns: 1fr; }
    .package-features.two-col { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .section-title h2 { font-size: 2rem; }
    .top-bar { display: none; }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s ease;
    }
    
    .nav-links.active { left: 0; }
    .mobile-toggle { display: block; }
    .btn-nav { display: none; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .stat-item { width: 45%; }
    
    .process-timeline::before { left: 25px; }
    .timeline-item { padding-left: 70px; }
    .timeline-icon { width: 40px; height: 40px; left: 5px; font-size: 1rem; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .package-card { margin: 0 auto; max-width: 100%; }
    .package-body { padding: 30px 20px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; gap: 10px; }
    .contact-info-panel, .contact-form-panel { padding: 30px 15px; }
    .package-header h3 { font-size: 1.6rem; }
    .price { font-size: 2rem; }
    .package-header { padding: 30px 15px; }
    .package-body { padding: 25px 15px; }
    .package-card.premium { transform: scale(1); border-width: 1.5px; }
    .packages-wrapper { grid-template-columns: 1fr; gap: 20px; }
    .package-features.two-col { display: flex; flex-direction: column; }
}
