/* ========================================
   GLOBAL BUSINESS SERVICES - MODERN CSS
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* CSS Variables */

:root {
    /* Primary Colors - From Logo */
    --navy-dark: #132d6a;
    --navy-mid: #374360;
    --gold-mid: #947c48;
    --gold-light: #bb943f;
    /* Additional Colors */
    --white: #ffffff;
    --black: #0a0a0a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #132d6a 0%, #374360 25%, #947c48 75%, #bb943f 100%);
    --gradient-gold-soft: linear-gradient(135deg, rgba(19, 45, 106, 0.1) 0%, rgba(187, 148, 63, 0.1) 100%);
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 10px 40px rgba(187, 148, 63, 0.3);
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    /* Spacing */
    --container-max: 1400px;
    --container-padding: 2rem;
}


/* Reset & Base Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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


/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
}

.gradient-text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ========================================
   NAVIGATION
   ======================================== */

.nav-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(19, 45, 106, 0.1);
    transition: all var(--transition-base);
}

.nav-glass.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

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

.logo {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
}

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

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

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--navy-dark);
}

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

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

.nav-cta {
    background: var(--gradient-gold) !important;
    color: white !important;
    padding: 0.7rem 1.8rem !important;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(187, 148, 63, 0.4);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--navy-dark);
    border-radius: 3px;
    transition: all var(--transition-base);
}


/* ========================================
   HERO SECTION
   ======================================== */

.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* padding-top: 100px; */
    padding-top: 70px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-gold-soft);
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -100px;
    animation-delay: 7s;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

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

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: white;
    border: 2px solid var(--gold-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-stats-inline {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-inline {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-inline strong {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-inline span {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    font-weight: 500;
}


/* Hero Visual */

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 6s ease-in-out infinite;
    border: 1px solid var(--gray-100);
}

.floating-card.card-1 {
    top: 10%;
    left: -10%;
    width: 300px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 45%;
    right: -5%;
    width: 280px;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 10%;
    left: 5%;
    width: 260px;
    animation-delay: 4s;
}

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

.card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.3rem;
}

.card-stat {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.card-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-gold-soft);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(187, 148, 63, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}


/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-family: "Manrope", sans-serif;
}

.btn-large {
    padding: 1.0rem 2.5rem;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(187, 148, 63, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--navy-dark);
    border: 2px solid var(--navy-dark);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--navy-dark);
    color: white;
    transform: translateY(-3px);
}

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

.btn-outline-gold:hover {
    background: var(--gradient-gold);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-white-solid {
    background: white;
    color: var(--navy-dark);
    box-shadow: var(--shadow-lg);
}

.btn-white-solid:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--navy-dark);
    transform: translateY(-3px);
}


/* ========================================
   SECTIONS
   ======================================== */

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-gold-soft);
    color: var(--navy-dark);
    border: 1px solid var(--gold-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title-left {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.4;
    color: var(--gray-600);
    max-width: 90%;
    margin: 0 auto;
}


/* ========================================
   SERVICES PREVIEW
   ======================================== */

.services-preview {
    padding: 8rem 2rem;
    background: white;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold-soft);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-xl);
}

.service-card-modern>* {
    position: relative;
    z-index: 1;
}

.service-number {
    font-family: "Manrope", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--gold-light);
}

.service-card-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-card-modern p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features-mini {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.service-features-mini li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.service-features-mini li::before {
    content: '✓';
    color: var(--gold-light);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

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

.view-all-services {
    text-align: center;
}


/* ========================================
   BUSINESS VERTICALS SECTION
   ======================================== */

.business-verticals {
    padding: 8rem 2rem;
    background: white;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.vertical-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid var(--gray-300);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.vertical-badge {
    width: 130px;
    height: 130px;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-base);
}

.vertical-badge svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: all var(--transition-base);
}

.vertical-card:hover .vertical-badge {
    transform: scale(1.08);
}

.vertical-card:hover .vertical-badge svg {
    filter: drop-shadow(0 8px 20px rgba(187, 148, 63, 0.3));
}

.vertical-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--gray-900);
    line-height: 1.3;
    text-align: center;
}

.vertical-tagline {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.vertical-features {
    list-style: none;
    padding: 0;
}

.vertical-features li {
    padding: 0.6rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.vertical-features li::before {
    content: '✓';
    color: var(--gold-light);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}


/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
    padding: 8rem 2rem;
    background: var(--gray-50);
}

.problem-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.problem-list {
    margin: 2rem 0;
}

.problem-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.problem-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid var(--gold-light);
}

.problem-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.problem-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

.problem-insight {
    padding: 2rem;
    background: var(--gradient-gold-soft);
    border-radius: 16px;
    border-left: 4px solid var(--gold-light);
}

.problem-insight p {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin: 0;
}

.stats-card-dark {
    background: var(--navy-dark);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    color: white;
}

.stats-card-dark h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.stat-item-dark {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-dark:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.stat-number-danger {
    font-size: 3rem;
    font-weight: 800;
    color: #FF6B6B;
    margin-bottom: 0.5rem;
}

.stat-item-dark p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}


/* ========================================
   STRATEGY SECTION
   ======================================== */

.strategy-section {
    padding: 8rem 2rem;
    background: white;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.transform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--gradient-gold-soft);
    border-radius: 20px;
    border: 2px solid var(--gold-light);
    transition: all var(--transition-base);
}

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

.transform-from,
.transform-to {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.transform-from {
    background: #ffffff;
    color: #132d6a;
}

.transform-to {
    background: var(--gradient-gold);
    color: white;
}

.transform-arrow {
    font-size: 2rem;
    color: var(--gold-mid);
    font-weight: bold;
}


/* ========================================
   FRAMEWORK SECTION
   ======================================== */

.framework-section {
    padding: 8rem 2rem;
    background: var(--gray-50);
}

.framework-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--gray-300);
    position: relative;
    transition: all var(--transition-base);
}

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

.step-number {
    font-family: "Manrope", sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.step-card p {
    color: var(--gray-600);
    line-height: 1.7;
}


/* ========================================
   KEY SERVICES SECTION
   ======================================== */

.key-services-section {
    padding: 8rem 2rem;
    background: white;
}

.services-three-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-block {
    background: var(--gradient-gold-soft);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--gold-light);
}

.service-block-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.service-block ul {
    list-style: none;
    padding: 0;
}

.service-block li {
    padding: 0.7rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    line-height: 1.6;
}

.service-block li::before {
    content: '→';
    color: var(--navy-dark);
    font-weight: bold;
    flex-shrink: 0;
}


/* ========================================
   ADDITIONAL SERVICES SECTION
   ======================================== */

.additional-services {
    padding: 8rem 2rem;
    background: var(--gray-50);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.additional-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.additional-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-lg);
}

.additional-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.additional-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--gray-900);
}

.additional-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}


/* ========================================
   MODAL STYLES
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
    background: var(--gradient-gold-soft);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin: 0;
}

.modal-close {
    background: var(--navy-dark);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.modal-close:hover {
    background: var(--gold-light);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.5rem;
}

.modal-intro {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.modal-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-section:last-of-type {
    border-bottom: none;
}

.modal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
}

.modal-section p {
    color: var(--gray-800);
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: justify;
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    padding: 0rem 0;
    color: var(--gray-700);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.modal-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: bold;
}

.modal-list li strong {
    color: var(--navy-dark);
}

.modal-cta {
    text-align: center;
    /* padding-top: 1.5rem; */
}

.specialty-btn {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: 'Manrope', sans-serif;
}

.specialty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(187, 148, 63, 0.4);
}


/* ========================================
   PREMIUM OUTCOMES SECTION
   ======================================== */

.outcomes-premium-section {
    padding: 8rem 2rem;
    background: var(--gray-50);
}

.outcomes-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.outcome-premium-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 3px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.outcome-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: all var(--transition-base);
}

.owner-card::before {
    background: linear-gradient(90deg, #2196F3 0%, #1976D2 100%);
}

.investor-card::before {
    background: linear-gradient(90deg, #4CAF50 0%, #388E3C 100%);
}

.outcome-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.owner-card:hover {
    border-color: #2196F3;
}

.investor-card:hover {
    border-color: #4CAF50;
}

.outcome-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-100);
}

.outcome-icon-premium {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.owner-card .outcome-icon-premium {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.investor-card .outcome-icon-premium {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.outcome-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outcome-header h3 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin: 0;
}

.outcome-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.benefit-item:hover {
    background: var(--gradient-gold-soft);
    transform: translateX(8px);
}

.benefit-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: white;
}

.owner-card .benefit-check {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.investor-card .benefit-check {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.benefit-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--gray-900);
}

.benefit-text p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

.outcome-visual-stat {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
}

.owner-card .outcome-visual-stat {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
}

.investor-card .outcome-visual-stat {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.visual-stat-large {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.owner-card .visual-stat-large {
    color: #1976D2;
}

.investor-card .visual-stat-large {
    color: #388E3C;
}

.outcome-visual-stat p {
    color: var(--gray-700);
    font-weight: 600;
}


/* ========================================
   PHILOSOPHY SECTION
   ======================================== */

.philosophy-section {
    padding: 8rem 2rem;
    background: white;
}

.philosophy-content {
    display: grid;
    /* grid-template-columns: 1fr 1.2fr; */
    grid-template-columns: 1fr 2.8fr;
    gap: 3rem;
}

.philosophy-card {
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
}

.belief-card {
    background: var(--gradient-gold);
    color: white;
}

.promise-card {
    background: var(--navy-dark);
    color: white;
}

.philosophy-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-card h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.philosophy-main {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.philosophy-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.promise-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.promise-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.promise-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.promise-step h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.promise-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
}

.flow-arrow {
    color: var(--gold-light);
    font-size: 1.5rem;
    font-weight: bold;
}


/* ========================================
   E-2 VISA PAGE STYLES
   ======================================== */

.visa-hero {
    background: linear-gradient(135deg, #132d6a 0%, #374360 50%, #947c48 100%);
    padding: 12rem 2rem 8rem;
    color: white;
    text-align: center;
}

.hero-badge-large {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
}

.hero-badge-large svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.hero-flags {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.flag-badge {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    backdrop-filter: blur(10px);
}

.visa-overview-section {
    padding: 8rem 2rem;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.stat-num-large {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.benefit-card {
    background: var(--gradient-gold-soft);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--gold-light);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.9rem;
}

.visa-process-section {
    padding: 8rem 2rem;
    background: var(--gray-50);
}

.process-timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 44px;
    top: 90px;
    bottom: -30px;
    width: 3px;
    background: var(--gradient-gold);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-number {
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(187, 148, 63, 0.3);
}

.timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--gold-light);
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--navy-dark);
}

.timeline-details h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.timeline-details ul {
    list-style: none;
    padding: 0;
}

.timeline-details li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.7;
}

.timeline-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: bold;
}

.timeline-outcome {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: var(--gradient-gold-soft);
    border-radius: 12px;
    border-left: 4px solid var(--navy-dark);
}

.timeline-outcome strong {
    color: var(--navy-dark);
}

.visa-business-models {
    padding: 8rem 2rem;
    background: white;
}

.business-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.model-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--gray-100);
    transition: all var(--transition-base);
}

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

.model-badge {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--gold-light);
}

.model-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.model-investment {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
}

.model-features {
    list-style: none;
    padding: 0;
}

.model-features li {
    padding: 0.6rem 0;
    color: var(--gray-700);
    padding-left: 1.5rem;
    position: relative;
}

.model-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-light);
    font-weight: bold;
}

.visa-why-us {
    padding: 8rem 2rem;
    background: var(--gray-50);
}

.visa-why-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.why-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-column {
    padding: 2rem;
    border-radius: 16px;
}

.others {
    background: #FFE0E0;
}

.us {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.comparison-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    padding: 0.7rem 0;
    line-height: 1.7;
    color: var(--gray-800);
}

.stat-card-premium {
    background: var(--gradient-gold);
    padding: 3rem;
    border-radius: 24px;
    color: white;
    box-shadow: var(--shadow-xl);
}

.stat-card-premium h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.premium-stat {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.premium-stat:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.premium-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.premium-stat p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

.visa-requirements {
    padding: 8rem 2rem;
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.req-card {
    background: var(--gradient-gold-soft);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--gold-light);
}

.req-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.req-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.req-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

.visa-timeline-costs {
    padding: 8rem 2rem;
    background: var(--gray-50);
}

.timeline-costs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.timeline-box,
.costs-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.timeline-box h3,
.costs-box h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--navy-dark);
}

.timeline-breakdown,
.cost-breakdown {
    margin-bottom: 2rem;
}

.timeline-step,
.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.timeline-step strong,
.cost-item strong {
    color: var(--gray-800);
}

.timeline-step span,
.cost-item span {
    font-weight: 600;
    color: var(--navy-dark);
}

.total-timeline {
    background: var(--gradient-gold-soft);
    padding: 1.2rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid var(--gold-light);
}

.timeline-note,
.cost-note {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: italic;
}

.visa-cta-section {
    padding: 8rem 2rem;
    background: var(--gradient-gold);
    color: white;
    text-align: center;
}

.visa-cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.visa-cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

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


/* ========================================
   GAS STATION EXCELLENCE SECTION - REMOVED
   ======================================== */


/* ========================================
   E-2 VISA SECTION
   ======================================== */

.visa-section {
    padding: 8rem 2rem;
    background: white;
}

.visa-content {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 4rem;
    align-items: center;
}

.visa-badge {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.visa-badge svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

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

.visa-steps {
    margin: 2rem 0;
}

.visa-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gradient-gold-soft);
    border-radius: 16px;
    border: 2px solid var(--gold-light);
}

.visa-step-num {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.visa-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.visa-step p {
    color: var(--gray-600);
    line-height: 1.6;
}

.visa-promise {
    padding: 1.5rem;
    background: var(--navy-dark);
    color: white;
    border-radius: 12px;
    font-size: 1.05rem;
    line-height: 1.7;
}


/* ========================================
   WHY CHOOSE US PREVIEW
   ======================================== */

.why-preview {
    padding: 8rem 2rem;
    background: var(--gray-50);
}

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

.why-content {
    animation: fadeIn 1s ease;
}

.why-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
}

.why-list {
    margin-bottom: 2.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.why-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

.stats-card-large {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-100);
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-row:last-child {
    margin-bottom: 0;
}

.stat-item-large {
    text-align: center;
    padding: 1.5rem;
    background: var(--gradient-gold-soft);
    border-radius: 20px;
    border: 1px solid var(--gold-light);
}

.stat-item-large h3 {
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item-large p {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}


/* ========================================
   CTA SECTION
   ======================================== */

.cta-modern {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background: var(--gradient-gold);
}

.cta-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: pulse 15s ease-in-out infinite;
}

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

.cta-content-center h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content-center p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ========================================
   FOOTER
   ======================================== */

.footer-modern {
    background: var(--gray-900);
    color: white;
    padding: 5rem 2rem 1.4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    /* height: 60px; */
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links-modern {
    display: flex;
    gap: 1rem;
}

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

.social-links-modern a:hover {
    background: var(--gradient-gold);
    transform: translateY(-3px);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-column ul {
    list-style: disc;
    padding-left: 15px;
}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: all var(--transition-base);
}

.footer-column a:hover {
    color: var(--gold-light);
    /* padding-left: 5px; */
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #ffffff;
    padding: 0.5rem 0;
}

.contact-info svg {
    flex-shrink: 0;
}

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

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--gold-light);
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-stats-inline {
        justify-content: center;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .trust-badges {
        justify-content: center;
    }
    .floating-card {
        display: none;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .verticals-grid {
        grid-template-columns: 1fr;
    }
    .problem-content {
        grid-template-columns: 1fr;
    }
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    .framework-steps {
        grid-template-columns: 1fr;
    }
    .services-three-col {
        grid-template-columns: 1fr;
    }
    .additional-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .visa-content {
        grid-template-columns: 1fr;
    }
    .outcomes-premium-grid {
        grid-template-columns: 1fr;
    }
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    .promise-flow {
        grid-template-columns: 1fr;
    }
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    .overview-grid {
        grid-template-columns: 1fr;
    }
    .benefit-cards {
        grid-template-columns: 1fr;
    }
    .why-comparison {
        grid-template-columns: 1fr;
    }
    .visa-why-content {
        grid-template-columns: 1fr;
    }
    .timeline-costs-grid {
        grid-template-columns: 1fr;
    }
    .visa-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
     :root {
        --container-padding: 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .hero-modern {
        padding-top: 80px;
    }
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    .footer-links-group {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .stat-row {
        grid-template-columns: 1fr;
    }
    .vertical-card h3 {
        font-size: 1.2rem;
    }
    .section-title-white,
    .section-title {
        font-size: 2rem;
    }
    .visa-badge {
        max-width: 200px;
    }
    .additional-grid {
        grid-template-columns: 1fr;
    }
    .problem-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .modal-content {
        max-height: 95vh;
        margin: 1rem;
    }
    .modal-body {
        padding: 1.5rem;
    }
    .outcomes-premium-grid {
        grid-template-columns: 1fr;
    }
    .outcome-header {
        flex-direction: column;
        text-align: center;
    }
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    .promise-flow {
        grid-template-columns: 1fr;
    }
    .promise-step {
        text-align: center;
    }
    .visa-hero {
        padding: 10rem 1.5rem 6rem;
    }
    .hero-badge-large {
        width: 140px;
        height: 140px;
    }
    .page-title {
        font-size: 2.5rem;
    }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .timeline-item::after {
        display: none;
    }
    .business-models-grid {
        grid-template-columns: 1fr;
    }
    .overview-stats {
        grid-template-columns: 1fr;
    }
    .hero-modern {
        min-height: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-stats-inline {
        flex-direction: column;
        align-items: flex-start;
    }
    .stat-divider {
        display: none;
    }
    .cta-buttons-group {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   ANIMATIONS
   ======================================== */

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

[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.mt_20 {
    margin-top: 20px;
}

.border_radius_7 {
    border-radius: 7px;
}


/* .pb-0 {
    padding-bottom: 0;
}

.mb-0 {
    margin-bottom: 0;
} */


/* Header Mobile CSS */

.nav-glass {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

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

.logo {
    height: 45px;
}


/* DESKTOP MENU */

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

.nav-links li a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

.nav-cta {
    background: #0d6efd;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 6px;
}


/* MOBILE BUTTON */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: #111;
    border-radius: 2px;
}


/* 🔥 MOBILE RESPONSIVE */

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        /* HIDDEN BY DEFAULT */
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
}

.card_ceo {
    width: 100%;
}

.card_body {
    background: var(--gradient-gold-soft);
    padding: 20px 10px;
}

.fw_400 {
    font-weight: 400;
}

.text_decoration_none {
    text-decoration: none;
}

.margin_auto {
    margin: auto !important;
}

.contact-item-content p a {
    color: var(--gray-600);
    line-height: 1.6;
    text-decoration: none;
}

.box_shadow_none {
    box-shadow: none !important;
}


/* Banner CSS */


/* Full hero height */

.hero-img {
    height: 95vh;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 6s ease;
}


/* Smooth zoom */

.carousel-item.active .hero-img {
    transform: scale(1.08);
}


/* Dark gradient overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)); */
}


/* Center content perfectly */

.hero-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 850px;
}


/* Big bold heading */

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}


/* Subtitle */

.hero-subtitle {
    font-size: 1.3rem;
    color: #eee;
    margin: 20px 0 30px;
}


/* Modern CTA button */

.hero-btn {
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}


/* Mobile Banner */


/* Full height mobile hero */

.mobile-hero-img {
    /* height: 90vh; */
    object-fit: cover;
    /* filter: brightness(0.65); */
}


/* Dark overlay */

.mobile-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)); */
}


/* Perfect center alignment */

.mobile-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    text-align: center;
    width: 90%;
}


/* Heading style */

.mobile-caption h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}


/* Paragraph */

.mobile-caption p {
    font-size: 1rem;
    color: #eee;
    margin: 15px 0 25px;
}


/* Button style */

.mobile-btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}


/* Smooth fade transition */

.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}