/* ================ BASE STYLES ================ */
:root {
  /* Color Palette */
  --color-primary: #0B1D3A;
  --color-primary-light: #1A3A6B;
  --color-secondary: #E8B839;
  --color-accent: #D4A017;
  --color-light: #F8F9FA;
  --color-dark: #212529;
  --color-gray: #6C757D;
  --color-light-gray: #E9ECEF;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-dark);
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-md);
  font-size: 1rem;
  color: var(--color-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
  transition: var(--transition-medium);
  border: 2px solid transparent;
  cursor: pointer;
  gap: var(--space-xs);
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-light);
  border-color: var(--color-light);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-text:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.section-header {
  margin-bottom: var(--space-xl);
  text-align: center;
}

.section-header h2 span {
  color: var(--color-accent);
}

.section-header.center {
  text-align: center;
}

.section-subtitle {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.section-description {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ================ COMPONENTS ================ */
/* Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.sticky-header.menu-open {
  background-color: var(--color-primary);
}

.sticky-header.scrolled {
  background-color: rgba(11, 29, 58, 0.95);
  box-shadow: var(--shadow-lg);
}

.sticky-header.scrolled .nav-links a {
  color: white;
}

.sticky-header.scrolled .nav-cta {
  background-color: var(--color-accent);
  color: var(--color-primary) !important;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) var(--space-md);
}

.logo {
  height: 40px;
  transition: var(--transition-medium);
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-links a {
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-medium);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--color-accent);
  color: var(--color-primary) !important; /* Force dark text */
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  transition: var(--transition-medium);
}

.nav-cta:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-dark);
  margin: 5px 0;
  transition: var(--transition-medium);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 29, 58, 0.8), rgba(11, 29, 58, 0.4));
  z-index: 1;
}

#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 span {
  display: block;
  color: var(--color-accent);
}

.hero-content .subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.5rem;
  color: white;
}

.hero-social {
  position: absolute;
  right: var(--space-md);
  bottom: var(--space-lg);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hero-social a {
  color: white;
  font-size: 1.25rem;
  transition: var(--transition-fast);
}

.hero-social a:hover {
  color: var(--color-accent);
  transform: translateY(-3px);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Add this to your style.css file */
.transport-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden; /* This prevents content from spilling out */
}

.transport-hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video covers the area without distortion */
  z-index: 0; /* Places video behind content */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 29, 58, 0.8), rgba(11, 29, 58, 0.4));
  z-index: 1; /* Places overlay between video and content */
}

.hero-content {
  position: relative;
  z-index: 2; /* Ensures content stays above video and overlay */
}

@media (max-width: 768px) {
  .transport-hero {
    height: 80vh;
    min-height: 600px;
  }
  
  .transport-hero .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .transport-hero .hero-content .subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .transport-hero {
    height: 70vh;
    min-height: 500px;
  }
}

/* Trust Badges */
.trust-badges {
  background-color: white;
  padding: var(--space-md) 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
}

.badges-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.badge-item img {
  height: 24px;
  width: auto;
}

.badge-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray);
}

/* Services Showcase */
.services-showcase {
  background-color: var(--color-light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  border: 1px solid var(--color-light-gray);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  background: var(--color-primary);
  color: white;
  font-size: 1.75rem;
  padding: var(--space-md);
  text-align: center;
}

.service-content {
  padding: var(--space-md);
}

.service-content h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.service-features {
  margin: var(--space-md) 0;
  flex-grow: 1;
}

.service-features li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
}

.service-features li::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Stats Bar */
.stats-bar {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.stat-item {
  padding: var(--space-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Portfolio Showcase */
.portfolio-showcase {
  background-color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 29, 58, 0.9), transparent);
  opacity: 0;
  transition: var(--transition-medium);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.overlay-content {
  transform: translateY(20px);
  transition: var(--transition-medium);
}

.portfolio-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  color: white;
  margin-bottom: var(--space-xs);
}

.overlay-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-md);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.benefit-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
}

.benefit-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  font-size: 0.9375rem;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--color-light);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.testimonial {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial-content {
  text-align: center;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.client-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent);
}

.client-details {
  text-align: left;
}

.client-details strong {
  display: block;
  color: var(--color-primary);
  font-size: 1.125rem;
}

.client-details span {
  color: var(--color-gray);
  font-size: 0.875rem;
}

.rating {
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
}

.testimonial-text::before {
  top: -15px;
  left: -10px;
}

.testimonial-text::after {
  bottom: -25px;
  right: -10px;
}

.client-logo img {
  height: 40px;
  width: auto;
  margin: var(--space-md) auto 0;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: var(--transition-medium);
}

.client-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.testimonial-nav {
  background-color: var(--color-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition-medium);
}

.testimonial-nav:hover {
  background-color: var(--color-accent);
  transform: scale(1.1);
}

.clients-logos {
  overflow: hidden;
}

.logos-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  animation: slide 30s linear infinite;
}

.logos-slider img {
  height: 40px;
  width: auto;
  opacity: 0.5;
  transition: var(--transition-medium);
}

.logos-slider img:hover {
  opacity: 1;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Process Section */
.process-section {
  background-color: var(--color-primary);
  color: white;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  list-style: none;
  counter-reset: step-counter;
  margin: 0;
  padding: 0;
}

.process-item {
  text-align: center;
  padding: var(--space-lg);
  position: relative;
}

.process-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 40px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8B839'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}

.process-item:last-child::after {
  display: none;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.process-item h3 {
  color: rgb(255, 255, 255);
  margin-bottom: var(--space-sm);
}

.process-item p {
  color: rgba(255,255,255,0.8);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.step-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  text-align: center;
  transition: var(--transition-medium);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto var(--space-md);
  font-size: 1.25rem;
}

.step-icon {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-top: var(--space-md);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  text-align: center;
  padding: var(--space-xxl) 0;
}

.cta-content h2 {
  margin-bottom: var(--space-md);
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.main-footer {
  background-color: var(--color-dark);
  color: white;
}

.footer-top {
  padding: var(--space-xxl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
}

.footer-about {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: white;
  transition: var(--transition-medium);
}

.footer-social a:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-links h3 {
  color: white;
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-links h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: var(--space-xs);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: rgba(255,255,255,0.7);
}

.footer-contact i {
  color: var(--color-accent);
  width: 20px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.newsletter-form input {
  flex-grow: 1;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  border: none;
  background-color: rgba(255,255,255,0.1);
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  background-color: rgba(0,0,0,0.2);
  padding: var(--space-md) 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-accent);
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  border: 1px solid var(--color-light-gray);
  transition: var(--transition-medium);
}

.pricing-card.featured {
  border: 2px solid var(--color-accent);
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: var(--space-md);
  background: var(--color-accent);
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin: var(--space-sm) 0;
}

.price span {
  font-size: 1rem;
  color: var(--color-gray);
}

/* Story Cards */
.story-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.story-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.quote-icon {
  color: var(--color-accent);
  font-size: 2rem;
  opacity: 0.3;
  margin-bottom: var(--space-sm);
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 999;
  align-items: flex-end;
}

.whatsapp-button, .quote-button {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  border-radius: var(--radius-lg);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: max-width 0.3s ease, transform 0.3s ease;
  transform: translateY(0);
  max-width: 200px;
  }

.whatsapp-button {
  background-color: #25D366;
}

.quote-button {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.whatsapp-button:hover, .quote-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  max-width: 200px;
}

.whatsapp-button span, .quote-button span {
  display: none;
  margin-left: var(--space-xs);
}

.whatsapp-button:hover span, .quote-button:hover span {
  display: inline;
}

/* Loader */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: var(--transition-slow);
}

.loader-logo {
  width: 100px;
  height: 100px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

/* ================ UTILITY CLASSES ================ */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--color-accent);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-light {
  background-color: var(--color-light);
}

.rounded {
  border-radius: var(--radius-md);
}

.shadow {
  box-shadow: var(--shadow-md);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* ================ MEDIA QUERIES ================ */
@media (max-width: 992px) {
  .process-item::after {
    display: none;
  }
  
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--space-xl) 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    z-index: 1000;
   padding: var(--space-xl);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: white;
    font-size: 1.25rem;
  }
  
  .hero-content .subtitle {
    margin-bottom: var(--space-lg);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .floating-buttons {
    bottom: var(--space-sm);
    right: var(--space-sm);
  }
}

@media (max-width: 576px) {
  .badges-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-card {
    min-width: 100%;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .close-menu {
    display: none !important;
  }
  
  .hamburger {
    display: none;
  }
  
  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    flex-direction: row;
    padding: 0;
  }
}

/* Only show when menu is active */
.nav-links.active + .close-menu,
.nav-links.active ~ .close-menu {
  display: block;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.faq-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--color-light);
}

.faq-question h4 {
  margin-bottom: 0;
}

.faq-answer {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-card.active .faq-answer {
  padding: var(--space-md);
  max-height: 500px;
}

/* Image Badge */
.image-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--color-accent);
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
  z-index: 2;
}

/* Terms Page Specific Styles */
.terms-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  text-align: center;
  overflow: hidden;
}

.terms-hero h1 span {
  color: var(--color-accent);
}

.terms-nav-section {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.terms-nav {
  display: flex;
  overflow-x: auto;
  padding: var(--space-sm) 0;
  scrollbar-width: none; /* Firefox */
}

.terms-nav::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.terms-nav a {
  white-space: nowrap;
  padding: var(--space-xs) var(--space-md);
  font-weight: 600;
  color: var(--color-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition-medium);
  margin-right: var(--space-sm);
}

.terms-nav a.active,
.terms-nav a:hover {
  background-color: var(--color-primary);
  color: white;
}

.terms-content-section {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
}

.terms-article {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.article-header {
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-lg);
}

.article-header h2 {
  color: var(--color-primary);
}

.last-updated {
  color: var(--color-gray);
  font-size: 0.875rem;
  font-style: italic;
}

.article-content h3 {
  color: var(--color-primary);
  margin-top: var(--space-xl);
  font-size: 1.25rem;
}

.article-content ul {
  margin-bottom: var(--space-lg);
}

.article-content li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
}

.article-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.terms-acknowledgement {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
}

.terms-acknowledgement a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .terms-hero {
    height: 50vh;
    min-height: 400px;
  }
  
  .terms-nav {
    padding: var(--space-xs) 0;
  }
  
  .terms-article {
    padding: var(--space-lg);
  }
}

@media (max-width: 576px) {
  .terms-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .terms-article {
    padding: var(--space-md);
  }
}

/* Privacy Policy Specific Styles */
.privacy-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  text-align: center;
  overflow: hidden;
}

.privacy-hero h1 span {
  color: var(--color-accent);
}

.policy-nav-section {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.policy-nav {
  display: flex;
  overflow-x: auto;
  padding: var(--space-sm) 0;
  scrollbar-width: none; /* Firefox */
}

.policy-nav::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.policy-nav a {
  white-space: nowrap;
  padding: var(--space-xs) var(--space-md);
  font-weight: 600;
  color: var(--color-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition-medium);
  margin-right: var(--space-sm);
}

.policy-nav a.active,
.policy-nav a:hover {
  background-color: var(--color-primary);
  color: white;
}

.policy-content-section {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
}

.policy-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.policy-article {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.article-header h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-xs);
}

.article-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}

.article-content h3 {
  color: var(--color-primary-light);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

/* Service Cards in Policy */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.service-card {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.service-icon {
  background-color: var(--color-primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 1.5rem;
}

.service-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

/* Collection Methods */
.collection-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.method-card {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.method-icon {
  color: var(--color-accent);
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
}

.method-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

/* Usage Grid */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.usage-card {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.usage-icon {
  color: var(--color-accent);
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
}

.usage-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.right-card {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.right-icon {
  color: var(--color-accent);
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
}

.right-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.contact-card {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.contact-icon {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.contact-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

/* Note Box */
.note-box {
  background-color: rgba(232, 184, 57, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.note-box i {
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-top: 2px;
}

/* Privacy CTA */
.privacy-cta {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  text-align: center;
  padding: var(--space-xl) 0;
}

.privacy-cta h2 {
  margin-bottom: var(--space-md);
}

.privacy-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .privacy-hero {
    height: 50vh;
    min-height: 400px;
  }
  
  .policy-nav {
    padding: var(--space-xs) 0;
  }
  
  .policy-article {
    padding: var(--space-lg);
  }
}

@media (max-width: 576px) {
  .privacy-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .policy-article {
    padding: var(--space-md);
  }
}

/* Cookie Policy Specific Styles */
.cookie-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  text-align: center;
  overflow: hidden;
}

.cookie-hero h1 span {
  color: var(--color-accent);
}

/* Cookie Definition */
.cookie-definition {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background-color: rgba(232, 184, 57, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-md);
  margin: var(--space-lg) 0;
}

.cookie-icon {
  font-size: 3rem;
  color: var(--color-accent);
}

.cookie-text {
  flex: 1;
}

/* Cookie Functions */
.cookie-functions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.function-card {
  background-color: var(--color-light);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
}

.function-icon {
  font-size: 1.75rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.function-card h4 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

/* Cookie Types */
.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}

.type-card {
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border-left: 4px solid;
}

.type-card.essential {
  border-color: var(--color-primary);
  background-color: rgba(11, 29, 58, 0.05);
}

.type-card.analytics {
  border-color: var(--color-accent);
  background-color: rgba(232, 184, 57, 0.05);
}

.type-card.marketing {
  border-color: var(--color-gray);
  background-color: rgba(108, 117, 125, 0.05);
}

.type-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.type-header i {
  font-size: 1.5rem;
}

.type-header h3 {
  margin-bottom: 0;
}

.type-details {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 0.875rem;
}

/* Cookie Table */
.cookie-table-container {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
}

.cookie-table th, .cookie-table td {
  padding: var(--space-sm);
  text-align: left;
  border-bottom: 1px solid var(--color-light-gray);
}

.cookie-table th {
  background-color: var(--color-primary);
  color: white;
}

.cookie-table tr:nth-child(even) {
  background-color: var(--color-light);
}

/* Cookie Settings */
.cookie-settings {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin: var(--space-md) 0;
}

.setting-group {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--color-accent);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-accent);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Browser Links */
.browser-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.browser-links a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
}

/* Cookie CTA */
.cookie-cta {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  text-align: center;
  padding: var(--space-xl) 0;
}

.cookie-cta h2 {
  margin-bottom: var(--space-md);
}

.cookie-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cookie-hero {
    height: 50vh;
    min-height: 400px;
  }
  
  .cookie-definition {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-types {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .cookie-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .cookie-functions {
    grid-template-columns: 1fr;
  }
}

/* ================ BLOG STYLES ================ */
.blog-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  text-align: center;
  overflow: hidden;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

.blog-hero h1 span {
  color: var(--color-accent);
}

.blog-hero .subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}

.blog-search {
  max-width: 500px;
  margin: 0 auto;
}

.blog-search form {
  position: relative;
}

.blog-search input {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  border: none;
  background-color: rgba(255,255,255,0.9);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 1rem;
}

.blog-search button {
  position: absolute;
  right: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 1rem;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/img/patterns/dots-pattern.png');
  opacity: 0.05;
  z-index: 1;
}

/* Featured Post */
.featured-post-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-light);
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.featured-post-image {
  position: relative;
  min-height: 400px;
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-post-content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-gray);
}

.post-category {
  background-color: var(--color-primary);
  color: white;
  padding: 0.25rem var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.featured-post-content h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.featured-post-content h3 a {
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.featured-post-content h3 a:hover {
  color: var(--color-accent);
}

.featured-post-content p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.post-tags {
  display: flex;
  gap: var(--space-xs);
}

.post-tags a {
  font-size: 0.75rem;
  color: var(--color-gray);
  transition: var(--transition-fast);
}

.post-tags a:hover {
  color: var(--color-accent);
}

/* Blog Content Section */
.blog-content-section {
  padding: var(--space-xl) 0;
  background-color: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
}

.category-filter {
  margin-bottom: var(--space-xl);
}

.category-filter h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.filter-btn {
  background-color: var(--color-light);
  border: none;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--color-primary);
  color: white;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.blog-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.post-category-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 0.25rem var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.blog-card-content {
  padding: var(--space-md);
}

.blog-card-content h4 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.blog-card-content h4 a {
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.blog-card-content h4 a:hover {
  color: var(--color-accent);
}

.blog-card-content p {
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.post-actions {
  display: flex;
  gap: var(--space-md);
  color: var(--color-gray);
  font-size: 0.875rem;
}

.post-actions i {
  margin-right: 0.25rem;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.pagination-btn {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  background-color: var(--color-light);
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition-fast);
}

.pagination-btn:hover, .pagination-btn.active {
  background-color: var(--color-primary);
  color: white;
}

.pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.sidebar-widget {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  position: relative;
  padding-bottom: var(--space-xs);
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

/* About Widget */
.about-widget {
  text-align: center;
}

.author-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--color-accent);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-title {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.author-social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-light);
  color: var(--color-primary);
  transition: var(--transition-medium);
}

.author-social a:hover {
  background-color: var(--color-accent);
  color: white;
}

/* Popular Posts */
.popular-post {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-light-gray);
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post-image {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.popular-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-title {
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition-fast);
  display: block;
  margin-bottom: 0.25rem;
}

.post-title:hover {
  color: var(--color-accent);
}

.post-date {
  font-size: 0.75rem;
  color: var(--color-gray);
}

/* Newsletter Widget */
.sidebar-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.sidebar-newsletter-form input {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-light-gray);
  font-family: var(--font-body);
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--color-gray);
  margin-top: var(--space-xs);
}

/* Tags Widget */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.tag {
  background-color: var(--color-light);
  color: var(--color-primary);
  padding: 0.25rem var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

.tag:hover {
  background-color: var(--color-primary);
  color: white;
}

/* Blog CTA */
.blog-cta {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  text-align: center;
  padding: var(--space-xxl) 0;
}

.blog-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.blog-cta h2 {
  margin-bottom: var(--space-md);
}

.blog-cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .featured-post {
    grid-template-columns: 1fr;
  }
  
  .featured-post-image {
    min-height: 300px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .blog-hero {
    height: 50vh;
    min-height: 400px;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .popular-post {
    flex-direction: column;
  }
  
  .popular-post-image {
    width: 100%;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .blog-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .filter-buttons {
    gap: var(--space-xs);
  }
  
  .filter-btn {
    font-size: 0.75rem;
    padding: 0.25rem var(--space-xs);
  }
  
  .blog-pagination {
    flex-wrap: wrap;
  }
}

/* ================ ADD THESE TO YOUR EXISTING STYLE.CSS ================ */

/* Enhanced Hero Section */
.hero-content h1 {
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content .subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Video Controls */
#hero-video {
  transition: var(--transition-slow);
}

.hero:hover #hero-video {
  transform: scale(1.02);
}

/* Service Cards Enhancements */
.service-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(11, 29, 58, 0.8));
  opacity: 0;
  transition: var(--transition-medium);
  z-index: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-content {
  position: relative;
  padding: var(--space-xl);
  z-index: 2;
}

.service-options {
  background: var(--color-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

.service-icon {
  transition: var(--transition-medium);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background-color: var(--color-accent);
}

/* Portfolio Showcase Enhancements */
.portfolio-item {
  transition: var(--transition-medium);
  transform-origin: center;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.portfolio-overlay {
  padding: var(--space-lg);
}

/* Stats Counter Animation */
@keyframes countUp {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number.animated {
  animation: countUp 1s ease-out forwards;
}

/* Testimonial Slider */
.testimonial {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
  position: absolute;
  width: 100%;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

/* ================ SERVICES PAGE SPECIFIC STYLES ================ */
/* Page Hero */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  padding-top: 100px;
}

.page-hero .hero-content {
  max-width: 800px;
}

/* Services Navigation Grid */
.services-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.service-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  text-align: center;
  color: var(--color-primary);
}

.service-nav-item i {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.service-nav-item span {
  font-weight: 600;
}

.service-nav-item.featured {
  border: 2px solid var(--color-accent);
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-nav-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--color-primary);
  color: white;
}

.service-nav-item:hover i {
  color: white;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.75rem;
  transition: var(--transition-medium);
}

.service-nav-item:hover .service-icon-wrapper {
  background: var(--color-accent);
  transform: rotate(15deg) scale(1.1);
}

.service-cta {
  display: inline-block;
  margin-top: var(--space-sm);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.service-nav-item:hover .service-cta {
  transform: translateX(5px);
}

/* Service Details Layout */
.service-details {
  background: white;
  padding: var(--space-xl);
  display: grid;
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin: var(--space-xxl) 0;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}

.service-details-section {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
}

.service-details.reverse {
  direction: rtl;
}

.service-details.reverse > * {
  direction: ltr;
}

.service-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-image img {
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

.rounded-image {
  border-radius: var(--radius-lg);
  transition: var(--transition-medium);
}

.service-image:hover .rounded-image {
  transform: scale(1.03);
}

/* Add to your style.css file */

/* Booking Section Styles */
.booking-section {
  background-color: var(--color-light);
  padding: var(--space-xl) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: flex-start; /* Changed from center to flex-start for better alignment */
}

.booking-form {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.booking-info {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Process Steps */
.process-steps {
  list-style: none;
  padding: 0;
}

.process-steps li {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--space-xl);
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-content h4 {
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.step-content p {
  color: var(--color-gray);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Price Estimate */
.price-estimate {
  background-color: rgba(232, 184, 57, 0.1);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .booking-form,
  .booking-info {
    padding: var(--space-lg);
  }
  
  .process-steps li {
    padding-left: 50px;
    margin-bottom: var(--space-lg);
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .booking-form,
  .booking-info {
    padding: var(--space-md);
  }
  
  .process-steps li {
    padding-left: 44px;
    margin-bottom: var(--space-md);
  }
  
  .step-number {
    width: 32px;
    height: 32px;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .service-details {
    grid-template-columns: 1fr;
  }
  
  .service-details.reverse {
    direction: ltr;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Ensure consistent mobile menu behavior */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-medium);
    z-index: 1000;
    padding: var(--space-xl);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: white;
    font-size: 1.25rem;
  }
  
  .close-menu {
    position: fixed;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    z-index: 1001;
    display: none;
  }
  
  .nav-links.active + .close-menu,
  .nav-links.active ~ .close-menu {
    display: block;
  }
}

/* Contact Alternative Section */
.contact-alternative {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-light-gray);
}

.contact-alternative-content {
  text-align: center;
}

.contact-alternative p {
  margin-bottom: var(--space-md);
  font-weight: 500;
  color: var(--color-primary);
}

.contact-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.phone-link:hover {
  color: var(--color-accent);
}

.phone-link i {
  font-size: 1.25rem;
}

.or-divider {
  position: relative;
  font-size: 0.875rem;
  color: var(--color-gray);
}

.or-divider::before,
.or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: var(--color-light-gray);
}

.or-divider::before {
  right: calc(100% + var(--space-xs));
}

.or-divider::after {
  left: calc(100% + var(--space-xs));
}

/* Responsive adjustments */
@media (min-width: 576px) {
  .contact-options {
    flex-direction: row;
    justify-content: center;
  }
  
  .or-divider {
    padding: 0 var(--space-sm);
  }
  
  .or-divider::before,
  .or-divider::after {
    display: none;
  }
}

/* ================ TERMS PAGE SPECIFIC STYLES ================ */
/* Hero Section */
.terms-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  text-align: center;
  overflow: hidden;
}

.terms-hero .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.terms-hero .hero-content .subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.terms-hero .scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.terms-hero .scroll-indicator i {
  font-size: 1.5rem;
  color: white;
}

/* Terms Navigation */
.terms-nav-section {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.terms-nav {
  display: flex;
  overflow-x: auto;
  padding: var(--space-sm) 0;
  scrollbar-width: none; /* Firefox */
}

.terms-nav::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.terms-nav a {
  white-space: nowrap;
  padding: var(--space-xs) var(--space-md);
  font-weight: 600;
  color: var(--color-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition-medium);
  margin-right: var(--space-sm);
  font-size: 0.875rem;
  position: relative;
}

.terms-nav a.active,
.terms-nav a:hover {
  background-color: var(--color-primary);
  color: white;
}

.terms-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* Terms Content Section */
.terms-content-section {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
}

.terms-article {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.article-header {
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.article-header h2 {
  color: var(--color-primary);
  margin-bottom: 0;
}

.last-updated {
  color: var(--color-gray);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Terms Content Styling */
.terms-clause {
  margin-bottom: var(--space-xl);
}

.terms-clause h3 {
  color: var(--color-primary-light);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.terms-clause h3 span {
  color: var(--color-accent);
  font-weight: 700;
}

.terms-list {
  margin: var(--space-md) 0;
  padding-left: var(--space-md);
}

.terms-list li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.terms-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

/* Highlight Box for Important Clauses */
.highlight-box {
  background-color: rgba(232, 184, 57, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Policy Grid */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin: var(--space-md) 0;
}

.policy-item {
  background-color: var(--color-light);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

.policy-type {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.policy-detail {
  font-size: 0.9375rem;
  color: var(--color-gray);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

.contact-item {
  text-align: center;
  padding: var(--space-lg);
  background-color: var(--color-light);
  border-radius: var(--radius-md);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.5rem;
}

.contact-item h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.contact-item p {
  margin-bottom: 0;
}

/* Terms Acknowledgement */
.terms-acknowledgement {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  text-align: left;
}

.acknowledgement-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.acknowledgement-content h3 {
  color: white;
  margin-bottom: var(--space-sm);
}

.acknowledgement-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .terms-hero {
    height: 50vh;
    min-height: 400px;
  }
  
  .article-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .terms-acknowledgement {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .terms-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .terms-article {
    padding: var(--space-lg);
  }
  
  .policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .terms-hero {
    height: 35vh;
    min-height: 250px;
  }
  
  .terms-article {
    padding: var(--space-md);
  }
  
  .terms-nav {
    padding: var(--space-xs) 0;
  }
  
  .terms-nav a {
    font-size: 0.8125rem;
    padding: var(--space-xs) var(--space-sm);
    margin-right: var(--space-xs);
  }
}

/* Form validation */
.error {
  border-color: #e74c3c !important;
}

/* Payment methods */
.payment-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}

.payment-option:hover {
  border-color: #0B1D3A;
}

.payment-option input {
  margin-right: 5px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.modal-icon {
  font-size: 50px;
  color: #2ecc71;
  margin-bottom: 20px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.consent-checkbox {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.consent-checkbox input {
  margin-right: 10px;
}

/* FAQ Section Enhancements */
.faq-section {
  padding: var(--space-xxl) 0;
}

.faq-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-medium);
  margin-bottom: var(--space-md);
}

.faq-card:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--color-light);
}

.faq-question h4 {
  margin-bottom: 0;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.faq-question i {
  transition: var(--transition-medium);
}

.faq-card.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
}

.faq-card.active .faq-answer {
  padding: var(--space-md) var(--space-lg);
  max-height: 500px;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.process-section h2,
.process-section .section-subtitle {
  color: var(--color-accent);
}

/* THE FIXES, COVERING THE CRACKS */
/* SERVICES.HTML */
/* Popular Service Combinations */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.combo-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  border: 1px solid var(--color-light-gray);
}

.combo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.combo-badge {
  position: absolute;
  top: -12px;
  right: var(--space-md);
  background: var(--color-accent);
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.combo-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.combo-description {
  color: var(--color-gray);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}

.combo-services {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.combo-services span {
  background: var(--color-light);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.combo-savings {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.875rem;
  margin: var(--space-md) 0;
}

/* Booking Widget */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-form {
  padding: var(--space-xl);
}

.booking-results {
  background: var(--color-primary-light);
  padding: var(--space-xl);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.results-placeholder {
  text-align: center;
}

.results-placeholder i {
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--space-md);
}

.time-slots {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.time-slot {
  background: rgba(255,255,255,0.1);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none;
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
}

.select-arrow {
  position: absolute;
  right: var(--space-sm);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-gray);
}

.booking-alert {
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.booking-alert.error {
  background-color: rgba(231, 76, 60, 0.1);
  border-left: 3px solid #e74c3c;
  color: #e74c3c;
}

.booking-alert.success {
  background-color: rgba(46, 204, 113, 0.1);
  border-left: 3px solid #2ecc71;
  color: #2ecc71;
}

/* TRANSPORT.HTML */
/* Fleet Section Styles */
.fleet-section {
  padding: var(--space-xl) 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.fleet-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.fleet-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.05);
}

.fleet-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.fleet-details {
  padding: var(--space-md);
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
  font-size: 0.875rem;
}

.fleet-specs i {
  color: var(--color-accent);
  margin-right: var(--space-xs);
}

.fleet-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
}

.fleet-price .price {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.25rem;
}

/* Tours Section */
.tours-section {
  padding: var(--space-xl) 0;
  background-color: var(--color-light);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.tour-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.tour-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

.tour-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.75rem;
}

.tour-price {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.tour-content {
  padding: var(--space-md);
}

.tour-meta {
  display: flex;
  gap: var(--space-md);
  margin: var(--space-sm) 0;
  font-size: 0.875rem;
  color: var(--color-gray);
}

.tour-meta i {
  color: var(--color-accent);
  margin-right: 4px;
}

.tour-excerpt {
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.tour-details {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-light-gray);
  margin-top: var(--space-md);
}

.tour-details h4 {
  font-size: 1rem;
  color: var(--color-primary);
  margin: var(--space-md) 0 var(--space-sm);
}

.tour-details ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.tour-details li {
  position: relative;
  margin-bottom: var(--space-xs);
}

.tour-details li::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
}

.tour-cta {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .fleet-grid,
  .tours-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-container {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Floating Label Effect (Optional) */
.form-group {
  position: relative;
  margin-top: var(--space-md);
}

.form-group label {
  position: absolute;
  top: -10px;
  left: var(--space-sm);
  background: white;
  padding: 0 5px;
  font-size: 0.875rem;
  z-index: 1;
}

/* Animated Form Fields */
.form-group input,
.form-group select,
.form-group textarea {
  transition: all 0.3s ease;
}

.form-group input:not(:placeholder-shown),
.form-group select:not([value=""]),
.form-group textarea:not(:placeholder-shown) {
  border-width: 2px;
  padding-top: var(--space-md);
}

/* Date and Time Input Styling */
input[type="date"],
input[type="time"] {
  padding-right: var(--space-lg);
}

/* Textarea Specific Styles */
.form-group textarea {
  min-height: 120px;
  line-height: 1.6;
}


/* Newsletter Subscribe */
.alert {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 14px;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading spinner */
.fa-spinner {
    margin-right: 5px;
}

/* BEAUTIFYING ABOUT */
/* Enhanced Hero Section */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 29, 58, 0.9) 0%, rgba(11, 29, 58, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating button animation */
.btn-primary {
  animation: float 3s ease-in-out infinite;
}

.btn-outline-light {
  animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Channel Cards */
.channel-card {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: perspective(1000px) rotateY(0deg);
}

.channel-card:hover {
  transform: perspective(1000px) rotateY(5deg);
  box-shadow: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.08);
}

.channel-icon {
  transition: all 0.3s ease;
}

.channel-card:hover .channel-icon {
  transform: scale(1.1);
  color: var(--color-accent);
}

/* WhatsApp pulse effect */
.btn-outline[href*="whatsapp"] {
  position: relative;
  overflow: hidden;
}

.btn-outline[href*="whatsapp"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(37, 211, 102, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.btn-outline[href*="whatsapp"]:hover::after {
  animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.1, 0.1) translate(-50%, -50%);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: scale(20, 20) translate(-50%, -50%);
    opacity: 0;
  }
}

/* Form enhancements */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  transition: all 0.3s ease;
  padding: 12px 15px;
  border: 2px solid var(--color-light-gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: var(--color-gray);
  transition: all 0.3s ease;
  pointer-events: none;
  background: white;
  padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: var(--color-accent);
  background: white;
}

/* Success animation */
.form-success {
  animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Map enhancements */
.map-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  transition: transform 0.5s ease;
}

.map-container:hover iframe {
  transform: scale(1.02);
}

.location-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(232, 184, 57, 0.6);
  animation: pulse 2s infinite;
  z-index: 1;
  pointer-events: none;
}

/* Team member cards */
.team-member {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-photo {
  position: relative;
  overflow: hidden;
}

.member-photo img {
  transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
  transform: scale(1.05);
}

.member-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  opacity: 0;
}

.team-member:hover .member-social {
  bottom: 20px;
  opacity: 1;
}

.member-social a {
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

/* FAQ animations */
.faq-question {
  transition: all 0.3s ease;
}

.faq-card.active .faq-question {
  background-color: var(--color-primary);
  color: white;
}

.faq-card.active .faq-question h4 {
  color: white;
}

.faq-answer {
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-helpful {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-card.active .faq-helpful {
  opacity: 1;
}

.faq-helpful button {
  background: none;
  border: none;
  color: var(--color-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-helpful button:hover {
  color: var(--color-accent);
}

/* Elfsight TripAdvisor Widget Styling */
.elfsight-tripadvisor-widget {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 40px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .elfsight-tripadvisor-widget {
    padding: 20px;
    margin: 30px 0;
  }
}

/* ================= CONTACT PAGE STYLES ================== */

.contact-form-section {
  background-color: var(--color-light);
  padding: var(--space-xxl) 0;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.form-intro {
  padding-right: var(--space-lg);
}

.form-wrapper {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info {
  margin-top: var(--space-xl);
}

.info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.info-item i {
  font-size: 1.5rem;
  color: var(--color-accent);
  min-width: 32px;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-light-gray);
  font-size: 1rem;
  font-family: var(--font-body);
  background: #fff;
  color: var(--color-dark);
}

.form-group textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none;
  width: 100%;
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: var(--space-sm);
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-gray);
}

.form-footer {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-note {
  font-size: 0.875rem;
  color: var(--color-gray);
}

.required {
  color: red;
  font-weight: 700;
}

/* Map and Details */
.map-section {
  padding: var(--space-xxl) 0;
  background-color: white;
}

.location-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.detail-card {
  background: var(--color-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.detail-card i {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

/* Team Contact */
.team-contact .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.team-member {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.member-photo img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.member-email,
.member-phone {
  display: block;
  color: var(--color-primary);
  margin-top: var(--space-xs);
  font-weight: 600;
  font-size: 0.95rem;
}

.member-phone i,
.member-email i {
  margin-right: var(--space-xs);
}

/* FAQ Section */
.faq-section {
  background: var(--color-light);
  padding: var(--space-xxl) 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.faq-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-md);
  background: var(--color-light-gray);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--space-md);
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-card.active .faq-answer {
  padding: var(--space-md);
  max-height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-container {
    grid-template-columns: 1fr;
  }

  .form-intro {
    padding-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}.pixieset-gallery {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: center;
}

.pixieset-gallery h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pixieset-gallery p {
  margin-bottom: 2rem;
  color: #555;
}
