/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Travel & Adventure Color Scheme - Enhanced Touristic Palette */
    --travel-deep: #c05621;
    --travel-medium: #e67e22;
    --travel-light: #f39c12;
    --travel-pale: #fdebd0;
    --travel-white: #ffffff;
    /* Ocean & Sky Colors */
    --ocean-deep: #1e3a8a;
    --ocean-medium: #3b82f6;
    --ocean-light: #60a5fa;
    --sky-blue: #e0f2fe;
    /* Tropical & Nature Colors */
    --tropical-green: #10b981;
    --tropical-light: #d1fae5;
    --sunset-coral: #f97316;
    --sunset-pink: #fb7185;
    /* Text Colors */
    --text-dark: #2c3e50;
    --text-medium: #34495e;
    --text-light: #7f8c8d;
    /* Shadows with travel theme */
    --shadow-soft: 0 4px 20px rgba(230, 126, 34, 0.15);
    --shadow-medium: 0 8px 30px rgba(230, 126, 34, 0.25);
    --shadow-strong: 0 12px 40px rgba(230, 126, 34, 0.35);
    --shadow-ocean: 0 4px 20px rgba(59, 130, 246, 0.15);
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(0.875rem, 0.8rem + 0.4vw, 1rem);
    line-height: 1.7;
    color: var(--text-medium);
    background-color: var(--travel-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.125rem);
}

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

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

.container {
    max-width: min(1200px, 95vw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 2px solid rgba(59, 130, 246, 0.15);
}

.main-header.scrolled {
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 0.99);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.75rem, 1.5vw, 1.25rem) 0;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    font-weight: 700;
    color: var(--travel-deep);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav-link {
    color: var(--text-medium);
    font-weight: 500;
    font-size: clamp(0.875rem, 0.9rem + 0.1vw, 1rem);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ocean-medium), var(--tropical-green));
    transition: var(--transition-smooth);
}

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background-color: var(--travel-deep);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Centered with Accents */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, 
        var(--sky-blue) 0%, 
        var(--travel-pale) 25%, 
        var(--travel-white) 50%, 
        var(--tropical-light) 75%, 
        var(--sky-blue) 100%);
}

/* Travel-themed decorative elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}


/* Morphing Blob Background */
.hero-blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: morphBlob 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--ocean-light);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: var(--travel-medium);
    top: 50%;
    right: -300px;
    animation-delay: -5s;
}

.blob-3 {
    width: 450px;
    height: 450px;
    background: var(--tropical-green);
    bottom: -150px;
    left: 20%;
    animation-delay: -10s;
}

.blob-4 {
    width: 550px;
    height: 550px;
    background: var(--sunset-coral);
    top: 20%;
    right: 10%;
    animation-delay: -15s;
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) scale(1);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: translate(-30px, 50px) scale(0.9);
    }
    75% {
        border-radius: 70% 30% 50% 50% / 30% 50% 70% 50%;
        transform: translate(30px, 30px) scale(1.05);
    }
}

/* Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--ocean-light);
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 15%;
    animation-delay: -1s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation-delay: -2s;
}

.decorative-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--ocean-light), transparent);
    opacity: 0.2;
    height: 2px;
    animation: slideLine 8s linear infinite;
}


.line-1 {
    width: 200px;
    top: 30%;
    left: -200px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    width: 150px;
    bottom: 40%;
    right: -150px;
    transform: rotate(-45deg);
    animation-delay: -4s;
}

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

@keyframes slideLine {
    0% {
        left: -200px;
    }
    100% {
        left: 120%;
    }
}

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

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text-wrapper {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.accent-text {
    background: linear-gradient(135deg, var(--ocean-medium), var(--tropical-green), var(--travel-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.375rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(0.875rem, 1vw + 0.5rem, 1.125rem) clamp(2rem, 4vw + 1rem, 3rem);
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: clamp(0.9375rem, 1vw + 0.3rem, 1.0625rem);
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ocean-medium), var(--tropical-green));
    color: var(--travel-white);
    box-shadow: var(--shadow-ocean);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tropical-green), var(--ocean-medium));
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

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

.btn-secondary {
    background: transparent;
    color: var(--ocean-medium);
    border: 2px solid var(--ocean-medium);
    position: relative;
}

.btn-secondary:hover {
    background: var(--ocean-medium);
    color: var(--travel-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-ocean);
    border-color: var(--ocean-medium);
}

.pulse-animation {
    animation: pulseButton 2s ease-in-out infinite;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(59, 130, 246, 0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    color: var(--ocean-medium);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--ocean-medium), transparent);
    animation: scrollLine 2s infinite;
}

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

@keyframes scrollLine {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Section Styles */
section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ocean-deep), var(--tropical-green), var(--travel-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-subtitle {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Statistics Section */
.stats-section {
    background: var(--travel-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 4rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.2));
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 2px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' opacity='0.2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-medium), var(--tropical-green), var(--sunset-coral));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

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

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

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--ocean-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    padding: 10px;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--ocean-medium), var(--tropical-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    color: var(--text-light);
    font-size: clamp(0.9375rem, 1vw + 0.3rem, 1.0625rem);
    font-weight: 500;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    margin-top: 4rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* Services Section with Tabs */
.services-section {
    background: linear-gradient(180deg, var(--travel-white) 0%, rgba(224, 242, 254, 0.1) 50%, rgba(253, 235, 208, 0.05) 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(59, 130, 246, 0.02) 10px, rgba(59, 130, 246, 0.02) 20px);
    pointer-events: none;
    z-index: 0;
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 3px solid rgba(59, 130, 246, 0.2);
    padding-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: clamp(0.9375rem, 1vw + 0.3rem, 1.0625rem);
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    font-family: 'Space Grotesk', sans-serif;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ocean-medium), var(--tropical-green));
    transition: var(--transition-smooth);
}

.tab-btn.active {
    color: var(--ocean-medium);
    font-weight: 600;
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn:hover {
    color: var(--ocean-medium);
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-panel.active {
    display: block;
}

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

.tab-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-text h3 {
    color: var(--ocean-deep);
    margin-bottom: 1.5rem;
}

.tab-text ul {
    list-style: none;
    margin-top: 1.5rem;
}

.tab-text li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.tab-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--ocean-medium);
    font-weight: bold;
}

.tab-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.tab-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.tab-image:hover img {
    transform: scale(1.1);
}

/* Solutions Section with Interactive Cards */
.solutions-section {
    background: var(--travel-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.solution-card {
    position: relative;
    width: 100%;
    min-height: 300px;
    height: auto;
    perspective: 1000px;
    cursor: pointer;
    margin-bottom: 0;
}

.interactive-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    min-height: 300px;
}

.solution-card:hover .interactive-card {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 300px;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.card-front {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.3));
    border: 2px solid rgba(59, 130, 246, 0.2);
    z-index: 2;
    gap: 1.5rem;
}

.continent-map {
    width: 120px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.card-front:hover .continent-map {
    opacity: 1;
    transform: scale(1.05);
}

/* Europe Map - Simplified outline */
.europe-map {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120'%3E%3Cpath d='M25 65 L45 45 L65 50 L80 40 L95 45 L115 35 L135 40 L155 45 L165 55 L160 70 L145 75 L125 80 L105 85 L85 80 L65 75 L45 70 L30 65 Z' fill='%233b82f6' fill-opacity='0.6' stroke='%231e3a8a' stroke-width='2.5'/%3E%3Cpath d='M50 55 L60 50 L70 55 L65 65 L55 65 Z' fill='%233b82f6'/%3E%3Cpath d='M100 40 L110 35 L120 40 L115 50 L105 50 Z' fill='%233b82f6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Asia Map - Simplified outline */
.asia-map {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120'%3E%3Cpath d='M15 55 L35 40 L55 45 L75 35 L95 40 L115 30 L135 35 L155 45 L165 60 L160 75 L145 85 L125 90 L105 85 L85 80 L65 75 L45 70 L30 65 L20 60 Z' fill='%2310b981' fill-opacity='0.6' stroke='%23065970' stroke-width='2.5'/%3E%3Cpath d='M140 30 L150 25 L160 30 L155 40 L145 40 Z' fill='%2310b981'/%3E%3Cpath d='M50 45 L60 40 L70 45 L65 55 L55 55 Z' fill='%2310b981'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* America Map - North and South America */
.america-map {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120'%3E%3Cpath d='M35 25 L55 20 L75 25 L95 23 L115 30 L125 40 L120 55 L105 60 L85 55 L65 50 L45 45 L35 35 Z' fill='%23f97316' fill-opacity='0.6' stroke='%23c2410c' stroke-width='2.5'/%3E%3Cpath d='M45 65 L65 60 L85 65 L95 75 L90 90 L75 95 L55 90 L40 80 Z' fill='%23f97316' fill-opacity='0.6' stroke='%23c2410c' stroke-width='2.5'/%3E%3Cpath d='M40 30 L50 25 L60 30 L55 40 L45 40 Z' fill='%23f97316'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Africa Map - Simplified outline */
.africa-map {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120'%3E%3Cpath d='M45 25 L65 20 L85 25 L95 35 L90 55 L85 75 L80 90 L65 95 L50 90 L40 75 L35 55 L37 40 Z' fill='%23e67e22' fill-opacity='0.6' stroke='%23c05621' stroke-width='2.5'/%3E%3Cpath d='M55 35 L65 30 L75 35 L70 45 L60 45 Z' fill='%23e67e22'/%3E%3Cpath d='M70 65 L80 60 L90 65 L85 75 L75 75 Z' fill='%23e67e22'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Oceania Map - Island groups */
.oceania-map {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120'%3E%3Cpath d='M35 55 L55 50 L75 55 L70 70 L55 75 L40 70 Z' fill='%2360a5fa' fill-opacity='0.6' stroke='%231e3a8a' stroke-width='2.5'/%3E%3Cpath d='M95 45 L110 40 L125 45 L120 60 L105 65 L90 60 Z' fill='%2360a5fa' fill-opacity='0.6' stroke='%231e3a8a' stroke-width='2.5'/%3E%3Cpath d='M135 55 L150 50 L165 55 L160 70 L145 75 L130 70 Z' fill='%2360a5fa' fill-opacity='0.6' stroke='%231e3a8a' stroke-width='2.5'/%3E%3Cpath d='M45 85 L60 80 L75 85 L70 100 L55 105 L40 100 Z' fill='%2360a5fa' fill-opacity='0.6' stroke='%231e3a8a' stroke-width='2.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Middle East Map - Simplified outline */
.middle-east-map {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120'%3E%3Cpath d='M55 45 L75 40 L95 45 L105 55 L100 70 L85 75 L70 70 L60 60 L55 50 Z' fill='%23f39c12' fill-opacity='0.6' stroke='%23c05621' stroke-width='2.5'/%3E%3Cpath d='M65 50 L75 45 L85 50 L80 60 L70 60 Z' fill='%23f39c12'/%3E%3Cpath d='M95 55 L105 50 L115 55 L110 65 L100 65 Z' fill='%23f39c12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.card-back {
    background: linear-gradient(135deg, var(--ocean-medium), var(--tropical-green));
    color: var(--travel-white);
    transform: rotateY(180deg);
    z-index: 1;
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card-front:hover .solution-icon {
    background: rgba(230, 126, 34, 0.2);
    transform: scale(1.1);
}

.card-front h3 {
    background: linear-gradient(135deg, var(--ocean-deep), var(--tropical-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    flex-shrink: 0;
}

.card-back h3 {
    color: var(--travel-white);
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.card-back p {
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
    overflow-y: auto;
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(180deg, rgba(253, 235, 208, 0.05) 0%, var(--travel-white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.feature-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--travel-white), rgba(224, 242, 254, 0.15));
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-left: 4px solid var(--ocean-medium);
    position: relative;
    overflow: hidden;
}

.feature-item:nth-child(2) {
    border-left-color: var(--tropical-green);
}

.feature-item:nth-child(3) {
    border-left-color: var(--sunset-coral);
}

.feature-item:nth-child(4) {
    border-left-color: var(--travel-light);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    border-left-color: var(--travel-medium);
}

.feature-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ocean-medium), var(--tropical-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.feature-item h3 {
    color: var(--ocean-deep);
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    background: var(--travel-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 242, 254, 0.15));
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.process-step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--ocean-medium);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--ocean-light);
}

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

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--ocean-medium), var(--tropical-green));
    color: var(--travel-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-ocean);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--ocean-light);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.process-step h3 {
    background: linear-gradient(135deg, var(--ocean-deep), var(--tropical-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--travel-white) 0%, rgba(224, 242, 254, 0.15) 100%);
    position: relative;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(2rem, 4vw, 4rem);
}

.contact-info h3 {
    color: var(--ocean-deep);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.contact-item a {
    color: var(--ocean-medium);
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--tropical-green);
    text-decoration: underline;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--travel-white), rgba(224, 242, 254, 0.1));
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    z-index: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--travel-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-medium);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-medium), var(--travel-medium));
    color: var(--travel-white);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--travel-white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--travel-white);
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.business-id {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-medium));
    color: var(--travel-white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: var(--tropical-light);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--travel-white);
    color: var(--ocean-deep);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    font-family: 'Space Grotesk', sans-serif;
}

.cookie-btn:hover {
    background: var(--tropical-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-ocean);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Travel-themed Enhancements */

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .tab-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--travel-white);
        box-shadow: var(--shadow-medium);
        transform: translateX(-100%);
        transition: var(--transition-smooth);
        z-index: 999;
        padding: 2rem;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid rgba(230, 126, 34, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .blob {
        filter: blur(60px);
    }
    
    .blob-1, .blob-2, .blob-3, .blob-4 {
        width: 300px;
        height: 300px;
    }
    
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        height: 250px;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        text-align: left;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .btn-primary::after,
    .btn-secondary::after {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 1600px;
    }
    
    html {
        font-size: 18px;
    }
}
