  /* ==========================================
           EMAILJS SETUP INSTRUCTIONS
           ==========================================
           1. Go to https://www.emailjs.com/ and create a free account
           2. Create an Email Service (Gmail, Outlook, etc.)
           3. Create an Email Template with these template variables:
              - {{name}}
              - {{email}}
              - {{phone}}
              - {{inquiry}}
              - {{country}}
              - {{message}}
           4. Get your Public Key from Account > API Keys
           5. Replace the placeholders in the JavaScript section below:
              - YOUR_PUBLIC_KEY
              - YOUR_SERVICE_ID
              - YOUR_TEMPLATE_ID
        ========================================== */
        
        /* ==========================================
           CSS RESET & BASE STYLES
        ========================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --black: #000000;
            --white: #FFFFFF;
            --red: #E02424;
            --red-light: #F87171;
            --gray: #4B5563;
            --gray-dark: #1F2937;
            --gray-darker: #111827;
            --gray-light: #F9FAFB;
            --gray-medium: #6B7280;
            --transition: all 0.3s ease;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--gray-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        .about__director-image {
  width: 100%;
  max-width: 400px; /* adjust as needed */
  margin: 0 auto;
  text-align: center;
}

.about__director-image img {
  width: 100%;
  height: auto;
  border-radius: 20px; /* soft rounded corners */
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__director-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}


         .section-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease;
        }
        
        /* ==========================================
           PRELOADER
        ========================================== */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--black);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .preloader__plane {
            font-size: 3rem;
            color: var(--red);
            animation: fly 2s ease-in-out infinite;
        }
        
        @keyframes fly {
            0%, 100% { transform: translateX(-50px) translateY(0); }
            50% { transform: translateX(50px) translateY(-20px); }
        }
        
        /* ==========================================
           TOP BAR
        ========================================== */
        .top-bar {
            background: var(--gray-darker);
            color: var(--white);
            text-align: center;
            padding: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        /* ==========================================
           HEADER
        ========================================== */
        .header {
            position: fixed;
            top: 2rem;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            background: transparent;
        }
        
        .header.scrolled {
            top: 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .header__container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .header__logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .header__logo i {
            color: var(--red);
        }
        
        .header__burger {
            background: var(--red);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }
        
        .header__burger:hover {
            transform: scale(1.1);
            background: var(--red-light);
        }
        
        .header__burger span {
            width: 20px;
            height: 2px;
            background: var(--white);
            transition: var(--transition);
        }
        
        .header__burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .header__burger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .header__burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        /* ==========================================
           SIDE MENU
        ========================================== */
        .side-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: var(--black);
            z-index: 9999;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
            padding: 2rem;
        }
        
        .side-menu.active {
            right: 0;
        }
        
        .side-menu__close {
            align-self: flex-end;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            margin-bottom: 2rem;
            transition: var(--transition);
        }

        .side-menu__close:hover {
            color: var(--red);
            transform: rotate(90deg);
        }
        
        .side-menu__nav {
            list-style: none;
        }
        
        .side-menu__item {
            margin-bottom: 1.5rem;
        }
        
        .side-menu__link {
            color: var(--white);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            transition: var(--transition);
            display: inline-block;
        }
        
        .side-menu__link:hover {
            color: var(--red);
            transform: translateX(10px);
        }
        
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* ==========================================
           HERO SECTION
        ========================================== */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero__carousel {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .hero__slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .hero__slide.active {
            opacity: 1;
        }
        
        .hero__slide img,
        .hero__slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--white);
            text-align: center;
            padding: 2rem;
        }
        
        .hero__quote {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
            letter-spacing: 1px;
        }
        
        .hero__title {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
            line-height: 1.2;
        }
        
        .hero__subtitle {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1.2s ease;
            max-width: 700px;
            font-weight: 400;
        }

        .hero__description {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1.3s ease;
            max-width: 800px;
            font-weight: 300;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
        }
        
        .hero__cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeInUp 1.4s ease;
        }
        
        .btn {
            padding: 1.1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
        }
        
        .btn--primary {
            background: var(--red);
            color: var(--white);
        }
        
        .btn--primary:hover {
            background: var(--red-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(224, 36, 36, 0.4);
        }
        
        .btn--secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        
        .btn--secondary:hover {
            background: var(--white);
            color: var(--black);
            transform: translateY(-3px);
        }
        
        .hero__process-card {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(100%);
            background: rgba(255, 255, 255, 0.98);
            padding: 2rem;
            border-radius: 15px;
            opacity: 0;
            transition: var(--transition);
            max-width: 700px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        
        .hero__slide:hover .hero__process-card {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
        
        .hero__process-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray-dark);
            font-size: 1rem;
            font-weight: 600;
        }

        .hero__process-steps span {
            color: var(--gray-dark);
        }
        
        .hero__plane {
            position: absolute;
            top: 20%;
            left: -50px;
            font-size: 2.5rem;
            color: var(--red);
            animation: planeMove 15s linear infinite;
            filter: drop-shadow(0 0 10px rgba(224, 36, 36, 0.5));
        }
        
        @keyframes planeMove {
            0% { left: -50px; top: 20%; }
            50% { left: 50%; top: 30%; }
            100% { left: 110%; top: 25%; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* ==========================================
           SECTION COMMON STYLES
        ========================================== */
        .section {
            padding: 6rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section__title {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--black);
        }
        
        .section__subtitle {
            text-align: center;
            color: var(--gray-medium);
            margin-bottom: 4rem;
            font-size: 1.2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* ==========================================
           FROM DREAMS TO DESTINATIONS (FORM SECTION)
        ========================================== */
        .form-section {
            background: var(--gray-light);
        }
        
        .form-container {
            max-width: 850px;
            margin: 0 auto;
            background: var(--white);
            padding: 3.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .form-intro {
            text-align: center;
            margin-bottom: 2.5rem;
            color: var(--gray-dark);
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        .form__group {
            margin-bottom: 1.8rem;
        }
        
        .form__label {
            display: block;
            margin-bottom: 0.6rem;
            font-weight: 600;
            color: var(--black);
            font-size: 0.95rem;
        }
        
        .form__input,
        .form__select {
            width: 100%;
            padding: 1.1rem;
            border: 2px solid #E5E7EB;
            border-radius: 10px;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
            color: var(--gray-dark);
            background: var(--white);
        }
        
        .form__input:focus,
        .form__select:focus {
            outline: none;
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(224, 36, 36, 0.1);
        }
        
     .form__flags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.flag-btn {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 3px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 0.8rem;
  position: relative;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(0,0,0,0.7);
}

.flag-btn:hover {
  transform: translateY(-5px);
  border-color: #e02424;
  box-shadow: 0 8px 20px rgba(224, 36, 36, 0.3);
}

.flag-btn.active {
  border-color: #e02424;
  transform: scale(1.1);
}

/* Add flag backgrounds */
.flag-btn.eu {
  background-image: url('https://flagcdn.com/w320/eu.png');
}

.flag-btn.usa {
  background-image: url('https://flagcdn.com/w320/us.png');
}

.flag-btn.uk {
  background-image: url('https://flagcdn.com/w320/gb.png');
}

.flag-btn.turkey {
  background-image: url('https://flagcdn.com/w320/tr.png');
}

.flag-btn.japan {
  background-image: url('https://flagcdn.com/w320/jp.png');
}

.flag-btn.canada {
  background-image: url('https://flagcdn.com/w320/ca.png');
}

.flag-btn.australia {
  background-image: url('https://flagcdn.com/w320/au.png');
}

/* Small label style */
.flag-btn span {
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 5px;
}

        
        .honeypot {
            position: absolute;
            left: -9999px;
        }
        
        .form__message {
            padding: 1.2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 500;
        }
        
        .form__message--success {
            background: #D1FAE5;
            color: #065F46;
            border: 2px solid #10B981;
        }
        
        .form__message--error {
            background: #FEE2E2;
            color: #991B1B;
            border: 2px solid #EF4444;
        }
        
     /* ===== NEW DESTINATIONS SHOWCASE ===== */
     .destinations-bg {
  background: var(--bg-light);
  padding: 80px 10px; /* Add breathing space around section */
}

/* GRID FIX: better spacing and responsive layout */
.destinations-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* CARD FIX: consistent height and spacing */
.destination-showcase-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
  max-width: 500px;
  width: 100%;
  height: 550px;
  background: #000; /* fallback for empty image */
}

.destination-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.destination-showcase-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.destination-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-showcase-card:hover .destination-showcase-image img {
  transform: scale(1.1);
}

.destination-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 40px;
  transition: background 0.3s ease;
}

.destination-showcase-card:hover .destination-showcase-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.destination-showcase-content {
  color: var(--white);
  width: 100%;
}

.destination-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.destination-showcase-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.destination-showcase-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  opacity: 0.95;
}

.destination-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.highlight-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
}

.destination-explore-btn {
  background: var(--white);
  color: black;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.destination-explore-btn:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .destinations-bg {
    padding: 60px 20px;
  }

  .destination-showcase-card {
    height: 420px;
  }

  .destination-showcase-title {
    font-size: 26px;
  }

  .destination-showcase-desc {
    font-size: 14px;
  }
}

        /* ==========================================
           TESTIMONIALS
        ========================================== */
        .testimonials {
            background: var(--gray-darker);
            color: var(--white);
        }
        
        .testimonials__container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .testimonials__wrapper {
            overflow: hidden;
            padding: 1rem 0;
        }
        
        .testimonials__slider {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            transition: transform 0.5s ease;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.08);
            padding: 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        
        .testimonial-card__content {
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 2rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.95);
            flex-grow: 1;
        }
        
        .testimonial-card__author {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        
        .testimonial-card__avatar {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--white);
            flex-shrink: 0;
        }
        
        .testimonial-card__name {
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 1.1rem;
            color: var(--white);
        }
        
        .testimonial-card__role {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .testimonials__controls {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }
        
        .testimonials__arrow {
            background: var(--red);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.3rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .testimonials__arrow:hover {
            background: var(--red-light);
            transform: scale(1.15);
        }
        
        /* ==========================================
           ABOUT US
        ========================================== */
        .about {
            background: var(--white);
        }
        
        .about__container {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        
        .about__content h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            color: var(--black);
            font-weight: 700;
        }
        
        .about__content p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .about__highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .about__highlight {
            background: var(--gray-light);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--red);
        }

        .about__highlight h4 {
            color: var(--black);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .about__highlight p {
            color: var(--gray);
            font-size: 0.95rem;
            margin: 0;
        }
        
        .about__director {
            text-align: center;
        }
        
        .about__director-image {
            width: 320px;
            height: 320px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--gray-light) 0%, #E5E7EB 100%);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            color: var(--red);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            border: 3px solid var(--white);
        }
        
        .about__director-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.5rem;
        }
        
        .about__director-title {
            color: var(--gray);
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* ==========================================
           CONTACT & FOOTER
        ========================================== */
        .contact {
            background: var(--gray-light);
        }
        
        .contact__container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .contact__info h3 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--black);
            font-weight: 700;
        }

        .contact__intro {
            color: var(--gray);
            margin-bottom: 2.5rem;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        .contact__item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            margin-bottom: 2rem;
            padding: 1.2rem;
            background: var(--white);
            border-radius: 12px;
            transition: var(--transition);
        }

        .contact__item:hover {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transform: translateX(5px);
        }
        
        .contact__icon {
            color: var(--red);
            font-size: 1.6rem;
            min-width: 35px;
        }
        
        .contact__details h4 {
            font-weight: 600;
            color: var(--black);
            margin-bottom: 0.4rem;
            font-size: 1.1rem;
        }
        
        .contact__details p,
        .contact__details a {
            color: var(--gray);
            text-decoration: none;
            font-size: 1rem;
        }
        
        .contact__details a:hover {
            color: var(--red);
        }
        
        .contact__socials {
            display: flex;
            gap: 1rem;
            margin-top: 2.5rem;
        }
        
        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--red);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.3rem;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background: var(--red-light);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(224, 36, 36, 0.4);
        }
        
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 2.5rem 5%;
            text-align: center;
        }
        
        .footer__content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .footer__copyright {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer__nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        
        .footer__link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }
        
        .footer__link:hover {
            color: var(--red);
        }
        
        /* ==========================================
           RESPONSIVE DESIGN
        ========================================== */
        @media (max-width: 968px) {
            .testimonials__slider {
                grid-template-columns: 1fr;
            }
            
            .about__container,
            .contact__container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about__highlights {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {

              .destinations-showcase-grid {
                grid-template-columns: 1fr;
            }

            .destination-showcase-card {
                height: 500px;
            }

            .destination-showcase-title {
                font-size: 32px;
            }
            .hero__title {
                font-size: 2.5rem;
            }
            
            .hero__subtitle {
                font-size: 1.1rem;
            }
            
            .hero__quote {
                font-size: 1.3rem;
            }

            .hero__description {
                font-size: 1rem;
            }
            
            .section {
                padding: 4rem 5%;
            }
            
            .section__title {
                font-size: 2.2rem;
            }

            .section__subtitle {
                font-size: 1rem;
            }
            
            .form-container {
                padding: 2rem 1.5rem;
            }
            
            .about__director-image {
                width: 220px;
                height: 220px;
                font-size: 4.5rem;
            }

            .about__content h2 {
                font-size: 2.2rem;
            }

            .contact__info h3 {
                font-size: 2rem;
            }
            
            .footer__content {
                flex-direction: column;
                text-align: center;
            }

            .hero__process-steps {
                font-size: 0.85rem;
                flex-wrap: wrap;
                gap: 0.5rem;
            }
        }
        
        /* ==========================================
           THEME TOGGLE (OPTIONAL)
        ========================================== */
        .theme-toggle {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--red);
            border: none;
            color: var(--white);
            font-size: 1.3rem;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            z-index: 999;
            transition: var(--transition);
        }
        
        .theme-toggle:hover {
            transform: scale(1.15);
            background: var(--red-light);
        }
        
        /* Dark theme */
        body.dark-theme {
            background: var(--gray-darker);
            color: var(--white);
        }
        
        body.dark-theme .form-section,
        body.dark-theme .contact {
            background: var(--black);
        }
        
        body.dark-theme .form-container {
            background: var(--gray-dark);
        }
        
        body.dark-theme .country-card {
            background: var(--gray-dark);
        }
        
        body.dark-theme .section__title,
        body.dark-theme .about__content h2,
        body.dark-theme .contact__info h3 {
            color: var(--white);
        }

        body.dark-theme .about__highlight {
            background: var(--gray-dark);
        }

        body.dark-theme .contact__item {
            background: var(--gray-dark);
        }

        body.dark-theme .form__input,
        body.dark-theme .form__select {
            background: var(--gray-darker);
            color: var(--white);
            border-color: var(--gray);
        }

        body.dark-theme .section__subtitle,
        body.dark-theme .contact__intro,
        body.dark-theme .form-intro {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Form Message Styles */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    display: none;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background-color: #10b981;
    color: white;
    border-left: 4px solid #059669;
}

.form-message.error {
    background-color: #ef4444;
    color: white;
    border-left: 4px solid #dc2626;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flag button active state */
.flag-btn.active {
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(224, 36, 36, 0.3);
    border: 2px solid #E02424;
}