/* DONE BY DUNNE LTD - Travel Themed Stylesheet */

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

:root {
    --primary-color: #14B8A6; /* Tropical turquoise */
    --primary-dark: #0D9488;
    --secondary-color: #F59E0B; /* Sunny amber */
    --secondary-dark: #D97706;
    --sand-color: #FEF3C7; /* Sand */
    --bg-white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #FEF3C7;
    --border-color: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Comfortaa', 'Varela Round', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Header Styles */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: 'Comfortaa', sans-serif;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-family: 'Varela Round', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

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

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

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Slider Section - Enhanced Fullscreen Design */
.hero-slider {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    will-change: opacity;
    pointer-events: none;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    pointer-events: auto;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
    transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    filter: brightness(0.9);
}

.hero-slide.active .slide-img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.75) 0%, rgba(245, 158, 11, 0.65) 50%, rgba(20, 184, 166, 0.8) 100%);
    z-index: -1;
    transition: opacity 1s ease-in-out;
}

.world-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 500"><path d="M100,200 Q300,150 500,200 T900,200" stroke="rgba(255,255,255,0.3)" fill="none" stroke-width="2"/><path d="M150,300 Q350,250 550,300 T950,300" stroke="rgba(255,255,255,0.2)" fill="none" stroke-width="2"/></svg>');
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
    animation: mapMove 20s linear infinite;
    will-change: transform;
}

@keyframes mapMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 900px;
    padding: 4rem 0;
    animation: bounceIn 1.2s ease-out;
    text-align: center;
    margin: 0 auto;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-family: 'Comfortaa', sans-serif;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    font-family: 'Varela Round', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.slide-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn:hover {
    background: white;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
    color: var(--primary-dark);
}

.slide-dots {
    display: flex;
    gap: 0.75rem;
}

.slide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slide-dots .dot.active {
    background: white;
    transform: scale(1.3);
}

/* Floating Decorative Elements */
.floating-plane,
.floating-cloud,
.floating-compass {
    position: absolute;
    font-size: 2rem;
    z-index: 5;
    pointer-events: none;
    opacity: 0.7;
}

.floating-plane {
    animation: floatPlane 15s linear infinite;
}

.plane-1 {
    top: 20%;
    left: -50px;
    animation-delay: 0s;
}

.plane-2 {
    top: 60%;
    left: -50px;
    animation-delay: 7s;
}

@keyframes floatPlane {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(25vw) translateY(-20px);
    }
    50% {
        transform: translateX(50vw) translateY(10px);
    }
    75% {
        transform: translateX(75vw) translateY(-15px);
    }
    100% {
        transform: translateX(100vw) translateY(0);
    }
}

.floating-cloud {
    animation: floatCloud 20s ease-in-out infinite;
}

.cloud-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.cloud-2 {
    top: 45%;
    right: 30%;
    animation-delay: 5s;
}

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

.floating-compass {
    top: 70%;
    right: 15%;
    animation: rotateCompass 10s linear infinite;
}

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

/* Destinations Horizontal Accordion */
.destinations {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--sand-color) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.destinations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(20,184,166,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(245,158,11,0.1)"/><circle cx="50" cy="70" r="1" fill="rgba(20,184,166,0.1)"/></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
    z-index: 0;
}

.destinations .container {
    position: relative;
    z-index: 1;
}

.destinations-accordion {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--sand-color);
}

.destinations-accordion::-webkit-scrollbar {
    height: 8px;
}

.destinations-accordion::-webkit-scrollbar-track {
    background: var(--sand-color);
    border-radius: 4px;
}

.destinations-accordion::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.destination-card {
    min-width: 350px;
    max-width: 400px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
    transform: scale(0.95);
    opacity: 0.8;
}

.destination-card.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.3);
    min-width: 500px;
}

.destination-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.destination-card.active .destination-image {
    height: 300px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
    transform-origin: center center;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1) !important;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(20, 184, 166, 0.3) 100%);
}

.destination-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-bottom: 3px solid var(--sand-color);
}

.destination-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
    margin: 0;
}

.destination-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.destination-card.active .destination-icon {
    transform: rotate(90deg);
}

.destination-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: white;
}

.destination-card.active .destination-content {
    max-height: 500px;
}

.destination-info {
    display: flex;
    justify-content: space-around;
    padding: 1.5rem;
    background: var(--sand-color);
    border-bottom: 2px dashed var(--primary-color);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.info-value {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Comfortaa', sans-serif;
}

.destination-description {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Varela Round', sans-serif;
}

.destination-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
}

.route-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Comfortaa', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

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

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Varela Round', sans-serif;
}

/* Services Section with Ticket Style Cards */
.services {
    background: var(--bg-white);
    padding: 5rem 0;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid var(--sand-color);
    transform-style: preserve-3d;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: 3px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
}

.service-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.3);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--sand-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
    transform-origin: center center;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-family: 'Varela Round', sans-serif;
}

/* Solutions Section with Parallax */
.solutions {
    background: linear-gradient(135deg, var(--sand-color) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.solution-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.solution-item.reverse {
    direction: rtl;
}

.solution-item.reverse > * {
    direction: ltr;
}

.solution-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    will-change: transform;
    position: relative;
}

.solution-item:hover .solution-image {
    transform: perspective(1000px) rotateY(0deg) scale(1.05) translateY(0) !important;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.solution-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.solution-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-family: 'Varela Round', sans-serif;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-family: 'Varela Round', sans-serif;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Technology Section */
.technology {
    background: var(--bg-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: linear-gradient(135deg, white, var(--sand-color));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--sand-color);
    transition: var(--transition);
}

.tech-category:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.tech-category h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    font-family: 'Varela Round', sans-serif;
    transition: var(--transition);
}

.tech-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Process Section */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

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

.process-step::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -3rem;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    font-family: 'Comfortaa', sans-serif;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-family: 'Varela Round', sans-serif;
}

/* Portfolio Section */
.portfolio {
    background: var(--sand-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--sand-color);
}

.portfolio-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.3);
    border-color: var(--primary-color);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    will-change: transform;
    transform-origin: center center;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1) !important;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.portfolio-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-family: 'Varela Round', sans-serif;
}

.portfolio-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.testimonial-item {
    display: none;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid var(--sand-color);
}

.testimonial-item.active {
    display: block;
    animation: bounceIn 0.6s ease-out;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-family: 'Varela Round', sans-serif;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-family: 'Comfortaa', sans-serif;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
    font-family: 'Varela Round', sans-serif;
}

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

.testimonial-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
    font-weight: bold;
}

.testimonial-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--sand-color) 0%, var(--bg-white) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Varela Round', sans-serif;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--sand-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Comfortaa', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Varela Round', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0f172a 100%);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Comfortaa', sans-serif;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-family: 'Varela Round', sans-serif;
}

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

.footer-section a:hover {
    color: var(--primary-color);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-family: 'Varela Round', sans-serif;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: var(--transition);
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cookie-notice.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 {
    flex: 1;
    margin: 0;
    font-family: 'Varela Round', sans-serif;
}

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

.cookie-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Comfortaa', sans-serif;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

/* Policy Pages */
.policy-page {
    padding: 3rem 0;
    min-height: 70vh;
    background: var(--bg-white);
}

.policy-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.policy-updated {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    font-family: 'Varela Round', sans-serif;
}

.policy-page section {
    margin-bottom: 2.5rem;
    padding: 0;
}

.policy-page h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.policy-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.policy-page p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: 'Varela Round', sans-serif;
}

.policy-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-family: 'Varela Round', sans-serif;
}

.policy-page li {
    margin-bottom: 0.5rem;
}

/* Thanks Page */
.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--sand-color) 0%, var(--bg-white) 100%);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
    animation: bounceIn 0.8s ease-out;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Comfortaa', sans-serif;
}

.thanks-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: 'Varela Round', sans-serif;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: var(--transition);
        padding: 2rem;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .burger-menu {
        display: flex;
    }

    .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-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .destination-card {
        min-width: 300px;
    }

    .destination-card.active {
        min-width: 320px;
    }

    .solution-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-item.reverse {
        direction: ltr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }

    .process-step {
        flex-direction: column;
    }

    .process-step::before {
        display: none;
    }

    .policy-page h1 {
        font-size: 2rem;
    }

    .policy-page h2 {
        font-size: 1.5rem;
    }

    .floating-plane,
    .floating-cloud,
    .floating-compass {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .destination-card,
    .destination-card.active {
        min-width: 280px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

/* Parallax Effect */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}
