/* ============================================
   GOLDEN EXPRESS CARGO - STATIC WEBSITE CSS
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
  /* Colors - HSL format */
  --background: 45 33% 97%;
  --foreground: 222 47% 18%;
  --card: 0 0% 100%;
  --card-foreground: 222 47% 18%;
  --popover: 0 0% 100%;
  --popover-foreground: 222 47% 18%;
  
  /* Brand: Deep Blue */
  --primary: 224 64% 33%;
  --primary-foreground: 0 0% 100%;
  
  /* Brand: Orange */
  --accent: 22 100% 50%;
  --accent-foreground: 0 0% 100%;
  --accent-glow: 28 100% 60%;
  
  --secondary: 60 56% 91%;
  --secondary-foreground: 224 64% 33%;
  --muted: 45 25% 94%;
  --muted-foreground: 222 20% 40%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 30 20% 88%;
  --input: 30 20% 88%;
  --ring: 22 100% 50%;
  --radius: 0.75rem;
  
  /* Brand gradients & shadows */
  --gradient-brand: linear-gradient(135deg, hsl(22 100% 50%) 0%, hsl(28 100% 60%) 100%);
  --gradient-hero: linear-gradient(120deg, hsl(224 64% 18% / 0.92) 0%, hsl(224 64% 28% / 0.78) 60%, hsl(22 100% 45% / 0.55) 100%);
  --gradient-section: linear-gradient(180deg, hsl(45 33% 97%) 0%, hsl(60 56% 94%) 100%);
  --shadow-brand: 0 18px 40px -12px hsl(22 100% 50% / 0.45);
  --shadow-card: 0 10px 30px -12px hsl(224 64% 33% / 0.18);
  --shadow-soft: 0 4px 20px -4px hsl(224 30% 30% / 0.1);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Convert HSL to RGB for calculations */
  --bg-color: #faf9f6;
  --text-color: #1a2332;
  --primary-color: #1e3a5f;
  --primary-text: #ffffff;
  --accent-color: #ff6b00;
  --accent-text: #ffffff;
  --accent-glow-color: #ff9933;
  --secondary-color: #f5f5dc;
  --secondary-text: #1e3a5f;
  --muted-color: #f0ede8;
  --muted-text: #5a6a7d;
  --border-color: #e8e0d5;
  --card-bg: #ffffff;
  --whatsapp-green: #25d366;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Gradient utilities */
.gradient-brand {
  background: var(--gradient-brand);
}

.gradient-hero {
  background: var(--gradient-hero);
}

.gradient-section {
  background: var(--gradient-section);
}

/* Shadow utilities */
.shadow-brand {
  box-shadow: var(--shadow-brand);
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

/* Text gradient */
.text-gradient-brand {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Transition */
.transition-smooth {
  transition: var(--transition-smooth);
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-8 {
  gap: 2rem;
}

/* Grid utilities */
.grid {
  display: grid;
}

/* Spacing utilities */
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Text utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.tracking-tight {
  letter-spacing: -0.02em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Text colors */
.text-white {
  color: #ffffff;
}

.text-primary {
  color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color);
}

.text-muted {
  color: var(--muted-text);
}

.text-foreground-80 {
  color: rgba(26, 35, 50, 0.8);
}

.text-foreground-85 {
  color: rgba(26, 35, 50, 0.85);
}

.text-foreground-90 {
  color: rgba(26, 35, 50, 0.9);
}

/* Background colors */
.bg-white {
  background-color: #ffffff;
}

.bg-background {
  background-color: var(--bg-color);
}

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

.bg-card {
  background-color: var(--card-bg);
}

.bg-secondary-40 {
  background-color: hsla(60, 56%, 91%, 0.4);
}

.bg-secondary-30 {
  background-color: hsla(60, 56%, 91%, 0.3);
}

/* Border utilities */
.border {
  border: 1px solid var(--border-color);
}

.border-t {
  border-top: 1px solid var(--border-color);
}

.border-border {
  border-color: var(--border-color);
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Width/Height utilities */
.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.min-h-screen {
  min-height: 100vh;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

/* Position utilities */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.top-4 {
  top: 1rem;
}

.left-4 {
  left: 1rem;
}

.bottom-6 {
  bottom: 1.5rem;
}

.bottom-24 {
  bottom: 6rem;
}

.right-6 {
  right: 1.5rem;
}

.-top-3 {
  top: -0.75rem;
}

.-left-3 {
  left: -0.75rem;
}

.z-50 {
  z-index: 50;
}

/* Display utilities */
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline-flex {
  display: inline-flex;
}

.hidden {
  display: none;
}

/* Shrink/Grow */
.shrink-0 {
  flex-shrink: 0;
}

.flex-1 {
  flex: 1;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

/* Object fit */
.object-cover {
  object-fit: cover;
}

/* Aspect ratio */
.aspect-square {
  aspect-ratio: 1 / 1;
}

/* Backdrop blur */
.backdrop-blur {
  backdrop-filter: blur(12px);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(8px);
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-75 {
  opacity: 0.75;
}

/* Cursor */
.pointer-events-none {
  pointer-events: none;
}

/* Space utilities */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

/* Break-all */
.break-all {
  word-break: break-all;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-fade-up {
  animation: fade-up 0.7s ease-out both;
}

.animate-pulse-ring {
  animation: pulse-ring 2s infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-hero {
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow-brand);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -12px hsl(22 100% 50% / 0.6);
}

.btn-outline-hero {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: white;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background-color: white;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-input::placeholder {
  color: var(--muted-text);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }
  
  .sm\:inline-flex {
    display: inline-flex;
  }
  
  .sm\:hidden {
    display: none;
  }
  
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .sm\:text-5xl {
    font-size: 3rem;
  }
  
  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .sm\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  
  .md\:inline-flex {
    display: inline-flex;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:flex {
    display: flex;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .md\:h-20 {
    height: 5rem;
  }
  
  .md\:h-16 {
    height: 4rem;
  }
  
  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
  
  .md\:py-36 {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  
  .md\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }
  
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .md\:p-8 {
    padding: 2rem;
  }
  
  .md\:pr-6 {
    padding-right: 1.5rem;
  }
  
  .md\:gap-5 {
    gap: 1.25rem;
  }
  
  .md\:text-5xl {
    font-size: 3rem;
  }
  
  .md\:text-xl {
    font-size: 1.25rem;
  }
  
  .md\:text-lg {
    font-size: 1.125rem;
  }
  
  .md\:text-base {
    font-size: 1rem;
  }
  
  .md\:text-xs {
    font-size: 0.875rem;
  }
  
  .md\:text-2xl {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
  
  .lg\:hidden {
    display: none;
  }
  
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:h-16 {
    height: 4rem;
  }
  
  .lg\:py-44 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }
  
  .lg\:text-7xl {
    font-size: 4.5rem;
  }
  
  .lg\:gap-12 {
    gap: 3rem;
  }
  
  .lg\:gap-7 {
    gap: 1.75rem;
  }
  
  .lg\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media (min-width: 1280px) {
  .xl\:text-7xl {
    font-size: 4.5rem;
  }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(232, 224, 213, 0.6);
  background-color: rgba(250, 249, 246, 0.85);
  backdrop-filter: blur(12px);
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-left: 0;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .header-container {
    height: 5rem;
    padding-right: 1.5rem;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.5rem;
}

@media (min-width: 768px) {
  .logo-link {
    padding-left: 0.75rem;
  }
}

.logo-img {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo-img {
    height: 4rem;
  }
}

.logo-text {
  line-height: 1.25;
}

.logo-title {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .logo-title {
    font-size: 1rem;
  }
}

.logo-subtitle {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .logo-subtitle {
    font-size: 0.75rem;
  }
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 35, 50, 0.8);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent-color);
}

.mobile-menu-btn {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
  background-color: var(--muted-color);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  gap: 0.75rem;
}

.mobile-nav-link {
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(26, 35, 50, 0.8);
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--accent-color);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  padding: 6rem 0;
  color: white;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 9rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 11rem 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .hero-badge {
    font-size: 0.875rem;
    padding: 0.375rem 1rem;
  }
}

.hero-title {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.05;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-features {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

@media (min-width: 768px) {
  .services {
    padding: 7rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.section-label {
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.section-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  margin-top: 1rem;
  color: var(--muted-text);
}

.services-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--card-bg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(232, 224, 213, 0.6);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-image-wrapper {
  position: relative;
  height: 13rem;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 95, 0.8), rgba(30, 58, 95, 0.2), transparent);
}

.service-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow-brand);
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}

.service-desc {
  margin-top: 0.5rem;
  color: var(--muted-text);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 5rem 0;
  background: var(--gradient-section);
}

@media (min-width: 768px) {
  .about {
    padding: 7rem 0;
  }
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image-glow {
  position: absolute;
  inset: -1rem;
  background: var(--gradient-brand);
  border-radius: 1.5rem;
  opacity: 0.2;
  filter: blur(2rem);
}

.about-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
}

.about-image img {
  width: 100%;
  height: auto;
}

.about-list {
  margin-top: 1.75rem;
  space-y: 0.75rem;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-list-icon {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.about-list-text {
  color: rgba(26, 35, 50, 0.9);
  font-weight: 500;
}

.about-tags {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  border-radius: 9999px;
  background-color: var(--secondary-color);
  color: var(--secondary-text);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: white;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .why-choose {
    padding: 7rem 0;
  }
}

.why-choose::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 
    radial-gradient(circle at 20% 20%, hsl(22 100% 50%) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, hsl(28 100% 60%) 0%, transparent 40%);
}

.why-choose-content {
  position: relative;
}

.why-choose .section-label {
  color: var(--accent-glow-color);
}

.why-choose .section-title {
  color: white;
}

.why-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
  transition: var(--transition-smooth);
}

.why-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.why-icon {
  display: inline-flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-brand);
}

.why-icon svg {
  height: 1.75rem;
  width: 1.75rem;
  color: white;
}

.why-title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.why-desc {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: 5rem 0;
  background-color: rgba(245, 245, 220, 0.4);
}

@media (min-width: 768px) {
  .gallery {
    padding: 7rem 0;
  }
}

.gallery-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(232, 224, 213, 0.6);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 58, 95, 0.7), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 5rem 0;
  background-color: rgba(245, 245, 220, 0.3);
}

@media (min-width: 768px) {
  .testimonials {
    padding: 7rem 0;
  }
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.25rem;
  box-shadow: var(--shadow-soft);
  margin-top: 1.5rem;
}

.rating-stars {
  display: flex;
}

.rating-star {
  height: 1rem;
  width: 1rem;
  color: var(--accent-color);
  fill: currentColor;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
}

.testimonials-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-card {
  position: relative;
  border-radius: 1rem;
  background-color: var(--card-bg);
  border: 1px solid rgba(232, 224, 213, 0.6);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-quote-icon {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  height: 2.25rem;
  width: 2.25rem;
  padding: 0.5rem;
  border-radius: 9999px;
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--shadow-brand);
}

.testimonial-text {
  margin-top: 1rem;
  color: rgba(26, 35, 50, 0.85);
  line-height: 1.625;
}

.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.testimonial-name {
  font-weight: 700;
  color: var(--primary-color);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted-text);
  margin-top: 0.125rem;
}

/* Client logos */
.clients-section {
  margin-top: 4rem;
}

.clients-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted-text);
  text-transform: uppercase;
}

.clients-list {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 1rem;
}

.client-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: rgba(30, 58, 95, 0.4);
  letter-spacing: -0.02em;
  transition: var(--transition-smooth);
}

@media (min-width: 768px) {
  .client-name {
    font-size: 1.5rem;
  }
}

.client-name:hover {
  color: var(--primary-color);
}

/* ============================================
   SERVICE AREAS SECTION
   ============================================ */
.service-areas {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background-color: var(--primary-color);
  color: white;
}

@media (min-width: 768px) {
  .service-areas {
    padding: 7rem 0;
  }
}

.service-areas::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.8) 1px, transparent 0);
  background-size: 28px 28px;
}

.service-areas-glow-1 {
  position: absolute;
  top: -8rem;
  right: -8rem;
  height: 24rem;
  width: 24rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.3;
  filter: blur(3rem);
  pointer-events: none;
}

.service-areas-glow-2 {
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  height: 24rem;
  width: 24rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.2;
  filter: blur(3rem);
  pointer-events: none;
}

.service-areas-content {
  position: relative;
}

.areas-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  text-transform: uppercase;
}

.service-areas .section-title {
  color: white;
}

.areas-description {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.areas-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.area-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  transition: var(--transition-smooth);
}

.area-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 107, 0, 0.6);
}

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

.area-icon {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-brand);
}

.area-icon svg {
  height: 1.25rem;
  width: 1.25rem;
  color: white;
}

.area-tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  text-transform: uppercase;
}

.area-name {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .area-name {
    font-size: 1.25rem;
  }
}

.area-line {
  margin-top: 0.75rem;
  height: 1px;
  width: 2.5rem;
  background-color: var(--accent-color);
  transition: width 0.5s ease;
}

.area-card:hover .area-line {
  width: 100%;
}

/* ============================================
   BOOKING FORM SECTION
   ============================================ */
.booking {
  padding: 5rem 0;
  background: var(--gradient-section);
}

@media (min-width: 768px) {
  .booking {
    padding: 7rem 0;
  }
}

.booking-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.booking-features {
  margin-top: 1.5rem;
}

.booking-features li {
  color: rgba(26, 35, 50, 0.85);
}

.booking-form-wrapper {
  border-radius: 1.5rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .booking-form-wrapper {
    padding: 2rem;
  }
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--muted-text);
  text-align: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

@media (min-width: 768px) {
  .faq {
    padding: 7rem 0;
  }
}

.faq-container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  text-transform: uppercase;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
  padding: 0 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.faq-item.active {
  box-shadow: var(--shadow-card);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.125rem;
  }
}

.faq-question:hover {
  color: var(--accent-color);
}

.faq-icon {
  height: 1.25rem;
  width: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-answer-text {
  color: var(--muted-text);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 5rem 0;
  background-color: var(--bg-color);
}

@media (min-width: 768px) {
  .contact {
    padding: 7rem 0;
  }
}

.contact-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.contact-card {
  display: flex;
  gap: 1rem;
  border-radius: 1rem;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  flex-shrink: 0;
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-brand);
}

.contact-icon svg {
  height: 1.5rem;
  width: 1.5rem;
  color: white;
}

.contact-label {
  font-weight: 700;
  color: var(--primary-color);
}

.contact-value {
  color: var(--muted-text);
}

.contact-value a {
  color: var(--muted-text);
  transition: var(--transition-smooth);
}

.contact-value a:hover {
  color: var(--accent-color);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.contact-map {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  min-height: 380px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  background-color: white;
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: inline-block;
}

.footer-logo img {
  height: 4rem;
  width: auto;
}

.footer-description {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--accent-glow-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.footer-contact-item svg {
  height: 1rem;
  width: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  color: var(--accent-color);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-keywords {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-copyright {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

.footer-copyright strong {
  font-weight: 700;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
  animation: pulse-ring 2s infinite;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  height: 1.75rem;
  width: 1.75rem;
}

.call-float {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 50;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
  animation: pulse-ring 2s infinite;
  transition: var(--transition-smooth);
}

.call-float:hover {
  transform: scale(1.1);
}

.call-float svg {
  height: 1.5rem;
  width: 1.5rem;
}

/* ============================================
   ICONS (SVG)
   ============================================ */
.icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

/* Fill utility for star icons */
.fill-current {
  fill: currentColor;
}
