:root {
      /* Color Palette */
      --black: #0a0a0a;
      --charcoal: #121212;
      --dark-gray: #1e1e1e;
      --medium-gray: #2a2a2a;
      --light-gray: #f5f5f5;
      --white: #ffffff;
      --accent: #3D721A; /* Subtle gold accent */
      --accent-hover: #2f5913;
      
      /* Typography */
      --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
      --text-base: 16px;
      --text-scale: 1.125;
      
      /* Spacing */
      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 2rem;
      --space-lg: 4rem;
      --space-xl: 6rem;
      --space-xxl: 8rem;
      
      /* Transitions & Animations */
      --transition-fast: 150ms ease;
      --transition-base: 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --transition-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);
      
      /* Layout */
      --container-width: 1200px;
      --header-height: 80px;
      --border-radius: 4px;
      --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
      --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
      --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      font-size: var(--text-base);
    }

    body {
      font-family: var(--font-primary);
      background-color: var(--black);
      color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ===== UTILITIES ===== */
    .container {
      width: 100%;
      max-width: var(--container-width);
      margin: 0 auto;
      padding: 0 var(--space-sm);
    }

    .section {
      padding: var(--space-xl) 0;
      position: relative;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: var(--space-md);
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, var(--white), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--accent);
      border-radius: 2px;
    }

    .section-subtitle {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.85);
      max-width: 650px;
      margin-bottom: var(--space-lg);
      line-height: 1.7;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 32px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border-radius: var(--border-radius);
      cursor: pointer;
      transition: all var(--transition-base);
      border: none;
      position: relative;
      overflow: hidden;
      z-index: 1;
      letter-spacing: 0.3px;
    }

    .btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--accent);
      z-index: -1;
      transition: transform var(--transition-base);
      transform-origin: left;
      transform: scaleX(0);
    }

    .btn:hover::after {
      transform: scaleX(1);
    }

    .btn-primary {
      background: transparent;
      color: var(--white);
      border: 1px solid var(--white);
    }

    .btn-primary:hover {
      color: var(--black);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.3);
      margin-left: var(--space-sm);
    }

    .btn-secondary:hover {
      border-color: var(--white);
      transform: translateY(-2px);
    }

    .btn-accent {
      background: var(--accent);
      color: var(--black);
      font-weight: 700;
    }

    .btn-accent:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .text-center { text-align: center; }
    .mb-md { margin-bottom: var(--space-md); }
    .mb-lg { margin-bottom: var(--space-lg); }

    /* ===== HEADER & NAV ===== */
    .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1002;
}

.logo span {
  color: var(--accent);
}

.logo img{
  height: 150px;
}

/* Menu Toggle Button */
.menu-toggle {
  background: none;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1002;
  position: relative;
}

.menu-toggle:hover,
.menu-toggle.active {
  border-color: var(--accent);
  background: rgba(201,167,124,0.1);
  transform: scale(1.05);
}

.menu-toggle i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.menu-toggle.active i.fa-bars {
  opacity: 0;
  transform: rotate(90deg);
}

.menu-toggle.active i.fa-times {
  opacity: 1;
  transform: rotate(0);
}

.menu-toggle i.fa-times {
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}

/* Dropdown Menu Panel */
.menu-panel {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--charcoal);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
  box-shadow: -10px 0 50px rgba(0,0,0,0.4);
  overflow-y: auto;
}

.menu-panel.active {
  right: 0;
}

.menu-panel .nav-link {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.menu-panel .nav-link:hover {
  color: var(--accent);
  padding-left: 8px;
}

.menu-panel .nav-link::after {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.2s ease;
  color: var(--accent);
}

.menu-panel .nav-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* CTA Button in Menu */
.menu-cta {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.menu-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.1rem;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close button inside panel */
.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.menu-close:hover {
  background: rgba(255,255,255,0.1);
}

    /* ===== HERO SECTION ===== */
    .hero {
      height: 100vh;
      min-height: 700px;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: var(--header-height);
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.85;
      z-index: -2;
    }

    .hero-bg img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(ellipse at bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.95) 100%);
      z-index: -1;
    }

    .hero-content {
      max-width: 700px;
      padding-top: var(--space-lg);
      animation: fadeInUp 1s ease-out;
    }

    .hero-title {
      font-size: clamp(2.5rem, 7vw, 5rem);
      font-weight: 800;
      line-height: 1.05;
      margin-bottom: var(--space-sm);
      letter-spacing: -0.03em;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: textReveal 1.2s ease-out;
    }

    .hero-subtitle {
      font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      font-weight: 300;
      margin-bottom: var(--space-md);
      opacity: 0.95;
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero-text {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: var(--space-lg);
      max-width: 600px;
      line-height: 1.8;
      animation: fadeInUp 1s ease-out 0.4s both;
    }

    .hero-cta {
      display: flex;
      gap: var(--space-sm);
      animation: fadeInUp 1s ease-out 0.6s both;
    }

    /* ===== ABOUT SECTION ===== */
    .about {
      background: var(--charcoal);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-lg);
      align-items: center;
    }

    .about-content {
      max-width: 650px;
    }

    .about-text {
      color: rgba(255,255,255,0.85);
      margin-bottom: var(--space-md);
      line-height: 1.8;
    }

    .about-list {
      list-style: none;
      margin: var(--space-md) 0;
    }

    .about-list li {
      padding-left: 28px;
      position: relative;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .about-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: bold;
    }

    .about-highlight {
      font-weight: 600;
      color: var(--white);
      display: block;
      margin-top: var(--space-sm);
      font-size: 1.1rem;
    }

    .about-image {
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
      height: 450px;
      background: linear-gradient(45deg, var(--dark-gray), var(--medium-gray));
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.3);
      font-weight: 500;
    }

    .about-image img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .about-image:hover::before {
      transform: scale(1.05);
    }
    /* ===== IMAGES FULL SECTION ===== */

    .img-section img{
      width: 100%;
    }

    /* ===== EXPERIENCE SECTION ===== */
    .experience {
      background: var(--black);
      position: relative;
      overflow: hidden;
    }

    .experience::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 70%;
      height: 150%;
      background: radial-gradient(circle, rgba(201,167,124,0.08) 0%, transparent 70%);
      z-index: 0;
      pointer-events: none;
    }

    .experience-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-lg);
      position: relative;
      z-index: 1;
    }

    .experience-content {
      max-width: 650px;
    }

    .experience-text {
      color: rgba(255,255,255,0.85);
      margin-bottom: var(--space-lg);
      line-height: 1.8;
      font-size: 1.1rem;
    }

    .gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 520px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--dark-gray);
}

/* Imagen de fondo para cada item */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease;
  filter: brightness(0.85) contrast(1.05);
}

/* Hover cinematográfico */
    .gallery-item:hover::before {
      transform: scale(1.04);
      filter: brightness(1) contrast(1);
}

    .gallery-item:hover::before {
          transform: scale(1.1);
}

    .gallery-item img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    /* ===== SERVICES SECTION ===== */
    .services {
      background: var(--charcoal);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }

    .service-card {
      background: var(--dark-gray);
      border-radius: var(--border-radius);
      padding: var(--space-md);
      transition: all var(--transition-base);
      border: 1px solid rgba(255,255,255,0.05);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: var(--accent);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform var(--transition-base);
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
      border-color: rgba(201,167,124,0.3);
    }

    .service-card:hover::before {
      transform: scaleY(1);
    }

    .service-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: var(--space-xs);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .service-title i {
      color: var(--accent);
      font-size: 1.2rem;
    }

    .service-desc {
      color: rgba(255,255,255,0.8);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .services-cta {
      text-align: center;
      margin-top: var(--space-lg);
    }

    /* ===== PRODUCTS CAROUSEL SECTION ===== */
/* ===== PRODUCTS CAROUSEL - SOLO IMÁGENES ===== */
.products-carousel {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.products-carousel::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(201,167,124,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: var(--space-lg) 0 var(--space-sm);
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 16px;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 11px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.8) saturate(0.9);
}

.carousel-slide:hover .product-img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

/* Hover overlay */
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.5) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.carousel-slide:hover::after {
  opacity: 1;
}

/* Navigation Buttons */
.carousel-btn {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
  font-size: 1rem;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  transform: scale(1.08);
}

.carousel-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-sm);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.carousel-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 8px);
  }
  .carousel-wrapper {
    gap: 12px;
  }
  .carousel-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
}

@media (max-width: 767px) {
  .carousel-slide {
    flex: 0 0 100%;
  }
  .carousel-btn {
    display: none;
  }
  .carousel-wrapper {
    gap: 0;
    padding: 0 4px;
  }
  .carousel-track {
    gap: 12px;
  }
}

    /* ===== TEAM SECTION ===== */
    .team {
      background: var(--black);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: var(--space-lg);
      margin-top: var(--space-lg);
    }

    .team-card {
      background: var(--dark-gray);
      border-radius: var(--border-radius);
      overflow: hidden;
      transition: transform var(--transition-base);
      text-align: center;
      border: 1px solid rgba(255,255,255,0.05);
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    .team-image {
      height: 500px;
      position: relative;
      overflow: hidden;
    }

    .team-image img{
      width: 100%;
      overflow: hidden;
    }

    .team-card:hover .team-image::before {
      transform: scale(1.05);
    }

    .team-info {
      padding: var(--space-md);
    }

    .team-name {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .team-role {
      color: var(--accent);
      font-weight: 500;
      margin-bottom: var(--space-xs);
      display: block;
    }

    /* ===== BOOKING SECTION ===== */
    .booking {
      background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
      position: relative;
      overflow: hidden;
    }

    .booking::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 60%;
      height: 100%;
      background: radial-gradient(circle, rgba(201,167,124,0.07) 0%, transparent 70%);
      z-index: 0;
      pointer-events: none;
    }

    .booking-content {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .booking-text {
      color: rgba(255,255,255,0.85);
      margin: var(--space-md) 0 var(--space-lg);
      line-height: 1.8;
      font-size: 1.1rem;
    }

    .booking-info {
      background: rgba(30,30,30,0.7);
      border-radius: var(--border-radius);
      padding: var(--space-md);
      margin: var(--space-lg) 0;
      border: 1px solid rgba(255,255,255,0.1);
      display: inline-block;
      min-width: 280px;
    }

    .booking-info p {
      margin: 8px 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-weight: 500;
    }

    .booking-info i {
      color: var(--accent);
      font-size: 1.1rem;
    }

    .booking-cta {
      display: flex;
      justify-content: center;
      gap: var(--space-sm);
      flex-wrap: wrap;
    }

    /* ===== TESTIMONIALS SECTION ===== */
    .testimonials {
      background: var(--charcoal);
      position: relative;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }

    .testimonial-card {
      background: var(--dark-gray);
      border-radius: var(--border-radius);
      padding: var(--space-md);
      border-left: 3px solid var(--accent);
      position: relative;
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 16px;
      font-size: 5rem;
      color: rgba(201,167,124,0.15);
      font-family: Georgia, serif;
      line-height: 1;
    }

    .testimonial-text {
      font-style: italic;
      color: rgba(255,255,255,0.9);
      margin-bottom: var(--space-sm);
      position: relative;
      z-index: 1;
      line-height: 1.7;
    }

    .testimonial-author {
      font-weight: 600;
      color: var(--accent);
      font-size: 0.95rem;
    }

    /* ===== CAREERS SECTION ===== */
    .careers {
      background: var(--black);
      text-align: center;
    }

    .careers-content {
      max-width: 700px;
      margin: 0 auto;
    }

    .careers-text {
      color: rgba(255,255,255,0.85);
      margin: var(--space-md) 0 var(--space-lg);
      line-height: 1.8;
      font-size: 1.1rem;
    }

    .careers-list {
      display: flex;
      justify-content: center;
      gap: var(--space-lg);
      margin: var(--space-lg) 0;
      flex-wrap: wrap;
    }

    .careers-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 120px;
    }

    .careers-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(201,167,124,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-sm);
      color: var(--accent);
      font-size: 1.4rem;
      font-weight: bold;
    }

    .careers-label {
      font-weight: 500;
      color: rgba(255,255,255,0.9);
    }

    /* ===== CONTACT SECTION ===== */
    .contact {
      background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
      text-align: center;
    }

    .contact-content {
      max-width: 650px;
      margin: 0 auto;
    }

    .contact-info {
      margin: var(--space-lg) 0;
      text-align: left;
      display: inline-block;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: var(--space-sm);
      color: rgba(255,255,255,0.85);
      font-size: 1.05rem;
    }

    .contact-item i {
      color: var(--accent);
      font-size: 1.3rem;
      min-width: 24px;
      margin-top: 4px;
    }

    .contact-cta {
      display: flex;
      justify-content: center;
      gap: var(--space-sm);
      flex-wrap: wrap;
      margin-top: var(--space-md);
    }

    /* ===== FLOATING ELEMENTS ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #25D366;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      box-shadow: var(--shadow-lg);
      z-index: 999;
      text-decoration: none;
      transition: all var(--transition-base);
      animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1) translateY(-3px);
      box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
      animation: none;
    }

    .cta-sticky {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 998;
      display: none;
      animation: slideUp 0.4s ease-out;
    }

    .cta-sticky.visible {
      display: block;
    }

    .cta-sticky .btn {
      padding: 14px 28px;
      font-size: 0.95rem;
      box-shadow: var(--shadow-lg);
    }

    .pr-link{
      color: white;
      transition: .5s ease;
      text-decoration: none;
    }

    .pr-link:hover{
      color: #E53342;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes textReveal {
      from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
      70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== RESPONSIVE DESIGN ===== */
    @media (min-width: 768px) {
      :root {
        --text-base: 17px;
      }
      
      .section {
        padding: var(--space-xxl) 0;
      }
      
      .about-grid,
      .experience-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
      }
      
      .about-image {
        height: 500px;
      }
      
      .gallery {
        height: 440px;
        gap: 12px;
      }
      
      .booking-info {
        min-width: 350px;
      }
    }

    @media (min-width: 1024px) {
      .nav {
        display: flex !important;
      }
      
      .mobile-toggle {
        display: none !important;
      }
      
      .header-cta .btn-secondary {
        display: inline-flex;
      }
      
      .hero-title {
        font-size: clamp(3.5rem, 6vw, 6rem);
      }
      
      .section-title {
        font-size: clamp(2.5rem, 4vw, 4rem);
      }
    }

    @media (max-width: 767px) {
      .header {
        padding: 12px 0;
      }
      
      .header.scrolled {
        padding: 10px 0;
      }

      .logo img{
        height: 100px;
      }
      
      .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--charcoal);
        flex-direction: column;
        padding: var(--space-lg) var(--space-sm);
        gap: var(--space-md);
        transform: translateY(-150%);
        transition: transform var(--transition-base);
        z-index: 999;
        box-shadow: var(--shadow-md);
      }
      
      .nav.active {
        transform: translateY(0);
      }
      
      .nav-link {
        font-size: 1.2rem;
        padding: 12px 0;
        width: 100%;
        text-align: center;
      }
      
      .header-cta {
        display: none;
      }
      
      .mobile-toggle {
        display: block;
      }
      
      .hero-cta {
        flex-direction: column;
        align-items: flex-start;
      }
      
      .btn-secondary {
        margin-left: 0;
        margin-top: var(--space-sm);
      }
      
      .booking-cta,
      .contact-cta {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 100%;
        max-width: 320px;
      }
      
      .cta-sticky {
        width: 90%;
        max-width: 400px;
      }
      
      .cta-sticky .btn {
        width: 100%;
      }
      
      .careers-list {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
      }
    }

    /* ===== SCROLL PROGRESS INDICATOR ===== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: var(--accent);
      width: 0%;
      z-index: 1001;
      transition: width 0.1s ease;
    }