

/* ---- CSS Variables ---- */
:root {
  --primary: #c0392b;
  --primary-dark: #a93226;
  --primary-light: #e74c3c;
  --secondary: #2c3e50;
  --accent: #f39c12;
  --bg: #f8f6f3;
  --bg-alt: #f0ede8;
  --surface: #ffffff;
  --surface-raised: #faf9f7;
  --text: #1e2b2f;
  --text-secondary: #5d6d74;
  --text-muted: #8a9aa8;
  --border: #e8e2da;
  --border-light: #f0ebe4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --container: 1280px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* ---- App Container ---- */
.app {
  min-height: 100vh;
  width: 100%;
}

/* ============================================================ */
/* HEADER                                                       */
/* ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.98);
}

.header-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo-wrap {
  position: relative;
}

.logo-image {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(192,57,43,0.2);
  transition: var(--transition);
}

.brand:hover .logo-image {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}

.brand-text {
  line-height: 1.15;
}

.brand-text h1 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.brand-text .tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.2px;
}

.brand-text .highlight {
  color: var(--primary);
  font-weight: 600;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary);
  background: rgba(192,57,43,0.06);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 20px;
}

/* Desktop Contact */
.contact-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.call-btn-header {
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(192,57,43,0.25);
  white-space: nowrap;
}

.call-btn-header:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192,57,43,0.35);
}

.call-btn-header i {
  font-size: 0.8rem;
}

.email-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.78rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
  transition: var(--transition);
  white-space: nowrap;
}

.email-header i {
  color: var(--primary);
  font-size: 0.85rem;
}

.email-header:hover {
  color: var(--primary);
}

/* Mobile Contact (hidden on desktop) */
.nav-contact {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger-line {
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================ */
/* HERO SECTION                                                 */
/* ============================================================ */
.hero-section {
  position: relative;
  padding: 6rem 1.2rem 3rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f2eee9 0%, #e8e2da 50%, #f0ede8 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(192,57,43,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(192,57,43,0.08);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero-text h2 .accent {
  color: var(--primary);
  position: relative;
}

.hero-text h2 .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(192,57,43,0.12);
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.hero-badges span i {
  color: var(--primary);
  font-size: 0.8rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-bounce);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(192,57,43,0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192,57,43,0.4);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn i {
  font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  background: linear-gradient(135deg, rgba(192,57,43,0.08), rgba(243,156,18,0.06));
  border-radius: var(--radius-lg);
  z-index: -1;
  transform: rotate(-2deg);
}

.bus-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.bus-photo:hover {
  transform: scale(1.02) rotate(0.5deg);
}

/* ============================================================ */
/* SECTIONS                                                     */
/* ============================================================ */
.section {
  padding: 4rem 1.2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.section-alt {
  background: var(--bg-alt);
  max-width: 100%;
  padding: 4rem 1.2rem;
}

.section-alt .section-header {
  max-width: var(--container);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.section-title i {
  color: var(--primary);
  font-size: 1.4rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================ */
/* SERVICES                                                     */
/* ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition-bounce);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(192,57,43,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.service-icon i {
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon i {
  color: white;
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.service-card h3 small {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 2px;
}

.service-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.service-card .rate {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* ============================================================ */
/* DESTINATIONS                                                 */
/* ============================================================ */
.destinations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  max-width: 900px;
  margin: 0 auto;
}

.dest-tag {
  background: var(--surface);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-bounce);
  cursor: pointer;
}

.dest-tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(192,57,43,0.25);
  border-color: var(--primary);
}

.dest-tag.more {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

/* ============================================================ */
/* GALLERY                                                      */
/* ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.gallery-label {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

.gallery-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* ============================================================ */
/* FEATURES / WHY CHOOSE US                                     */
/* ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: var(--container);
  margin: 0 auto;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition-bounce);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(192,57,43,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.1) rotate(-3deg);
}

.feature-icon i {
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon i {
  color: white;
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================ */
/* CONTACT                                                      */
/* ============================================================ */
/* ============================================================ */
/* CONTACT SECTION - COMPACT WITH PERFECT ICONS                 */
/* ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem;
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: var(--transition);
}

.contact-card.call::before    { background: linear-gradient(90deg, #2ecc71, #27ae60); }
.contact-card.whatsapp::before { background: linear-gradient(90deg, #25D366, #128C7E); }
.contact-card.email::before   { background: linear-gradient(90deg, #3498db, #2980b9); }

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

/* ---- Icon Container ---- */
.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  position: relative;
  flex-shrink: 0;
}

/* Phone icon */
.contact-card.call .contact-icon {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  box-shadow: 0 4px 14px rgba(46, 204, 113, 0.35);
}

.contact-card.call .contact-icon i {
  color: white;
  font-size: 1.35rem;
  transform: rotate(0deg);
}

/* WhatsApp icon */
.contact-card.whatsapp .contact-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.contact-card.whatsapp .contact-icon i {
  color: white;
  font-size: 1.6rem;
}

/* Email icon */
.contact-card.email .contact-icon {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  box-shadow: 0 4px 14px rgba(52, 152, 219, 0.35);
}

.contact-card.email .contact-icon i {
  color: white;
  font-size: 1.3rem;
}

/* Icon hover lift */
.contact-card:hover .contact-icon {
  transform: scale(1.08) translateY(-2px);
  transition: var(--transition-bounce);
}

/* ---- Text Content ---- */
.contact-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.contact-info p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.7rem;
  word-break: break-word;
  line-height: 1.4;
}

/* ---- Action Link ---- */
.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.contact-action i {
  font-size: 0.65rem;
  transition: var(--transition);
}

.contact-card:hover .contact-action {
  color: var(--primary);
}

.contact-card:hover .contact-action i {
  transform: translateX(3px);
}

/* ============================================================ */
/* CONTACT - TABLET (768px - 1023px)                          */
/* ============================================================ */
@media (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================ */
/* CONTACT - MOBILE (< 768px)                                 */
/* ============================================================ */
@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .contact-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 1rem 1.1rem;
    gap: 1rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }

  .contact-card.call .contact-icon i    { font-size: 1.15rem; }
  .contact-card.whatsapp .contact-icon i  { font-size: 1.35rem; }
  .contact-card.email .contact-icon i     { font-size: 1.1rem; }

  .contact-info h4 {
    font-size: 0.92rem;
  }

  .contact-info p {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }

  .contact-action {
    font-size: 0.7rem;
  }
}

/* ============================================================ */
/* CONTACT - EXTRA SMALL (< 400px)                            */
/* ============================================================ */
@media (max-width: 399px) {
  .contact-card {
    padding: 0.85rem 0.9rem;
    gap: 0.8rem;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .contact-card.call .contact-icon i    { font-size: 1rem; }
  .contact-card.whatsapp .contact-icon i { font-size: 1.2rem; }
  .contact-card.email .contact-icon i   { font-size: 0.95rem; }

  .contact-info h4 {
    font-size: 0.85rem;
  }

  .contact-info p {
    font-size: 0.68rem;
  }

  .contact-action {
    font-size: 0.65rem;
  }
}
/* ============================================================ */
/* FOOTER                                                       */
/* ============================================================ */
.footer {
  background: #1a2634;
  color: #ece8e3;
}

.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem 1.2rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand-col {
  max-width: 280px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--primary);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-about {
  font-size: 0.82rem;
  color: #a8b5c0;
  line-height: 1.7;
}

.footer-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.office h4 {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.office h4 i {
  color: var(--primary);
  font-size: 0.8rem;
}

.office p {
  color: #a8b5c0;
  font-size: 0.8rem;
  line-height: 1.7;
}

.footer-social-col {
  text-align: right;
}

.footer-social-col h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
}

.facebook { background: #1877f2; }
.facebook:hover { box-shadow: 0 4px 12px rgba(24,119,242,0.4); }

.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.instagram:hover { box-shadow: 0 4px 12px rgba(225,48,108,0.4); }

.youtube { background: #ff0000; }
.youtube:hover { box-shadow: 0 4px 12px rgba(255,0,0,0.4); }

.twitter { background: #1da1f2; }
.twitter:hover { box-shadow: 0 4px 12px rgba(29,161,242,0.4); }

.whatsapp { background: #25d366; }
.whatsapp:hover { box-shadow: 0 4px 12px rgba(37,211,102,0.4); }

.footer-safe {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.04);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 1rem;
}

.footer-safe i {
  color: #4ecdc4;
  font-size: 1.1rem;
}

.footer-safe span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #a8b5c0;
}

.footer-safe .dot {
  color: #4ecdc4;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #6a7a88;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-links a {
  color: #6a7a88;
  font-size: 0.75rem;
  transition: var(--transition);
}

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

.footer-links span {
  color: #4a5a68;
}

/* ============================================================ */
/* FLOATING BUTTONS                                             */
/* ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.scroll-top-btn {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  color: white;
  border-radius: var(--radius-full);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139,92,246,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 24px rgba(139,92,246,0.6);
}

.call-float {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(59,130,246,0.4);
  position: relative;
  animation: pulse-blue 2s infinite;
  transition: var(--transition);
}

.call-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(59,130,246,0.6);
}

.call-tooltip {
  position: absolute;
  right: 62px;
  background: var(--text);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.call-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--text);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.call-float:hover .call-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-5px);
}

.whatsapp-float {
  width: 52px;
  height: 52px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  animation: pulse-green 2s infinite;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.6);
}

@keyframes pulse-blue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(59,130,246,0); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

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

/* ============================================================ */
/* GALLERY MODAL                                                */
/* ============================================================ */
.gallery-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.gallery-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.gallery-modal-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255,255,255,0.1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================ */
/* RESPONSIVE - TABLET (768px - 1023px)                       */
/* ============================================================ */
@media (max-width: 1023px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text h2 {
    font-size: 2.4rem;
  }

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

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

  .hero-visual {
    order: -1;
  }

  .hero-image-wrap {
    max-width: 400px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1.5fr;
  }

  .footer-social-col {
    grid-column: 1 / -1;
    text-align: center;
  }

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

/* ============================================================ */
/* RESPONSIVE - MOBILE (< 768px)                              */
/* ============================================================ */
@media (max-width: 767px) {
  /* Header */
  .header-container {
    padding: 0.5rem 1rem;
  }

  .brand-text h1 {
    font-size: 1rem;
  }

  .brand-text .tagline {
    display: none;
  }

  .logo-image {
    width: 38px;
    height: 38px;
  }

  .contact-header {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 1.5rem 2rem;
    gap: 1.5rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
  }

  .nav-links li a {
    font-size: 1.05rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
  }

  .nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
  }

  .nav-call-btn,
  .nav-email-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
  }

  .nav-call-btn {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 10px rgba(192,57,43,0.25);
  }

  .nav-call-btn:hover {
    background: var(--primary-dark);
  }

  .nav-email-btn {
    background: var(--bg-alt);
    color: var(--text);
    border: 1px solid var(--border);
  }

  .nav-email-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
  }

  /* Hero */
  .hero-section {
    padding: 5rem 1rem 2rem;
    min-height: auto;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .hero-badges {
    gap: 0.4rem;
  }

  .hero-badges span {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }

  .btn {
    justify-content: center;
    padding: 0.75rem 1.2rem;
  }

  .hero-image-wrap {
    max-width: 300px;
  }

  /* Sections */
  .section {
    padding: 2.5rem 1rem;
  }

  .section-alt {
    padding: 2.5rem 1rem;
  }

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

  .section-desc {
    font-size: 0.88rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  .service-card {
    padding: 1.2rem 0.6rem;
  }

  .service-card.wide {
    grid-column: span 1;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-icon i {
    font-size: 1.1rem;
  }

  .service-card h3 {
    font-size: 0.82rem;
  }

  .service-card h3 small {
    font-size: 0.68rem;
  }

  .service-card .rate {
    font-size: 0.68rem;
    padding: 0.15rem 0.6rem;
  }

  /* Destinations */
  .destinations {
    gap: 0.5rem;
  }

  .dest-tag {
    font-size: 0.78rem;
    padding: 0.4rem 1rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    padding: 0.8rem;
  }

  .gallery-label {
    font-size: 0.85rem;
  }

  .gallery-desc {
    font-size: 0.7rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .feature-card {
    padding: 1.2rem 0.8rem;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-icon i {
    font-size: 1.2rem;
  }

  .feature-card h4 {
    font-size: 0.9rem;
  }

  .feature-card p {
    font-size: 0.72rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .contact-card {
    flex-direction: row;
    text-align: left;
    padding: 1.2rem;
    gap: 1rem;
    align-items: flex-start;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .contact-card h4 {
    font-size: 0.95rem;
  }

  .contact-card p {
    font-size: 0.78rem;
    margin-bottom: 0.4rem;
  }

  .contact-action {
    font-size: 0.7rem;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 2rem 1rem 1.5rem;
  }

  .footer-brand-col {
    max-width: 100%;
  }

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

  .footer-offices {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .office h4 {
    justify-content: center;
  }

  .footer-social-col {
    text-align: center;
  }

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

  .footer-safe {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    margin: 0.5rem 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Floating buttons */
  .floating-buttons {
    bottom: 14px;
    right: 14px;
    gap: 10px;
  }

  .scroll-top-btn {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .call-float {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .call-tooltip {
    display: none;
  }

  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

/* ============================================================ */
/* EXTRA SMALL PHONES (< 400px)                               */
/* ============================================================ */
@media (max-width: 399px) {
  .brand-text h1 {
    font-size: 0.9rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .service-card {
    padding: 1rem 0.4rem;
    border-radius: var(--radius);
  }

  .service-icon {
    width: 38px;
    height: 38px;
  }

  .service-icon i {
    font-size: 1rem;
  }

  .service-card h3 {
    font-size: 0.72rem;
  }

  .service-card .rate {
    font-size: 0.6rem;
  }

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

  .dest-tag {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }

  .feature-card {
    padding: 1rem 0.5rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon i {
    font-size: 1rem;
  }

  .feature-card h4 {
    font-size: 0.8rem;
  }

  .feature-card p {
    font-size: 0.65rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .contact-card {
    padding: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .floating-buttons {
    bottom: 10px;
    right: 10px;
    gap: 8px;
  }

  .scroll-top-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .call-float {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .whatsapp-float {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
