/* 
   Endorse International - Premium Stylesheet
   Primary Color: #08575c (Deep Cyan/Teal)
   Secondary Color: #013b46 (Dark Teal)
   Third Color: #ffffff (White)
*/

:root {
    /* Brand Colors */
    --clr-primary: #08575c;
    --clr-primary-light: #0d838a;
    --clr-secondary: #013b46;
    --clr-secondary-dark: #01242b;
    --clr-white: #ffffff;
    --clr-white-70: rgba(255, 255, 255, 0.7);
    --clr-black: #111827;
    --clr-gray-100: #f3f4f6;
    --clr-gray-200: #e5e7eb;
    --clr-gray-600: #4b5563;
    --clr-gray-800: #1f2937;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    --grad-light: linear-gradient(135deg, rgba(8, 87, 92, 0.1), rgba(1, 59, 70, 0.05));
    --grad-dark-overlay: linear-gradient(to right, rgba(1, 36, 43, 0.9), rgba(1, 59, 70, 0.6));
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows & Glassmorphism */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(8, 87, 92, 0.3);
    
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================
   Reset & Global Styles
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--clr-gray-800);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    cursor: none; /* For custom cursor */
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

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

.dark-section {
    background-color: var(--clr-secondary);
    color: var(--clr-white);
}

.dark-section h2, .dark-section h3 {
    color: var(--clr-white);
}

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

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

/* =========================================
   Custom Cursor
========================================= */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--clr-primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(8, 87, 92, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover effects added via JS */
.cursor-hover .cursor-dot {
    background-color: transparent;
}
.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(8, 87, 92, 0.1);
    border-color: var(--clr-primary);
}

/* =========================================
   Typography & Utilities
========================================= */
.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-light {
    background: linear-gradient(to right, #4cd0d8, var(--clr-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-gray-600);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--grad-light);
    color: var(--clr-primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(8, 87, 92, 0.2);
}

.badge-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, 0.2);
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: none; /* because of custom cursor */
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(8, 87, 92, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(8, 87, 92, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
}

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

.btn-light {
    background: var(--clr-white);
    color: var(--clr-secondary);
}

.btn-light:hover {
    background: var(--clr-gray-100);
}

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

.btn-nav {
    padding: 0.6rem 1.2rem;
}

.btn-block {
    width: 100%;
}

/* =========================================
   Navigation
========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 1rem 0;
    background: var(--clr-white);
    box-shadow: var(--shadow-sm);
}

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

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

.brand-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.header:not(.scrolled) .nav-link,
.header:not(.scrolled) .mobile-menu-btn {
    color: var(--clr-white);
}

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

.nav-link {
    font-weight: 500;
    font-family: var(--font-heading);
    position: relative;
}

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

.header:not(.scrolled) .nav-link::after {
    background-color: var(--clr-white);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: none;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    background: var(--clr-secondary-dark);
    overflow: hidden;
}

.hero-bg-minimal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(8, 87, 92, 0.4) 0%, var(--clr-secondary-dark) 70%);
    z-index: 1;
}

.digital-globe {
    position: absolute;
    top: 50%;
    right: -5vw;
    transform: translateY(-50%);
    width: clamp(400px, 70vw, 900px);
    height: clamp(400px, 70vw, 900px);
    background-image: url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiByPSI0OCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNGNkMGQ4IiBzdHJva2Utd2lkdGg9IjAuNSIgc3Ryb2tlLWRhc2hhcnJheT0iMiAyIi8+PGVsbGlwc2UgY3g9IjUwIiBjeT0iNTAiIHJ4PSI0OCIgcnk9IjE1IiBmaWxsPSJub25lIiBzdHJva2U9IiM0Y2QwZDgiIHN0cm9rZS13aWR0aD0iMC4zIi8+PGVsbGlwc2UgY3g9IjUwIiBjeT0iNTAiIHJ4PSI0OCIgcnk9IjMwIiBmaWxsPSJub25lIiBzdHJva2U9IiM0Y2QwZDgiIHN0cm9rZS13aWR0aD0iMC4zIi8+PGVsbGlwc2UgY3g9IjUwIiBjeT0iNTAiIHJ4PSIxNSIgcnk9IjQ4IiBmaWxsPSJub25lIiBzdHJva2U9IiM0Y2QwZDgiIHN0cm9rZS13aWR0aD0iMC4zIi8+PGVsbGlwc2UgY3g9IjUwIiBjeT0iNTAiIHJ4PSIzMCIgcnk9IjQ4IiBmaWxsPSJub25lIiBzdHJva2U9IiM0Y2QwZDgiIHN0cm9rZS13aWR0aD0iMC4zIi8+PGxpbmUgeDE9IjIiIHkxPSI1MCIgeDI9Ijk4IiB5Mj0iNTAiIHN0cm9rZT0iIzRjZDBkOCIgc3Ryb2tlLXdpZHRoPSIwLjUiLz48bGluZSB4MT0iNTAiIHkxPSIyIiB4Mj0iNTAiIHkyPSI5OCIgc3Ryb2tlPSIjNGNkMGQ4IiBzdHJva2Utd2lkdGg9IjAuNSIvPjwvc3ZnPg==');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
    animation: slowSpin 80s linear infinite;
}

@keyframes slowSpin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.hero-flying-plane {
    position: absolute;
    top: 25%;
    left: -300px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    pointer-events: none;
    animation: flyLeftToRight 25s linear infinite;
}

@keyframes flyLeftToRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 600px));
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    margin-top: 5rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--clr-white-70);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.hero-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: var(--clr-white);
}

.hero-buttons .btn-outline:hover {
    background: var(--clr-white);
    color: var(--clr-secondary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-white);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.9rem;
    color: #4cd0d8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visuals */
.hero-visuals {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--clr-white);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.card-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

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

.card-3 {
    top: -5%;
    right: 0%;
    padding: 1rem;
    animation-delay: 1.5s;
}

.card-3 .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.card-3 h4 {
    font-size: 0.9rem;
}

.card-3 p {
    font-size: 0.8rem;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-text h4 {
    color: var(--clr-white);
    margin-bottom: 0.2rem;
}

.card-text p {
    color: var(--clr-white-70);
    font-size: 0.9rem;
    margin: 0;
}

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

.animated-plane i {
    position: absolute;
    font-size: 3rem;
    color: var(--clr-white);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    animation: flyPlane 15s linear infinite;
}

.plane-path {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 80%;
    height: 80%;
}

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

@keyframes flyPlane {
    0% { 
        transform: translate(-50px, 400px) rotate(-15deg) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translate(600px, -50px) rotate(15deg) scale(1.2);
        opacity: 0;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-white);
    z-index: 2;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--clr-white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--clr-white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* =========================================
   About Section
========================================= */
/* Animated Flying Airplane */
.hero-scroll-plane {
    position: absolute;
    top: 100px;
    left: 85%;
    font-size: 15rem;
    color: rgba(8, 87, 92, 0.15); /* Dark teal watermark so it shows on white background */
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: none !important;
}

.hero-scroll-plane.active {
    animation: flyUpTransition 3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes flyUpTransition {
    0% {
        transform: translateX(-50%) translateY(150px) rotate(-90deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-1500px) rotate(-90deg);
        opacity: 0;
    }
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-primary);
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.about-image-wrapper:hover .about-image img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--grad-primary);
    color: var(--clr-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 4px solid var(--clr-white);
}

.exp-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-family: var(--font-heading);
    font-weight: 500;
}

.about-features {
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-light);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =========================================
   Stats Section
========================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: #4cd0d8;
    margin-bottom: 1rem;
}

.counter {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* =========================================
   Destinations Section
========================================= */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dest-card {
    background: var(--clr-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
}

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

.dest-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dest-card:hover .dest-img img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(1, 36, 43, 0.8), transparent);
}

.dest-flag {
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--clr-white);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

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

.dest-content {
    padding: 2rem;
}

.dest-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dest-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--clr-gray-600);
    font-size: 0.95rem;
}

.dest-benefits i {
    color: var(--clr-primary);
    width: 20px;
}

/* =========================================
   Visit Visa Section
========================================= */
.visa-section {
    position: relative;
    overflow: hidden;
}

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

.visa-features {
    margin-top: 2rem;
}

.visa-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--clr-white-70);
    font-size: 1.1rem;
}

.visa-features i {
    color: #4cd0d8;
    font-size: 1.2rem;
}

.visa-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.passport-mockup {
    width: 300px;
    height: 400px;
    background: #0a192f;
    border-radius: 15px;
    border: 2px solid #1f3a5f;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s;
}

.visa-visual:hover .passport-mockup {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.passport-emblem {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.passport-cover h3 {
    color: #d4af37;
    letter-spacing: 5px;
    text-align: center;
}

.visa-stamp {
    position: absolute;
    border: 3px solid #ff4757;
    color: #ff4757;
    padding: 0.5rem 1rem;
    font-family: monospace;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 8px;
    opacity: 0.8;
}

.stamp-1 {
    top: 20%;
    right: -20%;
    transform: rotate(25deg);
}

.stamp-2 {
    bottom: 30%;
    left: -10%;
    transform: rotate(-15deg);
    border-color: #2ed573;
    color: #2ed573;
}

/* =========================================
   Language Section
========================================= */
.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.lang-card {
    background: var(--clr-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-gray-200);
    transition: var(--transition-smooth);
}

.lang-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-primary-light);
}

.lang-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--grad-light);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.lang-card h3 {
    margin-bottom: 1rem;
}

.lang-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    background: var(--clr-primary);
    padding: 2rem;
    border-radius: 16px;
    color: var(--clr-white);
}

.lang-feat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.lang-feat-item i {
    font-size: 1.5rem;
    color: #4cd0d8;
}

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

.service-item {
    background: var(--clr-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

.service-item h3 {
    margin-bottom: 1rem;
}

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

.process-line {
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: var(--clr-gray-200);
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--clr-white);
    border: 2px solid var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-primary);
    font-family: var(--font-heading);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 10px var(--clr-white);
}

.step-content {
    background: var(--clr-gray-100);
    padding: 2rem;
    border-radius: 16px;
    width: 100%;
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--clr-gray-100);
    transform: rotate(45deg) translateY(-50%);
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* =========================================
   Testimonials Section
========================================= */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    text-align: center;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--clr-white);
    line-height: 1.8;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--clr-white);
}

.reviewer-info h4 {
    color: var(--clr-white);
    margin: 0;
}

.reviewer-info span {
    color: #4cd0d8;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--clr-white);
    cursor: none; /* custom cursor */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--clr-white);
    color: var(--clr-primary);
}

/* =========================================
   Gallery Section
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 36, 43, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

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

.faq-item {
    background: var(--clr-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    background: var(--clr-white);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.faq-question:hover h4 {
    color: var(--clr-primary);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary large value */
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--clr-gray-600);
}

/* =========================================
   Contact Section
========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--grad-light);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 0.2rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--clr-gray-100);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--clr-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--clr-gray-200);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-primary);
}

/* =========================================
   Footer
========================================= */
.footer {
    background: var(--clr-white);
    color: var(--clr-gray-600);
    padding-top: 5rem;
    border-top: 1px solid var(--clr-gray-200);
}

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

.footer-logo .logo-text {
    color: var(--clr-secondary);
}

.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--clr-secondary);
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--clr-primary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px 0 0 8px;
    outline: none;
}

.newsletter-form button {
    padding: 0 1.5rem;
    background: var(--clr-primary);
    color: var(--clr-white);
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: none;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--clr-gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links a {
    margin-left: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--clr-primary);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: transform 0.3s;
}

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

/* =========================================
   Animations & Reveal
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.2s; }
.reveal-delay-2 { transition-delay: 0.4s; }
.reveal-delay-3 { transition-delay: 0.6s; }

/* =========================================
   Responsive Design
========================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-visuals { display: none; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .trust-badges { justify-content: center; }
    .hero-bg-minimal { background: radial-gradient(circle at 50% 50%, rgba(8, 87, 92, 0.4) 0%, var(--clr-secondary-dark) 70%); }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header { padding: 1rem 0; }
    
    .hero { align-items: flex-start; padding-top: 110px; }
    .hero-grid { margin-top: 0; }
    
    .scroll-indicator { bottom: 8rem; }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clr-white);
        padding: 2rem;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        gap: 1.5rem;
    }
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    .nav-link { color: var(--clr-secondary) !important; }
    .header:not(.scrolled) .nav-link::after { background-color: var(--clr-primary); }
    .nav-actions .btn { display: none; }
    .mobile-menu-btn { display: block; cursor: pointer; }
    
    .about-grid, .visa-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-line { left: 30px; }
    .step-number { width: 60px; height: 60px; font-size: 1.2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    
    .cursor-dot, .cursor-outline { display: none; } /* Disable custom cursor on mobile */
    body, a, button, .btn { cursor: auto; }
}

@media (max-width: 480px) {
    .hero-grid { margin-top: 0; }
    .hero-title { font-size: 2rem; margin-bottom: 0.5rem; line-height: 1.2; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-buttons { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
    .destinations-grid, .language-grid, .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { grid-column: span 1 !important; }
}
