 /* Consistent color scheme with other pages */
:root {
  --primary: #1e3a8a;
  --primary-light: #3b82f6;
  --primary-dark: #1e40af;
  --text: #1f2937;
  --light-bg: #eff6ff;
  --white: #ffffff;

  /* Festive accent colors (temporary) */
  --festive-red: #d32f2f;
  --festive-gold: #ffb300;
  
  /* Font variables */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

/* Thin festive announcement bar */
.festive-bar {
  background: linear-gradient(90deg, var(--festive-red), var(--festive-gold));
  color: #fff;
  text-align: center;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.festive-bar strong {
  font-weight: var(--font-weight-semibold);
}

/* Subtle festive accent for section titles and primary buttons */
.section-title span,
.btn-primary,
.service-btn {
  position: relative;
}

.section-title span::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.35rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--festive-red), var(--festive-gold));
}

.btn-primary,
.service-btn {
  background-color: var(--festive-red);
  border-color: var(--festive-red);
}

.btn-primary:hover,
.service-btn:hover {
  background-color: #b71c1c;
  border-color: #b71c1c;
  box-shadow: 0 0 12px rgba(255, 179, 0, 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base Styles */
body {
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  font-weight: var(--font-weight-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

/* Header Styles */
.header {
  background-color: var(--primary);
  color: white;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Add shadow on scroll (JavaScript adds .scrolled class) */
.header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem; /* ✅ THIS */
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 0.5rem;
  margin: -0.5rem;
}

.logo-container a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.logo-container a:active {
  transform: scale(0.98);
}

  .logo-container a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
  }

  /* Mobile-specific styles for clickable logo */
  @media (max-width: 768px) {
    .logo-container a {
      display: flex !important;
      align-items: center !important;
      gap: 0.5rem !important;
      text-decoration: none !important;
      color: inherit !important;
      transition: all 0.3s ease !important;
      border-radius: 8px !important;
      padding: 0.3rem !important;
      margin: -0.3rem !important;
      z-index: 1002 !important;
      position: relative !important;
    }

    .logo-container a:hover {
      background-color: rgba(255, 255, 255, 0.1) !important;
      transform: translateY(-1px) !important;
    }

    .logo-container a:active {
      transform: scale(0.98) !important;
      background-color: rgba(255, 255, 255, 0.2) !important;
    }

    .logo-container a:focus {
      outline: 2px solid rgba(255, 255, 255, 0.5) !important;
      outline-offset: 2px !important;
    }
  }

.logo {
  height: 5rem;
  width: auto;
  border-radius: 8px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 0;
  color: white;
  font-family: var(--font-family);
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

.nav-link.active {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
}

.nav-link.active-link {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
}

/* Hamburger button styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1101;
  position: relative;
}

.hamburger {
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  z-index: 1102;
  transition: all 0.3s;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hamburger animation to X */
.nav-toggle.active .hamburger span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.nav-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .hamburger span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(30,58,138,0.18);
    border-radius: 0 0 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 4.5rem;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px) scale(0.98);
    transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 1100;
  }
  .main-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }
  .main-nav .menu-brand {
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
  }
  .main-nav .menu-brand img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
  }
  .main-nav .menu-brand .brand-name {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
  }
  .main-nav .close-btn {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2.2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1103;
    transition: color 0.2s;
  }
  .main-nav .close-btn:hover {
    color: #38bdf8;
  }
  .main-nav .nav-link {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0.2em 0;
    padding: 0.7em 2.5em;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-align: center;
    width: 100%;
    max-width: 320px;
    letter-spacing: 0.5px;
  }
  .main-nav .nav-link:hover,
  .main-nav .nav-link:focus {
    background: rgba(255,255,255,0.08);
    color: #38bdf8;
    transform: scale(1.04);
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('../assets/hero.jpg') center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-out;
  font-family: var(--font-family);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  max-width: 800px;
  animation: fadeIn 1s ease-out 0.3s both;
  font-weight: var(--font-weight-normal);
  font-family: var(--font-family);
  line-height: 1.5;
}

/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive fallback for mobile */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: var(--white);
}

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

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-content {
  text-align: center;
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: white;
  font-family: var(--font-family);
}

.service-description {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-weight-normal);
  font-family: var(--font-family);
}

.service-btn {
  background: var(--primary-light);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-btn:hover {
  background: var(--festive-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 179, 0, 0.4);
  border: 1px solid rgba(255, 179, 0, 0.5);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(211, 47, 47, 0.2);
  border-color: rgba(255, 179, 0, 0.4);
}

.service-card:hover::before {
  background: rgba(0, 0, 0, 0.3);
  animation: festiveShimmer 2s ease-in-out infinite;
}

@keyframes festiveShimmer {
  0%, 100% { 
    box-shadow: inset 0 0 0 rgba(255, 179, 0, 0);
  }
  50% { 
    box-shadow: inset 0 0 50px rgba(255, 179, 0, 0.1);
  }
}

/* Service card background images */
.air-freight {
  background-image: url('../assets/airfreight.jpg');
  background-size: cover;
  background-position: center;
}

.ocean-freight {
  background-image: url('../assets/oceanfreight.jpg');
  background-size: cover;
  background-position: center;
}

.customs-clearance {
  background-image: url('../assets/customsclearance.jpg');
  background-size: cover;
  background-position: center;
}

/* Additional sections */
.tracking, .booking, .contact {
  padding: 4rem 0;
}

.tracking {
  background: #f8fafc;
}

.booking {
  background: var(--white);
}

.contact {
  background: var(--primary);
  color: white;
}

.tracking-form,
.booking-form,
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

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

.btn-primary {
  background: var(--primary-light);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 2rem 0;
  margin-top: 2rem;
  position: relative;
}

.footer .festive-greeting {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
  font-style: italic;
}

.footer .festive-greeting::before {
  content: '🎄 ';
}

.footer .festive-greeting::after {
  content: ' 🎄';
}

/* Responsive design */
@media (min-width: 768px) {
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-link {
    margin-left: 2rem;
  }

  .hero-title {
    font-size: 4rem;
  }

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

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}

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

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
  font-family: var(--font-family);
  line-height: 1.3;
}

/* Info Section */
.info-section {
  background: var(--primary);
  padding: 4rem 0;
  color: white;
}

.info-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.info-block {
  flex: 1 1 250px;
  min-width: 220px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-block h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family);
}

.info-block ul {
  list-style: none;
}

.info-block ul li {
  margin-bottom: 0.5rem;
}

.info-block ul li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
}

.info-block ul li a:hover {
  color: white;
  text-decoration: underline;
}

.info-logo {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.info-company {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.info-tagline {
  color: #666;
  font-style: italic;
}

.info-social a {
  color: var(--primary);
  text-decoration: none;
  margin-right: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.info-social a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact-details .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
  color: #fff;
}

.contact-details .contact-item i {
  margin-right: 0.7rem;
  color: #fff;
  font-size: 1.1em;
}

.contact-label {
  font-weight: 600;
  margin-right: 0.4em;
}

.info-social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }

  input, textarea {
    font-size: 16px;
  }

  html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  /* Improved mobile container spacing */
  .container {
    padding: 0 1rem;
  }

  /* Better mobile section spacing */
  section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .header {
    padding: 0.5rem 0;
  }

  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    height: 3rem;
    width: auto;
  }

  .logo:active {
    transform: scale(0.95);
  }

  .company-name {
    font-size: 1.2rem;
    text-align: center;
  }

  .nav-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 0.5rem;
  }

  .nav-toggle:active {
    transform: scale(0.95);
  }

  .hamburger {
    position: relative;
  }

  .nav-toggle.active .hamburger {
    background: transparent;
  }

  .nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
  }

  .nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    z-index: 1000;
  }

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

  .nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .nav-link:active {
    transform: scale(0.95);
    background: rgba(30, 58, 138, 0.1);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1e3a8a;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .nav-link:active::after {
    width: 80%;
  }

  .hero {
    height: 100vh;
    padding-top: 80px;
  }

  .hero-overlay {
    padding: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    border-radius: 8px;
    min-width: 120px;
    text-align: center;
  }

  .btn-primary:active {
    transform: scale(0.95);
  }

  /* Footer Mobile Optimization */
  .footer {
    margin-top: 2rem;
    padding: 1.5rem 0;
    text-align: center;
  }

  .footer p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }

  /* Touch-friendly improvements */
  * {
    -webkit-tap-highlight-color: transparent;
  }

  /* Focus improvements for accessibility */
  .service-btn:focus,
  .btn-primary:focus,
  .nav-link:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
  }

  /* Loading state improvements */
  .service-card.loading {
    opacity: 0.7;
    pointer-events: none;
  }

  /* Animation improvements */
  .service-card {
    animation: fadeInUp 0.6s ease-out;
  }

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

  /* Disable hover effects on mobile */
  .service-card:hover {
    transform: none;
  }

  .service-btn:hover {
    transform: none;
  }

  /* Better spacing for service descriptions */
  .service-description {
    margin-bottom: 1rem;
  }

  /* Service card spacing improvements */
  .service-card + .service-card {
    margin-top: 1rem;
  }

  /* Navigation mobile improvements */
  .main-nav {
    padding-top: 5rem;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
  }

  /* Hero overlay mobile improvements */
  .hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  }

  /* Hero button mobile improvements */
  .hero .btn-primary {
    margin: 0.5rem;
    display: inline-block;
  }

  /* Info section mobile improvements */
  .info-block {
    margin-bottom: 1rem;
  }

  .info-block:last-child {
    margin-bottom: 0;
  }

  /* Contact form mobile improvements */
  .contact-form {
    padding: 1.5rem;
  }

  .contact-form .form-input {
    padding: 1rem;
    font-size: 1rem;
  }

  .contact-form .btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
  }

  /* Footer mobile improvements */
  .footer {
    background: var(--primary);
    color: white;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .service-card {
    padding: 1.2rem;
    min-height: 260px;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-description {
    font-size: 0.9rem;
    padding: 0 0.3rem;
  }

  .service-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    min-width: 110px;
  }

  .section-title {
    font-size: 1.6rem;
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

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

  .container {
    padding: 0 0.75rem;
  }

  .services-grid {
    padding: 0 0.25rem;
  }
}

/* Very Small Mobile Devices */
@media (max-width: 360px) {
  .service-card {
    padding: 1rem;
    min-height: 240px;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.85rem;
  }

  .service-btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.85rem;
    min-width: 100px;
  }

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

  .hero-title {
    font-size: 1.7rem;
  }

  .container {
    padding: 0 0.5rem;
  }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 40vh;
  }

  .service-card {
    min-height: 220px;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .service-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* High DPI Mobile Devices */
@media (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
  .service-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .service-btn {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  }
}

/* Dark Mode Support for Mobile */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
  .service-card {
    background: #1f2937;
    border: 1px solid #374151;
  }

  .service-card::before {
    background: rgba(0, 0, 0, 0.7);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .service-card,
  .service-btn,
  .btn-primary {
    transition: none;
  }

  .service-card:active,
  .service-btn:active,
  .btn-primary:active {
    transform: none;
  }
}

/* Mobile Styles for New Service Pages */
@media (max-width: 768px) {
  /* Service Page Specific Mobile Styles */
  .service-page-hero {
    min-height: 40vh;
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
  }

  .service-page-hero .hero-overlay {
    padding: 2rem 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  }

  .service-page-hero .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .service-page-hero .hero-subtitle {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  /* Service Content Sections */
  .service-content-section {
    padding: 2rem 0;
  }

  .service-content-section .container {
    padding: 0 1rem;
  }

  .service-content-section h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .service-content-section h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }

  .service-content-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .service-content-section ul {
    margin-left: 1rem;
    margin-bottom: 1rem;
  }

  .service-content-section li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  /* Service Features Grid */
  .service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .service-feature {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .service-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
  }

  .service-feature p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Service Benefits List */
  .service-benefits {
    margin: 2rem 0;
  }

  .service-benefits h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
  }

  .service-benefits ul {
    list-style: none;
    padding: 0;
  }

  .service-benefits li {
    background: var(--light-bg);
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Service Process Steps */
  .service-process {
    margin: 2rem 0;
  }

  .service-process h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary);
  }

  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary);
    position: relative;
  }

  .process-step::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
  }

  .process-steps {
    counter-reset: step-counter;
  }

  .process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
  }

  .process-step p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Service Coverage Areas */
  .coverage-areas {
    margin: 2rem 0;
  }

  .coverage-areas h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
  }

  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .coverage-item {
    background: var(--light-bg);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
  }

  /* Service Contact Section */
  .service-contact {
    background: var(--primary);
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
  }

  .service-contact .container {
    text-align: center;
  }

  .service-contact h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .service-contact p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
  }

  .service-contact .btn-primary {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .service-contact .btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
  }

  .service-contact .btn-primary:active {
    transform: scale(0.95);
  }

  /* Service Page Footer */
  .service-page-footer {
    background: var(--primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
  }

  .service-page-footer .container {
    padding: 0 1rem;
  }

  .service-page-footer p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    opacity: 0.9;
  }

  /* Responsive Images */
  .service-page-hero img,
  .service-content-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
  }

  /* Service Page Navigation */
  .service-page-nav {
    background: var(--primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .service-page-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .service-page-nav .logo {
    height: 2.5rem;
  }

  .service-page-nav .company-name {
    font-size: 1.2rem;
  }

  .service-page-nav .back-btn {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .service-page-nav .back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .service-page-nav .back-btn:active {
    transform: scale(0.95);
  }
}

/* Extra Small Mobile Devices for Service Pages */
@media (max-width: 480px) {
  .service-page-hero .hero-title {
    font-size: 1.8rem;
  }

  .service-page-hero .hero-subtitle {
    font-size: 0.95rem;
  }

  .service-content-section h2 {
    font-size: 1.6rem;
  }

  .service-content-section h3 {
    font-size: 1.3rem;
  }

  .service-feature {
    padding: 1.2rem;
  }

  .service-feature h4 {
    font-size: 1.1rem;
  }

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

  .coverage-item {
    padding: 1rem;
    font-size: 1rem;
  }

  .process-step {
    padding: 1.2rem;
  }

  .process-step h4 {
    font-size: 1rem;
  }

  .service-contact h3 {
    font-size: 1.4rem;
  }

  .service-contact .btn-primary {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Very Small Mobile Devices for Service Pages */
@media (max-width: 360px) {
  .service-page-hero .hero-title {
    font-size: 1.6rem;
  }

  .service-content-section h2 {
    font-size: 1.4rem;
  }

  .service-content-section h3 {
    font-size: 1.2rem;
  }

  .service-feature {
    padding: 1rem;
  }

  .service-feature h4 {
    font-size: 1rem;
  }

  .process-step {
    padding: 1rem;
  }

  .process-step h4 {
    font-size: 0.95rem;
  }

  .service-contact h3 {
    font-size: 1.3rem;
  }

  .service-contact .btn-primary {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }
}

/* Landscape Mobile Optimization for Service Pages */
@media (max-width: 768px) and (orientation: landscape) {
  .service-page-hero {
    min-height: 35vh;
  }

  .service-page-hero .hero-title {
    font-size: 1.8rem;
  }

  .service-page-hero .hero-subtitle {
    font-size: 0.9rem;
  }

  .service-content-section {
    padding: 1.5rem 0;
  }

  .service-content-section h2 {
    font-size: 1.6rem;
  }

  .service-content-section h3 {
    font-size: 1.3rem;
  }
}

/* Simple fix for service card background images on mobile */
@media (max-width: 768px) {
  .service-card[style*="background-image"],
  .service-card.air-freight,
  .service-card.ocean-freight,
  .service-card.customs-clearance {
    background-attachment: scroll !important;
    background-position: center !important;
    background-size: cover !important;
  }
}

/* Clickable Phone Number Styles */
a[href^="tel:"] {
  color: var(--primary) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  font-weight: var(--font-weight-semibold);
}

a[href^="tel:"]:hover {
  color: var(--primary-dark) !important;
  text-decoration: underline;
  transform: translateY(-1px);
  background-color: rgba(30, 58, 138, 0.1);
  border-radius: 4px;
  padding: 0.1rem 0.3rem;
}

a[href^="tel:"]:active {
  transform: scale(0.98);
}

/* Phone number focus styles for accessibility */
a[href^="tel:"]:focus {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mobile-specific phone link styles */
@media (max-width: 768px) {
  a[href^="tel:"] {
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
  }
  
  a[href^="tel:"]:active {
    background-color: rgba(59, 130, 246, 0.1);
  }
}

/* Phone numbers in footer - ensure visibility on dark background */
.footer a[href^="tel:"] {
  color: #ffffff !important;
  font-weight: var(--font-weight-bold);
}

.footer a[href^="tel:"]:hover {
  color: #e0e7ff !important;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Clickable Email Styles */
a[href^="mailto:"] {
  color: var(--primary) !important;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  font-weight: var(--font-weight-semibold);
}

a[href^="mailto:"]:hover {
  color: var(--primary-dark) !important;
  text-decoration: underline;
  transform: translateY(-1px);
  background-color: rgba(30, 58, 138, 0.1);
  border-radius: 4px;
  padding: 0.1rem 0.3rem;
}

a[href^="mailto:"]:active {
  transform: scale(0.98);
}

/* Email focus styles for accessibility */
a[href^="mailto:"]:focus {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Email links in footer - ensure visibility on dark background */
.footer a[href^="mailto:"] {
  color: #ffffff !important;
  font-weight: var(--font-weight-bold);
}

.footer a[href^="mailto:"]:hover {
  color: #e0e7ff !important;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile-specific email link styles */
@media (max-width: 768px) {
  a[href^="mailto:"] {
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
  }
  
  a[href^="mailto:"]:active {
    background-color: rgba(59, 130, 246, 0.1);
  }
}

.service-hero-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.service-card .service-title {
  margin-bottom: 0.5rem;
}

.info-social-link {
  color: #fff !important;
  background: none !important;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  padding: 0.5rem 0.8rem;
  transition: background 0.3s, color 0.3s;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.info-social-link:hover {
  background: rgba(255,255,255,0.15) !important;
  color: #e0e7ff !important;
  text-decoration: underline;
}

.contact-tel-link {
  background: none !important;
  color: #fff !important;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.5rem;
  padding: 0;
  border-radius: 0;
  font-size: 1.05em;
  display: inline-block;
}
.contact-tel-link:hover, .contact-tel-link:focus {
  color: #e0e7ff !important;
  text-decoration: underline;
}
.info-block a[href^="mailto:"] {
  background: none !important;
  color: #fff !important;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.5rem;
  padding: 0;
  border-radius: 0;
  font-size: 1.05em;
  display: inline-block;
}
.info-block a[href^="mailto:"]:hover, .info-block a[href^="mailto:"]:focus {
  color: #e0e7ff !important;
  text-decoration: underline;
}

.info-block a[href^="tel:"] {
  color: #fff !important;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 0.5rem;
  font-size: 1.05em;
}
.info-block a[href^="tel:"]:hover,
.info-block a[href^="tel:"]:focus {
  color: #e0e7ff !important;
  text-decoration: underline;
}

.download-link {
  color: #fff;
  background: #1e40af;
  padding: 0.5em 1em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: background 0.2s;
}
.download-link:hover {
  background: #3b82f6;
}
.download-link i {
  color: #f87171;
  font-size: 1.2em;
}

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

@media (max-width: 768px) {
  /* 1. Stack info section vertically */
  .info-container {
    flex-direction: column;
    gap: 1.2rem;
  }
  .info-block {
    width: 100%;
    min-width: 0;
    margin-bottom: 1.2rem;
  }

  /* 2. Tab navigation: wrap and add spacing */
  .tab-navigation {
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
  }
  .tab-btn {
    min-width: 120px;
    font-size: 1rem;
    padding: 1rem 1.2rem;
    margin: 0.2rem 0;
    border-radius: 8px;
    flex: 1 1 120px;
  }

  /* 3. Form field spacing */
  .contact-form .form-input,
  .contact-form textarea {
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }
  .contact-form .btn-primary {
    min-height: 44px;
    font-size: 1.05rem;
    margin-top: 0.5rem;
  }

  /* 4. Minimum text size */
  body, input, textarea, select, button {
    font-size: 16px;
  }

  /* 5. Prevent horizontal scroll */
  html, body {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* 6. Tap target size for links/buttons */
  a, button, .btn-primary, .tab-btn {
    min-height: 44px;
    min-width: 44px;
  }
}

@media (max-width: 768px) {
  /* Header: left-align logo and name, hamburger right */
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 0 0.5rem;
  }
  .logo-container {
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    justify-content: flex-start;
  }
  .company-name {
    font-size: 1.1rem;
    text-align: left;
    font-weight: 700;
    margin-left: 0.2rem;
  }
  /* Hamburger button improvements */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    position: relative;
    right: 0;
    top: 0;
    z-index: 1202;
    /* Remove all margin-top, margin-right, margin-left overrides */
  }
  .nav-toggle:active, .nav-toggle:focus {
    background: rgba(59,130,246,0.18);
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
  }
  .hamburger {
    width: 28px;
    height: 28px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .hamburger span {
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
  }
  /* Hamburger to X animation */
  .nav-toggle.active .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .container.header-container {
    padding-left: 0;
    padding-right: 0;
  }
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 0 0.5rem;
  }
  .logo-container {
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    justify-content: flex-start;
    flex: 1 1 auto;
  }
  .nav-toggle {
    margin-left: auto;
    margin-right: 0;
  }
}

.whatsapp-button {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 1200;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  padding: 0.7em 1.2em;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 0 20px rgba(255, 179, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 600;
  font-size: 1.05em;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
.whatsapp-button::before {
  content: '🎄';
  position: absolute;
  top: -5px;
  right: -5px;
  font-size: 0.8em;
  opacity: 0.7;
  animation: festivePulse 2s ease-in-out infinite;
}
.whatsapp-button:hover, .whatsapp-button:focus {
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.22), 0 0 30px rgba(255, 179, 0, 0.5);
  border-color: rgba(255, 179, 0, 0.5);
}
@keyframes festivePulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}
.whatsapp-icon {
  font-size: 1.3em;
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .whatsapp-button {
    left: 0.7rem;
    bottom: 0.7rem;
    padding: 0.6em 1em;
    font-size: 0.98em;
  }
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1201;
  }
  body {
    padding-top: 70px;
  }
  .nav-toggle {
    z-index: 1202;
  }
  .main-nav {
    background: rgba(30, 58, 138, 0.97) !important;
    color: #fff;
    z-index: 1200;
  }
  .main-nav .nav-link {
    color: #fff !important;
  }
}

@media (max-width: 768px) {
  /* Info section: stack and add breathing room */
  .info-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .info-block {
    width: 100%;
    min-width: 0;
    margin-bottom: 1.5rem;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  /* Hamburger: better spacing and centering */
  .nav-toggle {
    margin-top: 0.4rem;
    margin-right: 0.4rem;
    padding: 0.4em 0.7em;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .info-section {
    padding: 2.5rem 0 2.5rem 0;
    background: var(--primary);
    color: #fff;
  }
  .info-container {
    flex-direction: column;
    gap: 2rem;
    padding: 0 0.5rem;
  }
  .info-block {
    width: 100%;
    min-width: 0;
    margin-bottom: 2rem;
    padding: 1.7rem 1.2rem;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .info-block h3 {
    font-size: 1.15rem;
    margin-bottom: 1.1rem;
  }
  .info-block ul li {
    margin-bottom: 0.7rem;
  }
  .info-block ul li a {
    font-size: 1rem;
    line-height: 1.5;
  }
  .info-social {
    margin-top: 1.2rem;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  /* Stack contact form and map vertically instead of side-by-side */
  .contact-map-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .contact-map-grid > div {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Enhanced FAQ Section Styling */
.faq-section {
  background: linear-gradient(135deg, #f3f4f6 0%, #e0e7ff 100%);
  padding: 3em 0;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-left: 5px solid #3b82f6;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.10);
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  font-size: 1.08rem;
  color: #1f2937;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: left;
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.faq-item:hover {
  box-shadow: 0 8px 32px rgba(30,58,138,0.16);
  transform: translateY(-2px) scale(1.01);
}
.faq-item strong {
  color: #1e40af;
  font-size: 1.13rem;
  display: block;
  margin-bottom: 0.5rem;
}
.faq-icon {
  font-size: 1.5rem;
  color: #3b82f6;
  margin-right: 0.7rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .faq-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 700px;
  }
}
@media (max-width: 600px) {
  .faq-item {
    padding: 1rem 1rem 1rem 1.5rem;
    font-size: 1rem;
    min-height: 80px;
  }
  .faq-list {
    gap: 1rem;
  }
}

/* Modern Privacy Page Styles */
.privacy-section-modern {
  background: linear-gradient(135deg, #f3f4f6 0%, #e0e7ff 100%);
  padding: 3em 0;
}
.privacy-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30, 58, 138, 0.08);
  padding: 2.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  animation: fadein 0.8s;
}
.privacy-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f8fafc;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.06);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  gap: 0.7rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.privacy-block:hover {
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.13);
  transform: translateY(-2px) scale(1.01);
}
.privacy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0e7ff 0%, #3b82f6 100%);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.07);
}
.privacy-icon svg {
  display: block;
}
.privacy-block .section-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1e3a8a;
  text-align: left;
}
.privacy-block ul {
  margin-left: 1.2rem;
  margin-bottom: 0.5rem;
}
.privacy-block li {
  font-size: 1.08rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.privacy-block p {
  font-size: 1.08rem;
  color: #374151;
  line-height: 1.7;
}
/* Fade-in animation */
@keyframes fadein {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.animate-fadein {
  animation: fadein 1s;
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .privacy-card {
    padding: 1.1rem 0.5rem;
  }
  .privacy-block {
    padding: 1.1rem 0.7rem;
  }
  .privacy-block .section-title {
    font-size: 1.1rem;
  }
  .privacy-icon {
    width: 38px;
    height: 38px;
  }
}

/* Stylish Location Card Section */
.location-card {
  max-width: 500px;
  margin: 2.5rem auto 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30,58,138,0.10);
  overflow: hidden;
  padding: 0 0 1.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.location-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(90deg, #1e3a8a 60%, #3b82f6 100%);
  color: #fff;
  width: 100%;
  padding: 1.2rem 0.5rem 1rem 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  justify-content: center;
}
.location-header i {
  font-size: 1.5rem;
  color: #fbbf24;
}
.location-map {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.location-address {
  margin-top: 1.2rem;
  padding: 0.7rem 1.2rem 0 1.2rem;
  font-size: 1rem;
  color: #1e3a8a;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}
@media (max-width: 600px) {
  .location-card {
    max-width: 98vw;
    border-radius: 10px;
    padding-bottom: 0.7rem;
  }
  .location-header {
    font-size: 1rem;
    padding: 1rem 0.2rem 0.7rem 0.2rem;
  }
  .location-address {
    font-size: 0.95rem;
    padding: 0.7rem 0.5rem 0 0.5rem;
  }
}

/* Festive Cookie Banner Styling */
#cookieConsent {
  background: linear-gradient(135deg, #d32f2f 0%, #ffb300 100%) !important;
  color: #fff !important;
  padding: 1.2em !important;
  text-align: center !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
  border-top: 3px solid rgba(255, 255, 255, 0.3) !important;
  font-weight: 500 !important;
}

#cookieConsent button {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  padding: 0.6em 1.5em !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin-left: 1em !important;
}

#cookieConsent button:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: scale(1.05) !important;
}

