/* Landing Page Styles */
:root {
  --primary-green: #00b831;
  --secondary-green: #5bc43b;
  --light-green: #e9f4e6;
  --text-dark: #333333;
  --text-gray: #666666;
  --bg-light: #f5f5f5;
  --white: #ffffff;

  /* Fluid sizing variables - tự động scale theo viewport */
  --fluid-min-width: 320;
  --fluid-max-width: 1920;
  --fluid-screen: 100vw;
  --fluid-bp: calc(
    (var(--fluid-screen) - ((var(--fluid-min-width) / 16) * 1rem)) /
      ((var(--fluid-max-width) / 16) - (var(--fluid-min-width) / 16))
  );
}

@supports (height: 100dvh) {
  :root {
    --vh: 100dvh;
    --vw: 100dvw;
  }
}

@supports not (height: 100dvh) {
  :root {
    --vh: 100vh;
    --vw: 100vw;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Header Styles */
.landing-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: clamp(10px, 2vh, 15px) 0;
}

.landing-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: min(1200px, 95vw);
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-logo img {
  height: clamp(35px, 5vh, 50px);
  width: auto;
}

.landing-logo-text {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--primary-green);
}

.landing-nav {
  display: flex;
  gap: clamp(10px, 1.8vw, 25px);
  align-items: center;
  flex: 1;
  justify-content: center;
}

.landing-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: clamp(12px, 1.3vw, 15px);
  transition: color 0.3s;
  white-space: nowrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
}

.landing-nav a:hover {
  color: var(--primary-green);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: clamp(8px, 1vh, 10px) clamp(12px, 1.5vw, 20px);
  background-color: var(--primary-green);
  color: var(--white) !important;
  text-decoration: none !important;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.login-btn:hover {
  background-color: #006025;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 168, 45, 0.3);
  color: var(--white) !important;
  text-decoration: none !important;
}

.login-btn i {
  font-size: 14px;
}

/* Language Switcher */
.language-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: var(--white);
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.lang-btn:hover {
  border-color: var(--primary-green);
  background-color: var(--light-green);
}

.lang-btn .lang-code {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.lang-btn .lang-text {
  display: none;
}

.lang-btn .fa-chevron-down {
  font-size: 12px;
  color: var(--text-gray);
  transition: transform 0.3s;
}

.lang-dropdown.show .lang-btn .fa-chevron-down {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
  gap: 10px;
}

.lang-option:hover {
  background-color: var(--light-green);
}

.lang-option .flag-icon {
  font-size: 18px;
}

.lang-option .fa-check {
  color: var(--primary-green);
  font-size: 14px;
  opacity: 0;
}

.lang-option.active .fa-check {
  opacity: 1;
}

.lang-option:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

/* Hero Banner */
.hero-banner {
  background: url("../images/img-landing/_Banner.png") center top no-repeat;
  background-size: cover;
  min-height: var(--vh);
  height: auto;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: min(1200px, 90vw);
  margin: 0 auto;
  padding: clamp(30px, 8vh, 60px) clamp(15px, 3vw, 20px);
  width: 100%;
}

.hero-text {
  max-width: min(900px, 90vw);
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(15px, 3vh, 20px);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #222;
  text-transform: uppercase;
  text-align: center;
}

.highlight-green {
  color: var(--primary-green);
  font-weight: 800;
}

.hero-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: clamp(25px, 5vh, 40px);
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

/* Text Stroke Effect using text-shadow for better compatibility */
.hero-title-dark {
  color: #222;
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff,
    -2px 2px 0px #fff, 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-title-green {
  color: var(--primary-green);
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff,
    -2px 2px 0px #fff, 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px, 2.5vh, 18px) clamp(30px, 5vw, 50px);
  background-color: #104e33;
  /* Dark Green */
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  /* Pill shape */
  font-weight: 700;
  font-size: clamp(14px, 1.8vw, 16px);
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(16, 78, 51, 0.3);
}

.hero-cta:hover {
  background-color: #0d3d28;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(16, 78, 51, 0.4);
}

.hero-cta i {
  font-size: 14px;
}

/* Country Section */
.country-section {
  padding: clamp(40px, 10vh, 80px) clamp(15px, 3vw, 20px);
  background-color: var(--white);
}

.country-section .container {
  max-width: min(1200px, 95vw);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: clamp(40px, 8vh, 60px);
  color: var(--text-dark);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(clamp(90px, 12vw, 150px), 1fr)
  );
  gap: clamp(8px, 1.5vw, 15px);
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(10px, 2vh, 20px) clamp(5px, 1vw, 10px);
}

.country-card {
  background-color: transparent;
  border-radius: clamp(10px, 1.5vw, 12px);
  /* overflow: hidden; Removed to prevent clipping on zoom */
  box-shadow: none;
  transition: all 0.3s;
  cursor: pointer;
  text-align: center;
  padding: clamp(8px, 1.5vw, 12px);
  position: relative;
  aspect-ratio: 0.85;
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(5px, 1vh, 10px);
}

.country-card:hover {
  transform: translateY(-5px);
  z-index: 10;
}

.country-card:hover .country-image img {
  transform: scale(1.1);
}

.country-flag {
  position: absolute;
  top: clamp(8px, 1vh, 12px);
  right: clamp(8px, 1vw, 12px);
  width: clamp(36px, 5vw, 44px);
  height: clamp(24px, 3.3vw, 30px);
  border-radius: clamp(3px, 0.5vw, 5px);
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-image {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(5px, 1vh, 8px);
}

.country-image img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(6px, 1vw, 8px);
  transition: transform 0.5s ease;
}

.country-name {
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 600;
  color: var(--text-dark);
  padding: clamp(3px, 0.5vh, 5px);
  position: relative;
  z-index: 20;
}

/* Contact Section */
.contact-section {
  padding: clamp(40px, 10vh, 80px) clamp(15px, 3vw, 20px);
  background-color: var(--white);
}

.contact-section .container {
  max-width: min(1200px, 95vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(25px, 5vw, 50px);
}

.contact-form-wrapper {
  background-color: var(--bg-light);
  padding: clamp(30px, 5vw, 45px);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: clamp(15px, 3vh, 25px);
}

.form-row {
  display: flex;
  gap: clamp(15px, 3vw, 20px);
}

.form-row .form-group {
  flex: 1;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

.form-group label {
  display: block;
  margin-bottom: clamp(6px, 1vh, 8px);
  font-weight: 600;
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--text-dark);
}

.form-group select,
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="text"] {
  width: 100%;
  padding: clamp(12px, 1.5vh, 14px) clamp(15px, 2vw, 20px);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: clamp(13px, 1.5vw, 14px);
  background-color: var(--white);
  transition: border-color 0.3s;
}

.form-group select {
  cursor: pointer;
}

.form-group select:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="text"]:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="text"]::placeholder {
  color: #999;
  font-size: clamp(12px, 1.5vw, 13px);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  font-weight: 400;
  font-size: clamp(12px, 1.5vw, 14px);
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  padding: clamp(12px, 2vh, 15px);
  background-color: var(--secondary-green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 184, 49, 0.3);
}

/* Contact Sidebar */
/* Contact Sidebar */
.contact-sidebar {
  background-color: #104e33;
  color: var(--white);
  padding: clamp(25px, 5vw, 40px) clamp(20px, 4vw, 30px);
  border-radius: 20px;
  height: fit-content;
  box-shadow: 0 10px 30px rgba(16, 78, 51, 0.4);
}

.sidebar-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  margin-bottom: clamp(20px, 4vh, 30px);
  text-align: center;
  /* Keeping center as per typical layout, or left? Reference looks left-ish but title often looks good centered or left. Let's try Center to match overall theme unless specified left. Actually reference image title 'Gọi Chúng tôi' is Left aligned above the green box? No, inside. Let's do Center for balance with form unless user complains. Wait, reference image 2 has 'Gọi Chúng tôi' aligned left? No, it looks like it's inside the green box. Let's stick with previous center or try left if it looks better. I'll use center for now as it's safe. */
  color: var(--white);
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: all 0.3s;
  text-decoration: none !important;
  color: var(--white);
  cursor: pointer;
}

.contact-card-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: var(--white);
}

.card-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 24px;
  color: var(--white);
}

.card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-label {
  font-size: 11px;
  opacity: 0.8;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

.card-number {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
}

.card-number:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2vw, 15px);
  margin-top: clamp(20px, 4vh, 30px);
}

.social-icon {
  width: clamp(35px, 6vw, 40px);
  height: clamp(35px, 6vw, 40px);
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none !important;
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none !important;
}

.social-icon i {
  color: var(--secondary-green);
  font-size: clamp(16px, 2.5vw, 18px);
}

/* Footer */
.landing-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
  padding: clamp(40px, 8vh, 60px) clamp(15px, 3vw, 20px) 0;
  position: relative;
}

.landing-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--secondary-green)
  );
}

.footer-content {
  max-width: min(1200px, 95vw);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(30px, 5vw, 50px);
  margin-bottom: clamp(25px, 4vh, 40px);
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-title {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  color: var(--secondary-green);
  margin-bottom: clamp(15px, 3vh, 20px);
  text-transform: uppercase;
  letter-spacing: clamp(0.5px, 0.1vw, 1px);
}

.footer-company-name {
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--white);
  margin-bottom: clamp(8px, 1.5vh, 10px);
}

.footer-description {
  font-size: clamp(13px, 1.5vw, 14px);
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: clamp(10px, 2vh, 15px);
}

.footer-contact-item {
  display: flex;
  gap: clamp(10px, 2vw, 15px);
  margin-bottom: clamp(15px, 3vh, 20px);
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--secondary-green);
  font-size: clamp(16px, 2.5vw, 18px);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item p {
  margin: 0;
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.6;
  color: #cccccc;
}

.footer-contact-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 5px;
}

.footer-contact-item a {
  color: var(--secondary-green);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--primary-green);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vh, 15px);
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 12px);
  color: #cccccc;
  text-decoration: none !important;
  font-size: clamp(13px, 1.5vw, 14px);
  transition: all 0.3s;
  padding: clamp(6px, 1vh, 8px) 0;
}

.footer-social-link i {
  width: clamp(32px, 5vw, 35px);
  height: clamp(32px, 5vw, 35px);
  background-color: rgba(91, 196, 59, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-green);
  font-size: clamp(14px, 2vw, 16px);
  transition: all 0.3s;
  flex-shrink: 0;
}

.footer-social-link:hover {
  color: var(--white);
  transform: translateX(5px);
  text-decoration: none !important;
}

.footer-social-link:hover i {
  background-color: var(--secondary-green);
  color: var(--white);
}

.footer-website {
  margin-top: clamp(15px, 3vh, 20px);
}

.footer-website a {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 10px);
  color: var(--secondary-green);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(13px, 1.5vw, 14px);
  transition: color 0.3s;
}

.footer-website a:hover {
  color: var(--primary-green);
}

.footer-bottom {
  text-align: center;
  padding: clamp(15px, 3vh, 25px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: clamp(15px, 3vh, 20px);
}

.footer-bottom p {
  margin: 0;
  font-size: clamp(12px, 1.5vw, 14px);
  color: #999999;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .landing-nav {
     gap: 12px;
  }
  
  .landing-nav a {
     font-size: 13px;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 48px;
  }

  .country-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .landing-header .container {
    padding: 0 10px;
  }
  
  .landing-nav {
    gap: 8px;
  }
  
  .landing-nav a {
    font-size: 12px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-sidebar {
    order: -1;
    max-width: 100%;
  }

  .country-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  /* Header */
  .landing-header .container {
    padding: 0 15px;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .landing-logo img {
    height: 40px;
  }

  .header-actions {
    gap: 10px;
  }

  .login-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .login-btn span {
    display: none;
  }

  .landing-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    gap: 0;
  }

  .landing-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .landing-nav a {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    text-align: center;
  }

  .landing-nav a:last-child {
    border-bottom: none;
  }

  /* Hero */
  .hero-banner {
    min-height: 600px;
    background-position: center;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    padding: 12px 30px;
    font-size: 14px;
  }

  /* Country Section */
  .country-section {
    padding: 40px 15px;
  }

  .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .country-card {
    padding: 10px;
  }

  .country-image {
    height: 120px;
  }

  .country-name {
    font-size: 13px;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  /* Contact Section */
  .contact-section {
    padding: 40px 15px;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .contact-sidebar {
    padding: 25px 20px;
  }

  .sidebar-title {
    font-size: 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .landing-footer {
    padding: 40px 15px 0;
  }
}

@media (max-width: 576px) {
  /* Header */
  .landing-logo img {
    height: 35px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .login-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* Hero */
  .hero-banner {
    min-height: 500px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .hero-cta {
    padding: 10px 25px;
    font-size: 13px;
  }

  /* Country Grid */
  .country-section {
    padding: 30px 10px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .country-card {
    padding: 8px;
    border-radius: 12px;
  }

  .country-image {
    height: 100px;
    margin-bottom: 8px;
  }

  .country-flag {
    width: 24px;
    height: 24px;
    top: 5px;
    right: 5px;
  }

  .country-flag img {
    width: 100%;
    height: 100%;
  }

  .country-name {
    font-size: 12px;
    padding: 4px;
  }

  /* Contact Section */
  .contact-section {
    padding: 30px 10px;
  }

  .contact-form-wrapper,
  .contact-sidebar {
    padding: 20px 15px;
    border-radius: 15px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group select {
    font-size: 14px;
    padding: 10px;
  }

  .submit-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .contact-item {
    padding: 15px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon i {
    font-size: 18px;
  }

  .contact-label {
    font-size: 11px;
  }

  .contact-value {
    font-size: 14px;
  }

  /* Footer */
  .footer-title {
    font-size: 16px;
  }

  .footer-description,
  .footer-contact-item p {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .section-title {
    font-size: 20px;
  }

  .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .country-card {
    padding: 6px;
  }

  .country-image {
    height: 80px;
    margin-bottom: 5px;
  }

  .country-flag {
    width: 20px;
    height: 20px;
    top: 3px;
    right: 3px;
  }

  .country-name {
    font-size: 10px;
  }

  .login-btn i {
    font-size: 16px;
  }
}

/* ===== Destination Panel ===== */
.destination-panel {
  display: none;
  position: relative;
  margin-top: 40px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 80px 60px;
  min-height: 500px;
}

.destination-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
  position: relative;
  padding: 0 40px;
}

.source-country {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flight-path {
  position: absolute;
  top: -80px;
  left: -60px;
  width: 150px;
  height: 100px;
}

.flight-curve {
  width: 100%;
  height: 100%;
}

.flight-icon {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 24px;
  color: #333;
  transform: rotate(45deg);
}

.source-flag {
  width: 140px;
  height: 100px;
  background: white;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.source-flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.map-pin {
  position: absolute;
  bottom: -60px;
  left: -40px;
  font-size: 40px;
  color: #333;
}

.connections-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Let clicks pass through */
  z-index: 1;
}

#connectionsSvg {
  width: 100%;
  height: 100%;
}

.destinations-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.destination-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: white;
  border: 2px solid #f5c518;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none !important;
  color: #333;
  animation: fadeInRight 0.5s ease forwards;
  opacity: 0;
  min-width: 160px;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.destination-btn:hover {
  background: #f5c518;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(245, 197, 24, 0.4);
  text-decoration: none !important;
  color: #333;
}

.destination-btn img {
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 3px;
}

.destination-btn span {
  font-weight: 600;
  flex: 1;
  text-align: left;
}

.destination-btn i {
  color: #666;
  font-size: 12px;
}

.close-panel {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.close-panel:hover {
  background: #ff4444;
  color: white;
}

/* Responsive Destination Panel */
@media (max-width: 768px) {
  .destination-panel {
    padding: 20px 15px;
    min-height: auto;
    margin-top: 20px;
    border-radius: 15px;
  }

  .destination-content {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  /* Hide complex SVG arrows on mobile */
  .connections-layer {
    display: none;
  }

  /* Compact source flag */
  .source-flag {
    width: 80px;
    height: 60px;
    padding: 8px;
    border-radius: 12px;
  }

  /* Add simple down arrow for mobile */
  .source-column {
    position: relative;
    margin-bottom: 0;
  }

  .source-column::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #333;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(-50%) translateY(0);
    }

    40% {
      transform: translateX(-50%) translateY(-5px);
    }

    60% {
      transform: translateX(-50%) translateY(-3px);
    }
  }

  .flight-path {
    display: none;
  }

  .map-pin {
    display: none;
  }

  .destinations-list {
    width: 100%;
    align-items: center;
    gap: 8px;
  }

  .destination-btn {
    width: 100%;
    max-width: 200px;
    padding: 10px 15px;
    gap: 8px;
    min-width: auto;
    font-size: 13px;
  }

  .destination-btn img {
    width: 24px;
    height: 16px;
  }

  /* Footer Responsive */
  .landing-footer {
    padding: 40px 15px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Footer Disclaimer Styles */
.footer-disclaimer {
  margin-top: clamp(20px, 4vh, 30px);
  padding: clamp(15px, 2.5vh, 20px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-title {
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 700;
  color: var(--secondary-green);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-disclaimer p {
  font-size: clamp(11px, 1.4vw, 12px);
  line-height: 1.6;
  color: #999;
  margin-bottom: 12px;
  text-align: justify;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}
