/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    /* Primary Colors from PLaN4 App */
    --primary-blue: #0086FF;
    --light-bg: #ffffff;
    --dark-bg: #212529;
    --light-text: #212529;
    --dark-text: #f8f9fa;
    --placeholder-light: #6c757d;
    --placeholder-dark: #fff;
    --border-light: #ced4da;
    --border-dark: #495057;
    
    /* Secondary Colors */
    --success-green: #4CAF50;
    --purple: #9C27B0;
    --google-blue: #4285F4;
    --orange: #FF9800;
    --red: #F44336;
    --yellow: #F59E0B;
    
    /* Neutral Colors */
    --light-gray: #f8f9fa;
    --medium-gray: #666;
    --dark-gray: #333;
    --card-border-light: #e9ecef;
    --card-border-dark: #3a3a3a;
    
    /* Typography */
    --font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-large: 24px;
    --font-size-title: 18px;
    --font-size-body: 16px;
    --font-size-small: 14px;
    --font-size-caption: 12px;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 16px;
    --spacing-xl: 20px;
    --spacing-xxl: 24px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--light-bg);
    font-weight: 400;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #005bb5 100%);
    color: white;
    padding: var(--spacing-lg) 0;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: var(--font-size-large);
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-family: var(--font-family);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    gap: 0.8rem;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    font-size: var(--font-size-large);
    font-weight: 700;
    color: white;
    font-family: var(--font-family);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-small);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--yellow);
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #005bb5 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Background Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-particles 20s infinite linear;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 120px;
    height: 120px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 30s;
}

.particle:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 80%;
    animation-delay: 6s;
    animation-duration: 35s;
}

.particle:nth-child(5) {
    width: 40px;
    height: 40px;
    left: 30%;
    animation-delay: 8s;
    animation-duration: 15s;
}

.particle:nth-child(6) {
    width: 90px;
    height: 90px;
    left: 60%;
    animation-delay: 10s;
    animation-duration: 40s;
}

.particle:nth-child(7) {
    width: 70px;
    height: 70px;
    left: 40%;
    animation-delay: 12s;
    animation-duration: 18s;
}

.particle:nth-child(8) {
    width: 110px;
    height: 110px;
    left: 90%;
    animation-delay: 14s;
    animation-duration: 28s;
}

@keyframes float-particles {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Animated Title Words */
.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: var(--font-family);
    letter-spacing: -1px;
    color: white;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Feature Callouts */
.feature-callout {
    position: absolute;
    z-index: 10;
    animation: pulse-callout 2s infinite;
}

.callout-1 {
    top: 20%;
    left: -80px;
}

.callout-2 {
    bottom: 30%;
    right: -90px;
}

.callout-dot {
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    position: relative;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.3);
}

.callout-text {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

@keyframes pulse-callout {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xxl);
    min-height: 80vh;
}

.hero-text {
    text-align: left;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Container */
.phone-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: row;
}

/* Image Carousel Styles */
.image-carousel {
    position: relative;
    width: 300px;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInRight 0.8s ease-out;
    background: #000;
    border: 8px solid #1a1a1a;
    margin: 0 auto;
    transform: rotate(8deg) translateX(20px);
    transition: transform 0.3s ease;
}

.image-carousel:hover {
    transform: rotate(5deg) scale(1.02) translateX(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.download-btn {
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.download-btn img {
    width: 160px;
    height: auto;
    display: block;
    border-radius: 6px;
}

#playstore-btn:hover {
    box-shadow: 0 8px 25px rgba(52, 168, 83, 0.3);
}

#appstore-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

/* Phone screen bezel effect */
.image-carousel::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-45%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    z-index: 10;
}

/* Home indicator for modern phones */
.image-carousel::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-45%);
    width: 100px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    z-index: 10;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    margin-top: 25px;
    margin-bottom: 15px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 30px 15px 20px;
    font-size: var(--font-size-small);
    font-weight: 600;
    text-align: center;
    font-family: var(--font-family);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
    font-weight: bold;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -60px;
    top: 55%;
}

.next-btn {
    right: -60px;
    top: 45%;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.sri-lanka-illustration {
    filter: drop-shadow(0 10px 30px rgba(0, 134, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
    opacity: 1;
}

.scroll-arrow {
    color: #0086FF;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.3rem auto;
    animation: bounce 2s infinite;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-text {
    color: white;
    opacity: 0.7;
    font-size: 0.8rem;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: var(--font-family);
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.95;
    line-height: 1.7;
    min-height: 4.08rem; /* Pre-allocate space for 3 lines to prevent jumping */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.95;
    line-height: 1.7;
    transition: all 0.3s ease;
}

/* Glow Animation for Hero Subtitle */
.hero-subtitle.glow-animation {
    animation: heroGlow 3s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
        opacity: 0.95;
    }
    50% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.6),
            0 0 20px rgba(0, 134, 255, 0.3),
            0 0 30px rgba(0, 134, 255, 0.2);
        opacity: 1;
    }
}

.cta-button {
    display: inline-block;
    background: var(--yellow);
    color: var(--light-text);
    padding: var(--spacing-lg) var(--spacing-xxl);
    text-decoration: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--spacing-lg);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--orange);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 134, 255, 0.03) 0%, rgba(156, 39, 176, 0.05) 100%);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,134,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--light-text);
    font-family: var(--font-family);
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 15px 30px rgba(0, 134, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple), var(--yellow));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 134, 255, 0.1) 0%, transparent 50%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 134, 255, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--light-text);
    font-family: var(--font-family);
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.feature-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-link:hover {
    color: var(--purple);
    transform: translateX(5px);
}

.feature-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.feature-link:hover::after {
    transform: translateX(3px);
}

/* Simplified Illustration Container */
.illustration-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
}

/* Destinations Section */
.destinations {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.destinations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="destinations-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,134,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23destinations-grid)"/></svg>');
    opacity: 0.3;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem auto 0;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    justify-content: center;
    place-items: center;
}

/* For exactly 4 cards, use a 2x2 grid on smaller screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 2rem;
    }
}

.destination-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 100%;
    height: 480px; /* Increased from 420px to 480px for better spacing */
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 134, 255, 0.2);
}

.destination-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    background-size: 30px 30px;
    opacity: 0.6;
}

.destination-image.cultural {
    height: 200px;
    background: linear-gradient(rgba(0, 134, 255, 0.5), rgba(156, 39, 176, 0.2)), url('/images/explore-section/cultural-heritage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.destination-image.beaches {
    height: 200px;
    background: linear-gradient(rgba(76, 175, 80, 0.5), rgba(139, 195, 74, 0.2)), url('/images/explore-section/prestine-beaches.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.destination-image.hills {
    height: 200px;
    background: linear-gradient(rgba(255, 152, 0, 0.5), rgba(245, 124, 0, 0.2)), url('/images/explore-section/hill-country.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.destination-image.wildlife {
    height: 200px;
    background: linear-gradient(rgba(156, 39, 176, 0.5), rgba(233, 30, 99, 0.2)), url('/images/explore-section/wildlife.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.destination-content {
    padding: 1.5rem;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px; /* Increased from 220px to 280px for better spacing */
}

.destination-content h3 {
    font-family: var(--font-family);
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--light-text);
    font-size: 1.2rem;
    line-height: 1.3;
    height: 2rem; /* Fixed height for headers */
    display: flex;
    align-items: center;
}

.destination-content p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
    height: 6rem; /* Increased from 5rem to 6rem for better spacing */
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.destination-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 1.5rem; /* Fixed height for links */
}

.destination-link:hover {
    color: var(--purple);
    transform: translateX(5px);
}

.destination-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.destination-link:hover::after {
    transform: translateX(3px);
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* About Section Container */
.about-illustration-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 350px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 134, 255, 0.03) 0%, rgba(156, 39, 176, 0.05) 100%);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,134,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grid)"/></svg>');
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    position: relative;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-family: var(--font-family);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text .cta-button {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 134, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 134, 255, 0.4);
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
}

.about-text .cta-button::after {
    content: '→';
    transition: transform 0.3s ease;
}

.about-text .cta-button:hover::after {
    transform: translateX(3px);
}

.about-image {
    text-align: center;
    position: relative;
}

.about-visual {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    border-radius: 24px;
    padding: 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 134, 255, 0.2);
    transition: all 0.4s ease;
}

.about-visual:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 40px 80px rgba(0, 134, 255, 0.3);
}

.about-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.about-visual h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.about-visual p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
    position: relative;
    z-index: 2;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.about-stat {
    text-align: center;
}

.about-stat h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.about-stat p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Founder Section */
.founder {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 134, 255, 0.02) 0%, rgba(76, 175, 80, 0.03) 100%);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="founder-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,134,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23founder-grid)"/></svg>');
    opacity: 0.5;
}

.founder-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 3rem;
}

.founder-text {
    text-align: left;
}

.founder-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--light-text);
    font-family: var(--font-family);
}

.founder-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    font-family: var(--font-family);
}

.founder-title {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.founder-text p:last-of-type {
    font-style: italic;
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    padding: 1rem;
    border-left: 4px solid var(--primary-blue);
    background-color: rgba(0, 134, 255, 0.02);
}

.founder-achievements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.achievement:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 134, 255, 0.1);
}

.achievement i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.achievement span {
    font-weight: 500;
    color: var(--light-text);
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-visual {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.founder-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.founder-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 134, 255, 0.2);
}

.founder-photo-bg {
    height: 300px;
    position: relative;
    overflow: hidden;
    background-image: url('/images/founder-photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-avatar {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-photo {
    width: 220px;
    height: 280px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 4px solid var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 134, 255, 0.2);
    transition: all 0.3s ease;
    background: var(--light-gray);
    display: none; /* Hidden when using card design */
}

.founder-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 134, 255, 0.3);
}

/* Fallback for icon if image fails to load */
.founder-avatar i {
    font-size: 6rem;
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: none; /* Hidden when image is present */
}

.founder-info {
    padding: 1.5rem;
    text-align: center;
}

.founder-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-weight: 600;
}

.founder-info p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.founder-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--medium-gray);
    transition: all 0.3s ease;
    text-decoration: none;
}

.founder-social a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 134, 255, 0.03) 0%, rgba(156, 39, 176, 0.05) 100%);
    width: 100%;
    overflow: hidden;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,134,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
    opacity: 0.3;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 134, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--purple), var(--yellow));
    border-radius: 32px 32px 0 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--light-text);
    font-family: var(--font-family);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(0, 134, 255, 0.1);
    border-radius: 16px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 134, 255, 0.1);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--purple));
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--purple), var(--primary-blue));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 134, 255, 0.4);
}

.contact-info {
    text-align: center;
    margin-top: 2rem;
    color: var(--medium-gray);
    font-family: var(--font-family);
    position: relative;
    z-index: 2;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-details {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: inline-block;
    margin-top: 0.8rem;
}

.contact-details p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
}

.contact-details p i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
    width: 16px;
    text-align: center;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    color: var(--dark-text);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.footer-brand p {
    margin: 0;
    font-family: var(--font-family);
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 32px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    color: var(--dark-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-links a:hover {
    color: var(--primary-blue);
    background: rgba(0, 134, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(0, 134, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile logo adjustments */
    .logo-image {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .footer-logo-image {
        height: 24px;
    }
    
    .footer-logo-text {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: 100vh;
    }
    
    /* Reduce section padding on mobile */
    .features,
    .destinations,
    .about,
    .contact {
        padding: 60px 0;
    }
    
    .stats {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        min-height: auto;
        padding: 0 10px;
    }
    
    .hero-visual {
        order: -1;
        margin-top: 1rem;
    }
    
    .phone-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        max-width: 100%;
        overflow: visible;
    }
    
    .image-carousel {
        width: 220px;
        height: 440px;
        margin: 0 auto;
        transform: rotate(3deg);
        position: relative;
    }
    
    .image-carousel:hover {
        transform: rotate(1deg) scale(1.02);
    }
    
    .download-buttons {
        flex-direction: row;
        gap: 8px;
        margin-left: 0;
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .download-btn img {
        width: 120px;
        height: auto;
    }
    
    .carousel-btn {
        font-size: 16px;
        padding: 5px 8px;
        width: 35px;
        height: 35px;
    }
    
    .prev-btn {
        left: -40px;
        top: 50%;
    }
    
    .next-btn {
        right: -40px;
        top: 50%;
    }
    
    .carousel-dots {
        bottom: -35px;
        transform: translateX(-50%) rotate(-3deg);
    }
    
    /* Mobile Hero Enhancements */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        color: white;
        margin-bottom: 1rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin: 1.5rem 0 4rem 0;
    }
    
    .cta-button.primary {
        padding: 12px 24px;
        font-size: 16px;
        width: auto;
        min-width: 180px;
    }
    
    .feature-callout {
        display: none; /* Hide on mobile for cleaner look */
    }
    
    .hero-text {
        text-align: center;
        padding: 0 5px;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .scroll-text {
        font-size: 0.75rem;
    }
    
    /* Mobile Sections */
    .section-title {
        font-size: 2rem;
        padding: 0 15px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin: 2rem auto 0;
        justify-content: center;
        max-width: 400px;
    }
    
    .destination-card {
        margin: 0 auto;
        max-width: 350px;
        height: 450px; /* Increased from 400px to 450px for mobile */
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .about-visual {
        padding: 1.5rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .founder-text {
        text-align: center;
    }
    
    .founder-text h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .founder-text h3 {
        font-size: 1.7rem;
    }
    
    .founder-achievements {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 400px;
        margin: 2rem auto 0;
    }
    
    .founder-visual {
        padding: 0;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .founder-card {
        max-width: 350px;
    }
    
    .founder-photo-bg {
        height: 250px;
    }
    
    .founder-avatar i {
        font-size: 4.5rem;
    }
    
    .founder-photo {
        width: 180px;
        height: 220px;
    }
    
    .achievement {
        justify-content: center;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .contact-form {
        margin: 0 15px;
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Modal Mobile Styles */
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .interest-tags {
        gap: 0.5rem;
    }
    
    .tag {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .date-inputs {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-input {
        width: 100%;
        max-width: 200px;
    }
    
    .route-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-text p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .hero {
        padding: 70px 0 30px;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 5px;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-bottom: 1.2rem;
    }
    
    .hero-actions {
        margin: 1.2rem 0 3.5rem 0;
    }
    
    .cta-button.primary {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .image-carousel {
        width: 200px;
        height: 400px;
        transform: rotate(2deg);
    }
    
    .download-buttons {
        gap: 6px;
        margin-top: 12px;
    }
    
    .download-btn img {
        width: 110px;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: -35px;
    }
    
    .next-btn {
        right: -35px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 14px;
    }
    
    /* Mobile grid adjustments */
    .destination-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin: 1.5rem auto 0;
        max-width: 320px;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
    
    .founder-text h2 {
        font-size: 1.7rem;
    }
    
    .founder-text h3 {
        font-size: 1.4rem;
    }
    
    .founder-title {
        font-size: 0.95rem;
    }
    
    .founder-achievements {
        max-width: 300px;
    }
    
    .founder-visual {
        padding: 1rem;
    }
    
    .founder-card {
        max-width: 320px;
    }
    
    .founder-photo-bg {
        height: 200px;
    }
    
    .founder-info {
        padding: 1rem;
    }
    
    .founder-avatar i {
        font-size: 3.5rem;
    }
    
    .founder-photo {
        width: 150px;
        height: 180px;
    }
    
    /* Ensure full width on very small screens */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 5px;
    }
    
    .hero {
        padding: 60px 0 25px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        padding: 0 5px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    .image-carousel {
        width: 180px;
        height: 360px;
        transform: rotate(1deg);
    }
    
    .download-btn img {
        width: 100px;
    }
    
    .cta-button.primary {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 140px;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .founder-text h2 {
        font-size: 1.5rem;
    }
    
    .founder-text h3 {
        font-size: 1.2rem;
    }
    
    .founder-title {
        font-size: 0.9rem;
    }
    
    .founder-achievements {
        max-width: 280px;
    }
    
    .founder-visual {
        padding: 0.8rem;
    }
    
    .founder-card {
        max-width: 280px;
    }
    
    .founder-photo-bg {
        height: 180px;
    }
    
    .founder-info {
        padding: 0.8rem;
    }
    
    .founder-info h4 {
        font-size: 1.1rem;
    }
    
    .founder-info p {
        font-size: 0.9rem;
    }
    
    .founder-avatar i {
        font-size: 3rem;
    }
    
    .founder-photo {
        width: 120px;
        height: 150px;
        border-width: 3px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Demo Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideInModal 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--card-border-light);
    padding-bottom: 1rem;
}

.modal-header h3 {
    color: var(--light-text);
    font-family: var(--font-family);
    font-weight: 600;
    margin: 0;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-blue);
}

/* Demo Interface */
.demo-step {
    display: none;
    text-align: center;
}

.demo-step.active {
    display: block;
    animation: fadeInStep 0.5s ease;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.demo-step h4 {
    color: var(--light-text);
    font-family: var(--font-family);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.demo-step h4 i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tag {
    background: var(--light-gray);
    color: var(--light-text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

.tag i {
    margin-right: 0.5rem;
}

.tag:hover,
.tag.active {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 134, 255, 0.3);
}

.date-inputs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.demo-input {
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

.demo-input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.demo-next-btn,
.demo-restart-btn {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
}

.demo-next-btn:hover,
.demo-restart-btn:hover {
    background: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 134, 255, 0.3);
}

.route-preview {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.route-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.route-item:last-child {
    margin-bottom: 0;
}

.day {
    background: var(--primary-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.destination {
    font-weight: 600;
    color: var(--light-text);
    flex-grow: 1;
    text-align: center;
}

.duration {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Enhanced 3D Phone Effect */
.image-carousel {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Glassmorphism Effects */
.hero-actions .cta-button.secondary {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Microinteractions */
.tag {
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tag:hover::before {
    left: 100%;
}

/* Loading Animation for Demo */
.demo-step {
    position: relative;
}

.demo-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--yellow), var(--primary-blue));
    transform: scaleX(0);
    transform-origin: left;
    animation: progress-bar 2s ease-in-out infinite;
}

@keyframes progress-bar {
    0% {
        transform: scaleX(0);
    }
    50% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}

/* Statistics Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #0086FF 0%, #005bb5 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-grid)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
    font-family: var(--font-family);
    font-weight: 700;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 1rem;
    font-family: var(--font-family);
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Custom Scroll Behavior */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Prevent horizontal overflow */
section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Loading Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
    /* Prevent any elements from causing horizontal scroll */
    .hero-content,
    .features,
    .about,
    .contact {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Ensure destination cards don't overflow */
    [style*="display: grid"] {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Mobile destination cards */
    [style*="border-radius: 16px"] {
        margin: 0 5px;
        max-width: calc(100% - 10px);
    }
    
    /* Stats section mobile fix */
    [style*="grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    /* Fix any potential transform issues */
    .feature-card:hover {
        transform: translateY(-4px) !important;
    }
}
