/* ===== CSS Variables ===== */
  :root {
    /* Primary - Professional Blue */
    --primary: hsl(221, 83%, 53%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    /* Background */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222, 47%, 11%);
    
    /* Card */
    --card: hsl(0, 0%, 98%);
    --card-foreground: hsl(222, 47%, 11%);
    
    /* Secondary */
    --secondary: hsl(220, 14%, 96%);
    --secondary-foreground: hsl(222, 47%, 11%);
    
    /* Muted */
    --muted: hsl(220, 14%, 96%);
    --muted-foreground: hsl(220, 9%, 46%);
    
    /* Accent - Coral */
    --accent: hsl(24, 95%, 53%);
    --accent-foreground: hsl(0, 0%, 100%);
    
    /* Border */
    --border: hsl(220, 13%, 91%);
    
    /* Hero Background */
    --hero-bg: hsl(220, 14%, 96%);
    
    /* Gradients */
    --promo-gradient: linear-gradient(135deg, hsl(24, 95%, 53%) 0%, hsl(0, 84%, 60%) 100%);
    --blue-gradient: linear-gradient(135deg, hsl(221, 83%, 53%) 0%, hsl(221, 83%, 40%) 100%);
    
    /* Radius */
    --radius: 0.75rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  /* ===== Reset & Base ===== */
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    list-style: none;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  button {
    cursor: pointer;
    border: none;
    font-family: inherit;
  }

  /* ===== Container ===== */
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* ===== Buttons ===== */
  .btn-primary {
    background: var(--blue-gradient);
    color: var(--primary-foreground);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .btn-primary:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: var(--primary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    transition: all 0.3s ease;
  }

  .btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }

  .btn-service {
    width: 100%;
    justify-content: center;
  }

  /* ===== Header ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
  }

  .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .logo img {
      width: 90px;
      height: auto;
  }

  .logo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 1.125rem;
  }

  .logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
  }

  .nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
  }

  .nav-link {
    color: var(--foreground);
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    color: var(--primary);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
  }

  .hamburger {
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    position: relative;
    transition: all 0.3s ease;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
  }

  .hamburger::before {
    top: -6px;
  }

  .hamburger::after {
    top: 6px;
  }

  .hamburger.active {
    background: transparent;
  }

  .hamburger.active::before {
    top: 0;
    transform: rotate(45deg);
  }

  .hamburger.active::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem 1.5rem;
    background: var(--background);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
  }

  .nav-mobile.active {
    display: flex;
  }

  .nav-mobile .nav-link {
    padding: 0.5rem 0;
  }

  .nav-mobile .btn-primary {
    margin-top: 0.5rem;
  }

  @media (min-width: 768px) {
    .nav-desktop {
      display: flex;
    }
    
    .mobile-menu-btn {
      display: none;
    }
    
    .logo-text {
      display: block;
    }
  }

  @media (max-width: 640px) {
    .logo-text {
      display: none;
    }
  }

  /* ===== Hero Section ===== */
  .hero {
    min-height: 100vh;
    background: var(--hero-bg);
    display: flex;
    align-items: center;
    padding-top: 5rem;
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }

  .hero-left {
    animation: slideInLeft 0.6s ease-out;
  }

  .promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--promo-gradient);
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-top: 1.5rem;
  }

  .text-primary {
    color: var(--primary);
  }

  .hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 28rem;
    margin-top: 1.5rem;
    line-height: 1.7;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .trust-item {
    text-align: center;
  }

  .trust-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
  }

  .trust-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }

  .trust-divider {
    width: 1px;
    height: 3rem;
    background: var(--border);
  }

  .hero-right {
    position: relative;
    animation: slideInRight 0.6s ease-out;
  }

  .hero-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
  }

  .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  }

  .floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--background);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    display: none;
    align-items: center;
    gap: 0.75rem;
  }

  .floating-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
  }

  .floating-title {
    font-weight: 600;
  }

  .floating-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
  }

  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
    }
  }

  @media (min-width: 1024px) {
    .hero-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .hero-image {
      height: 600px;
    }
    
    .floating-card {
      display: flex;
    }
  }

  /* ===== Special Offer Section ===== */
  .special-offer {
    padding: 3rem 0;
    background: var(--background);
  }

  .special-offer-banner {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 240px;
    background-image:
      radial-gradient(ellipse 60% 80% at 50% 30%, rgba(120, 180, 255, 0.25) 0%, transparent 70%),
      linear-gradient(135deg, hsl(216, 90%, 28%) 0%, hsl(213, 85%, 42%) 50%, hsl(210, 80%, 55%) 100%);
    box-shadow: 0 20px 60px rgba(10, 50, 130, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    animation: offerEntrance 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes offerEntrance {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .special-offer-banner:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 80px rgba(10, 50, 130, 0.55);
  }

  /* ---- LEFT side ---- */
  .offer-left {
    position: relative;
    z-index: 2;
    padding: 2.5rem 2rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
  }

  .offer-mega-tag {
    display: inline-block;
    background: hsl(50, 100%, 50%);
    color: hsl(222, 47%, 8%);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(0.7rem, 1.8vw, 1rem);
    padding: 0.25rem 0.9rem;
    border-radius: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: fit-content;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  }

  .offer-headline {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    margin-top: 0.3rem;
  }

  .offer-special {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
  }

  .offer-offer {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
  }

  .offer-weekend {
    font-family: 'Poppins', sans-serif;
    color: rgba(255,255,255,0.8);
    font-size: clamp(0.75rem, 1.6vw, 1.05rem);
    font-weight: 400;
    margin-top: 0.5rem;
    font-style: italic;
  }

  .btn-shop-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: hsl(50, 100%, 50%);
    color: hsl(222, 47%, 8%);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    padding: 0.55rem 1.8rem;
    border-radius: 9999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
    margin-top: 1rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
    text-decoration: none;
  }

  .btn-shop-now:hover {
    background: hsl(50, 100%, 65%);
    transform: scale(1.07);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  }

  /* ---- RIGHT side ---- */
  .offer-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 3rem 2rem 1rem;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .offer-big-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 12vw, 9rem);
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.25);
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
  }

  .offer-percent-inline {
    font-size: 0.55em;
    vertical-align: super;
    line-height: 0;
  }

  .offer-percent-badge {
    background: hsl(50, 100%, 50%);
    color: hsl(213, 85%, 42%);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 3vw, 2rem);
    width: clamp(3rem, 7vw, 5.5rem);
    height: clamp(3rem, 7vw, 5.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    animation: badgeFloat 3s ease-in-out infinite;
  }

  .offer-percent-badge--left {
    transform: rotate(-15deg) translateY(-10px);
    animation-delay: 0s;
  }

  .offer-percent-badge--right {
    transform: rotate(12deg) translateY(5px);
    animation-delay: 0.5s;
  }

  @keyframes badgeFloat {
    0%, 100% { transform: rotate(-15deg) translateY(-10px); }
    50%       { transform: rotate(-15deg) translateY(-18px); }
  }

  @keyframes badgeFloatRight {
    0%, 100% { transform: rotate(12deg) translateY(5px); }
    50%       { transform: rotate(12deg) translateY(-3px); }
  }

  .offer-percent-badge--right {
    animation-name: badgeFloatRight;
  }

  .offer-pedestal {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(100px, 25vw, 200px);
    height: clamp(30px, 5vw, 55px);
    background: rgba(120, 180, 255, 0.2);
    border-radius: 50%;
    filter: blur(2px);
    z-index: 1;
  }

  .offer-sparkle {
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    pointer-events: none;
    animation: sparkleAnim 2s ease-in-out infinite;
    z-index: 1;
  }

  .offer-sparkle--1 {
    top: 15%;
    right: 48%;
    font-size: 1.2rem;
    animation-delay: 0.3s;
  }

  .offer-sparkle--2 {
    bottom: 20%;
    right: 46%;
    font-size: 0.8rem;
    animation-delay: 1s;
  }

  @keyframes sparkleAnim {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    50%       { opacity: 1;   transform: scale(1.4) rotate(20deg); }
  }

  @media (max-width: 640px) {
    .special-offer {
      padding: 1.5rem 0;
    }
    .special-offer-banner {
      min-height: 180px;
      border-radius: 1rem;
    }
    .offer-left {
      padding: 1.5rem 0.5rem 1.5rem 1.5rem;
    }
    .offer-right {
      padding: 1rem 1.5rem 1rem 0;
      gap: 0.25rem;
    }
    .offer-pedestal {
      display: none;
    }
  }

  @media (min-width: 1024px) {
    .special-offer-banner {
      min-height: 300px;
    }
  }

  /* ===== About Section ===== */
  .about {
    padding: 6rem 0;
    background: var(--background);
  }

  .about-header,
  .services-header,
  .gallery-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .section-label {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-top: 0.5rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 1rem auto 0;
  }

  .about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
  }

  .checkmarks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .checkmark-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
  }

  .checkmark-item svg {
    color: var(--primary);
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
  }

  .feature-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
  }

  .feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
  }

  .feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: scale(1.1);
  }

  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .feature-description {
    color: var(--muted-foreground);
  }

  @media (min-width: 768px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* ===== Services Section ===== */
  .services {
    padding: 6rem 0;
    background: var(--secondary);
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .service-card {
    background: var(--background);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
  }

  .service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
  }

  .service-card:hover .service-icon {
    background: var(--primary);
    color: var(--primary-foreground);
  }

  .service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .service-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    flex-grow: 1;
  }

  @media (min-width: 640px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* ===== Gallery Section ===== */
  .gallery {
    padding: 6rem 0;
    background: var(--background);
  }

  .carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
  }

  .carousel-main {
    position: relative;
    width: 100%;
    max-width: 56rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }

  .carousel-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: opacity 0.3s ease;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 10;
  }

  .carousel-btn:hover {
    background: white;
    box-shadow: var(--shadow-xl);
    transform: translateY(-50%) scale(1.1);
  }

  .carousel-prev {
    left: 1rem;
  }

  .carousel-next {
    right: 1rem;
  }

  .carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }

  .thumbnail {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .thumbnail:hover {
    opacity: 0.8;
  }

  .thumbnail.active {
    opacity: 1;
    border-color: var(--primary);
  }

  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (min-width: 640px) {
    .carousel-image {
      height: 400px;
    }
    
    .thumbnail {
      width: 5rem;
      height: 5rem;
    }
  }

  @media (min-width: 1024px) {
    .carousel-image {
      height: 500px;
    }
  }

  /* ===== Footer ===== */
  .footer {
    background: var(--foreground);
    color: var(--background);
    padding: 4rem 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .logo-icon-footer {
    background: var(--primary);
  }

  .logo-text-footer {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: var(--background);
  }

  .footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-size: 0.875rem;
  }

  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }

  .social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
  }

  .social-link:hover {
    color: var(--primary);
  }

  .footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: var(--primary);
  }

  .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
  }

  .footer-contact svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    padding: 2rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
  }

  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
  }

  /* ===== Animations ===== */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
  }

  .animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
  }

  .animate-slide-in-left {
    animation: slideInLeft 0.6s ease-out forwards;
  }

  .animate-slide-in-right {
    animation: slideInRight 0.6s ease-out forwards;
  }

  /* ---- Service dual buttons: Email + WhatsApp ---- */
  .service-buttons {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
  }

  .btn-book {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.6rem 0.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  /* Email button — blue outline style */
  .btn-email {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
  }

  .btn-email:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  }

  /* WhatsApp button — solid green */
  .btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: 2px solid #25D366;
  }

  .btn-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  }

  /* ---- Special Offer: dual contact buttons (Email + WhatsApp) ---- */
  .offer-contact-buttons {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.1rem;
    flex-wrap: wrap;
  }

  .btn-offer-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: clamp(0.65rem, 1.4vw, 0.85rem);
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  }

  /* Email — yellow to match the banner palette */
  .btn-offer-email {
    background: hsl(50, 100%, 50%);
    color: hsl(222, 47%, 8%);
    border: 2px solid hsl(50, 100%, 50%);
  }

  .btn-offer-email:hover {
    background: hsl(50, 100%, 65%);
    border-color: hsl(50, 100%, 65%);
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  }

  /* WhatsApp — green */
  .btn-offer-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: 2px solid #25D366;
  }

  .btn-offer-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  }

  @media (max-width: 480px) {
    .offer-contact-buttons {
      flex-direction: column;
      gap: 0.5rem;
    }
    .btn-offer-action {
      width: 100%;
    }
  }

  /* ===== CONTACT MODAL ===== */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .modal-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .modal-box {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-overlay.active .modal-box {
    transform: translateY(0);
  }
  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background: var(--secondary);
    color: var(--foreground);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s;
  }
  .modal-close:hover { background: var(--border); }
  .modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .modal-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(37,99,235,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 0.75rem;
  }
  .modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--foreground);
    font-family: 'Playfair Display', serif;
  }
  .modal-subtitle {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }

  /* ===== SHARED FORM STYLES ===== */
  .contact-form,
  .contact-form-inline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--foreground);
  }
  .form-group input,
  .form-group textarea {
    padding: 0.65rem 0.9rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--foreground);
    transition: border-color 0.2s;
    outline: none;
    background: #fff;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--primary);
  }
  .form-group textarea { resize: vertical; }
  .btn-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--blue-gradient);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.25s ease;
    margin-top: 0.5rem;
  }
  .btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
  }
  .btn-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  /* ===== CONTACT SECTION ===== */
  .contact-section {
    padding: 6rem 0;
    background: var(--secondary);
  }
  .contact-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
  }
  @media (min-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr 1.4fr;
    }
  }
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .contact-info-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(37,99,235,0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
  }
  .contact-info-label {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    font-weight: 500;
    margin-bottom: 0.15rem;
  }
  .contact-info-value {
    font-weight: 600;
    color: var(--foreground);
    font-size: 0.95rem;
    text-decoration: none;
  }
  .contact-info-value:hover { color: var(--primary); }
  .btn-whatsapp-big {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37,211,102,0.35);
    transition: all 0.25s ease;
    width: fit-content;
    margin-top: 0.5rem;
  }
  .btn-whatsapp-big:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
  }
  .contact-form-wrap {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
  }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--foreground);
    color: var(--background);
    padding: 4rem 0 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
  }
  .footer-logo {
    margin-bottom: 1rem;
  }
  .logo-icon-footer {
    background: var(--primary);
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
  }
  .logo-text-footer {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: #fff;
  }
  .footer-description {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 0.75rem;
  }
  .social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .social-link {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
  }
  .social-link:hover { color: #25D366; }
  .footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #fff;
  }
  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--primary); }
  .footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
  }
  .footer-contact li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
  }


  /* ===== CONTACT MODAL ===== */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .modal-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  .modal-box {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    width: 100%;
    max-width: 460px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    transform: translateY(24px);
    transition: transform 0.3s ease;
    max-height: 92vh;
    overflow-y: auto;
  }
  .modal-overlay.active .modal-box { transform: translateY(0); }
  .modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 2rem; height: 2rem;
    border-radius: 50%;
    border: none;
    background: var(--secondary);
    color: var(--foreground);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
    transition: background 0.2s;
  }
  .modal-close:hover { background: var(--border); }
  .modal-header { text-align: center; margin-bottom: 1.5rem; }
  .modal-icon {
    width: 3.5rem; height: 3.5rem;
    background: rgba(37,99,235,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    margin: 0 auto 0.75rem;
  }
  .modal-title {
    font-size: 1.35rem; font-weight: 700;
    color: var(--foreground);
    font-family: 'Playfair Display', serif;
  }
  .modal-subtitle { color: var(--muted-foreground); font-size: 0.88rem; margin-top: 0.2rem; }

  /* ===== FORM STYLES ===== */
  .contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.3rem; }
  .form-group label { font-size: 0.85rem; font-weight: 600; color: var(--foreground); }
  .form-group input,
  .form-group textarea {
    padding: 0.65rem 0.9rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--foreground);
    transition: border-color 0.2s;
    outline: none;
    background: #fff;
  }
  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--primary); }
  .form-group textarea { resize: vertical; }
  .btn-form-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: var(--blue-gradient);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    border: none; cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.25s ease;
    margin-top: 0.5rem;
  }
  .btn-form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
  .btn-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .form-success {
    display: none;
    color: #16a34a;
    text-align: center;
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
  }

  /* ===== FOOTER EXTRA ===== */
  .logo-icon-footer {
    width: 2.5rem; height: 2.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 700; font-size: 0.85rem;
    flex-shrink: 0;
  }
  .logo-text-footer {
    font-size: 1.1rem; font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: #fff;
  }
  .btn-footer-contact {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 0.85rem;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius);
    border: none; cursor: pointer;
    margin-top: 1.25rem;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-md);
  }
  .btn-footer-contact:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
  /* ===== Service Areas (Hero) ===== */
  .service-areas {
    margin-top: 1.75rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem 1rem 1.5rem;
    display: inline-block;
    box-shadow: var(--shadow-md);
  }

  .service-areas-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 0.65rem;
  }

  .service-areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .service-areas-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
  }

  .area-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
  }

  @media (max-width: 480px) {
    .service-areas-list {
      grid-template-columns: 1fr;
    }
  }
  /* ===== CSS Variables ===== */
:root {
  --primary: hsl(221, 83%, 53%);
  --primary-foreground: hsl(0, 0%, 100%);
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(222, 47%, 11%);
  --card: hsl(0, 0%, 98%);
  --secondary: hsl(220, 14%, 96%);
  --muted-foreground: hsl(220, 9%, 46%);
  --accent: hsl(24, 95%, 53%);
  --border: hsl(220, 13%, 91%);
  --hero-bg: hsl(220, 14%, 96%);
  --blue-gradient: linear-gradient(135deg, hsl(221, 83%, 53%) 0%, hsl(221, 83%, 40%) 100%);
  --radius: 0.75rem;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== Container ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 480px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ===== Buttons ===== */
.btn-primary {
  background: var(--blue-gradient);
  color: var(--primary-foreground);
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
.btn-primary:hover { box-shadow: var(--shadow-xl); transform: translateY(-2px); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo img { width: 56px; height: auto; }
@media (min-width: 480px) { .logo img { width: 70px; } }
@media (min-width: 768px) { .logo img { width: 85px; } }

.logo-text {
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}
@media (max-width: 380px) { .logo-text { display: none; } }
@media (min-width: 768px) { .logo-text { font-size: 1.1rem; } }
@media (min-width: 1024px) { .logo-text { font-size: 1.25rem; } }

/* Desktop Nav */
.nav-desktop { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 900px) { .nav-desktop { display: flex; } }

.nav-link {
  color: var(--foreground);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  background: transparent;
  flex-shrink: 0;
}
@media (min-width: 900px) { .mobile-menu-btn { display: none; } }

.hamburger {
  width: 1.5rem; height: 2px;
  background: var(--foreground);
  position: relative;
  transition: all 0.3s ease;
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 1.5rem; height: 2px;
  background: var(--foreground);
  transition: all 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after  { top: 7px; }
.hamburger.active { background: transparent; }
.hamburger.active::before { top: 0; transform: rotate(45deg); }
.hamburger.active::after  { top: 0; transform: rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 1.5rem 1.5rem;
  background: var(--background);
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border);
  animation: fadeIn 0.25s ease;
}
.nav-mobile.active { display: flex; }
.nav-mobile .nav-link {
  padding: 0.85rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn-primary {
  margin-top: 1rem;
  justify-content: center;
  padding: 0.85rem;
  font-size: 0.95rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.hero-left { animation: slideInLeft 0.6s ease-out; }
.hero-right { animation: slideInRight 0.6s ease-out; }

.hero-title {
  font-size: clamp(2rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
}
.text-primary { color: var(--primary); }

/* Service Areas */
.service-areas {
  margin-top: 1.25rem;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem 0.9rem 1.25rem;
  display: block;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 400px;
}
.service-areas-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.55rem;
}
.service-areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
  list-style: none;
  padding: 0; margin: 0;
}
.service-areas-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.4;
}
.area-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.2);
}
@media (max-width: 380px) { .service-areas-list { grid-template-columns: 1fr; } }

.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: var(--muted-foreground);
  max-width: 30rem;
  margin-top: 1.25rem;
  line-height: 1.7;
}

/* Hero Image */
.hero-image-container {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}
.hero-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
@media (min-width: 480px)  { .hero-image { height: 320px; } }
@media (min-width: 768px)  { .hero-image { height: 420px; } }
@media (min-width: 1024px) { .hero-image { height: 520px; } }

.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

/* ===== SPECIAL OFFER ===== */
.special-offer { padding: 1.5rem 0; background: var(--background); }
@media (min-width: 768px) { .special-offer { padding: 3rem 0; } }

.special-offer-banner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
  background-image:
    radial-gradient(ellipse 60% 80% at 50% 30%, rgba(120,180,255,0.25) 0%, transparent 70%),
    linear-gradient(135deg, hsl(216,90%,28%) 0%, hsl(213,85%,42%) 50%, hsl(210,80%,55%) 100%);
  box-shadow: 0 20px 60px rgba(10,50,130,0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: offerEntrance 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.special-offer-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(10,50,130,0.55);
}
@media (min-width: 768px)  { .special-offer-banner { min-height: 240px; border-radius: 1.5rem; } }
@media (min-width: 1024px) { .special-offer-banner { min-height: 290px; } }

.offer-left {
  position: relative; z-index: 2;
  padding: 1.25rem 0.5rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  flex: 1; min-width: 0;
}
@media (min-width: 480px) { .offer-left { padding: 1.75rem 0.75rem 1.75rem 1.75rem; } }
@media (min-width: 768px) { .offer-left { padding: 2.5rem 1.5rem 2.5rem 2.5rem; } }

.offer-headline { display: flex; flex-direction: column; line-height: 0.9; }

.offer-special, .offer-offer {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 4.5rem);
  color: #fff;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
  letter-spacing: -0.02em;
}

.offer-weekend {
  font-family: 'Poppins', sans-serif;
  color: rgba(255,255,255,0.75);
  font-size: clamp(0.52rem, 1.1vw, 0.72rem);
  font-weight: 400;
  margin-top: 0.4rem;
  font-style: italic;
  line-height: 1.5;
  max-width: 320px;
}

.offer-contact-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.btn-offer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(0.58rem, 1.2vw, 0.8rem);
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.btn-offer-email {
  background: hsl(50,100%,50%);
  color: hsl(222,47%,8%);
  border: 2px solid hsl(50,100%,50%);
}
.btn-offer-email:hover {
  background: hsl(50,100%,65%);
  border-color: hsl(50,100%,65%);
  transform: scale(1.05);
}

.btn-offer-whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}
.btn-offer-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: scale(1.05);
}

@media (max-width: 360px) {
  .offer-contact-buttons { flex-direction: column; }
  .btn-offer-action { width: 100%; justify-content: center; }
}

.offer-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem 1.25rem 1.25rem 0.25rem;
  gap: 0.25rem; flex-shrink: 0;
}
@media (min-width: 480px) { .offer-right { padding: 1.75rem 1.75rem 1.75rem 0.5rem; gap: 0.35rem; } }
@media (min-width: 768px) { .offer-right { padding: 2rem 3rem 2rem 1rem; gap: 0.5rem; } }

.offer-big-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(2.75rem, 10vw, 9rem);
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
  letter-spacing: -0.04em;
  position: relative; z-index: 2;
}
.offer-percent-inline { font-size: 0.55em; vertical-align: super; line-height: 0; }

.offer-percent-badge {
  background: hsl(50,100%,50%);
  color: hsl(213,85%,42%);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(0.65rem, 2.5vw, 2rem);
  width: clamp(1.75rem, 5.5vw, 5.5rem);
  height: clamp(1.75rem, 5.5vw, 5.5rem);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  position: relative; z-index: 2; flex-shrink: 0;
  animation: badgeFloat 3s ease-in-out infinite;
}
.offer-percent-badge--left  { transform: rotate(-15deg) translateY(-8px); animation-delay: 0s; }
.offer-percent-badge--right { transform: rotate(12deg) translateY(5px); animation-name: badgeFloatRight; animation-delay: 0.5s; }

.offer-pedestal {
  position: absolute; bottom: 0.75rem; left: 50%;
  transform: translateX(-50%);
  width: clamp(50px, 18vw, 180px);
  height: clamp(15px, 3vw, 50px);
  background: rgba(120,180,255,0.2);
  border-radius: 50%; filter: blur(2px); z-index: 1;
}

.offer-sparkle {
  position: absolute; color: rgba(255,255,255,0.5);
  pointer-events: none;
  animation: sparkleAnim 2s ease-in-out infinite; z-index: 1;
}
.offer-sparkle--1 { top: 15%; right: 48%; font-size: 1.1rem; animation-delay: 0.3s; }
.offer-sparkle--2 { bottom: 20%; right: 46%; font-size: 0.75rem; animation-delay: 1s; }

/* ===== ABOUT ===== */
.about { padding: 3.5rem 0; background: var(--background); }
@media (min-width: 768px) { .about { padding: 6rem 0; } }

.about-header, .services-header, .gallery-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .about-header, .services-header, .gallery-header { margin-bottom: 2rem; }
}

.section-label {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}
.section-title {
  font-size: clamp(1.65rem, 5vw, 3rem);
  font-weight: 700;
  margin-top: 0.4rem;
}
.section-subtitle {
  font-size: clamp(0.88rem, 2vw, 1.1rem);
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}
.about-text {
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  color: var(--muted-foreground);
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 480px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .features-grid { gap: 2rem; margin-top: 4rem; } }

.feature-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
@media (min-width: 768px) { .feature-card { padding: 2rem; } }
.feature-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.feature-icon {
  width: 3.25rem; height: 3.25rem;
  margin: 0 auto 0.85rem;
  background: rgba(37,99,235,0.1);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}
@media (min-width: 768px) { .feature-icon { width: 4rem; height: 4rem; margin-bottom: 1rem; } }
.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: scale(1.1);
}
.feature-title { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600; margin-bottom: 0.4rem; }

/* ===== SERVICES ===== */
.services { padding: 3.5rem 0; background: var(--secondary); }
@media (min-width: 768px) { .services { padding: 6rem 0; } }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-top: 2rem;
}
@media (min-width: 480px)  { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (min-width: 768px)  { .services-grid { gap: 1.25rem; margin-top: 3rem; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.service-card {
  background: var(--background);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
@media (min-width: 768px) { .service-card { padding: 2rem; } }
.service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }

.service-icon {
  width: 3.25rem; height: 3.25rem;
  margin: 0 auto 0.75rem;
  background: rgba(37,99,235,0.1);
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}
@media (min-width: 768px) { .service-icon { width: 4rem; height: 4rem; margin-bottom: 1rem; } }
.service-card:hover .service-icon { background: var(--primary); color: var(--primary-foreground); }

.service-title { font-size: clamp(0.95rem, 2vw, 1.25rem); font-weight: 600; margin-bottom: 0.35rem; }
.service-description {
  color: var(--muted-foreground);
  margin-bottom: 1.1rem;
  flex-grow: 1;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  line-height: 1.6;
}

/* Service Buttons */
.service-buttons { display: flex; gap: 0.4rem; margin-top: auto; }
.btn-book {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.3rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(0.7rem, 1.2vw, 0.82rem);
  padding: 0.5rem 0.3rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-email {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-email:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.btn-whatsapp {
  background: #25D366; color: #fff;
  border: 2px solid #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5d; border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}

/* ===== GALLERY ===== */
.gallery { padding: 3.5rem 0; background: var(--background); }
@media (min-width: 768px) { .gallery { padding: 6rem 0; } }

.carousel-container {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .carousel-container { gap: 1rem; margin-top: 3rem; } }

.carousel-main {
  position: relative; width: 100%;
  max-width: 56rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.carousel-image {
  width: 100%; height: 210px; object-fit: cover;
  transition: opacity 0.3s ease;
}
@media (min-width: 480px)  { .carousel-image { height: 290px; } }
@media (min-width: 640px)  { .carousel-image { height: 370px; } }
@media (min-width: 1024px) { .carousel-image { height: 500px; } }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.25rem; height: 2.25rem;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease; z-index: 10;
}
@media (min-width: 640px) { .carousel-btn { width: 3rem; height: 3rem; } }
.carousel-btn:hover {
  background: white; box-shadow: var(--shadow-xl);
  transform: translateY(-50%) scale(1.1);
}
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }
@media (min-width: 640px) { .carousel-prev { left: 1rem; } .carousel-next { right: 1rem; } }

.carousel-thumbnails {
  display: flex; justify-content: center;
  gap: 0.4rem; margin-top: 1rem;
  flex-wrap: wrap; padding: 0 0.5rem;
}
@media (min-width: 640px) { .carousel-thumbnails { gap: 0.75rem; margin-top: 1.5rem; } }

.thumbnail {
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.4rem; overflow: hidden;
  cursor: pointer; opacity: 0.5;
  transition: all 0.3s ease;
  border: 2px solid transparent; flex-shrink: 0;
}
@media (min-width: 480px) { .thumbnail { width: 3.5rem; height: 3.5rem; } }
@media (min-width: 640px) { .thumbnail { width: 5rem; height: 5rem; border-radius: 0.5rem; } }
.thumbnail:hover { opacity: 0.8; }
.thumbnail.active { opacity: 1; border-color: var(--primary); }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }

/* ===== FOOTER ===== */
.footer { background: var(--foreground); color: var(--background); padding: 3rem 0 0; }
@media (min-width: 768px) { .footer { padding: 4rem 0 0; } }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand { margin-bottom: 0.5rem; }

.logo-icon-footer {
  width: 2.5rem; height: 2.5rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.logo-text-footer {
  font-size: 1rem; font-weight: 600;
  font-family: 'Playfair Display', serif; color: #fff;
}
.footer-description {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem; line-height: 1.7; margin-top: 0.75rem;
}
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.social-link:hover { color: #25D366; }

.footer-title {
  font-weight: 700; margin-bottom: 0.85rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: #fff;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem; text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

.footer-contact ul { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  color: rgba(255,255,255,0.65); font-size: 0.875rem;
}
.footer-contact li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2.5rem; padding: 1.25rem 0;
  text-align: center;
  color: rgba(255,255,255,0.4); font-size: 0.82rem;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: #fff; border-radius: 1.25rem;
  padding: 1.5rem; width: 100%; max-width: 460px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  transform: translateY(24px);
  transition: transform 0.3s ease;
  max-height: 92vh; overflow-y: auto;
}
@media (min-width: 480px) { .modal-box { padding: 2rem; } }
.modal-overlay.active .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2rem; height: 2rem; border-radius: 50%; border: none;
  background: var(--secondary); color: var(--foreground);
  font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }
.modal-header { text-align: center; margin-bottom: 1.5rem; }
.modal-icon {
  width: 3.5rem; height: 3.5rem;
  background: rgba(37,99,235,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin: 0 auto 0.75rem;
}
.modal-title { font-size: 1.35rem; font-weight: 700; color: var(--foreground); font-family: 'Playfair Display', serif; }
.modal-subtitle { color: var(--muted-foreground); font-size: 0.88rem; margin-top: 0.2rem; }

/* ===== FORM ===== */
.contact-form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--foreground); }
.form-group input, .form-group textarea {
  padding: 0.65rem 0.9rem;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  color: var(--foreground); transition: border-color 0.2s;
  outline: none; background: #fff; width: 100%;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; }
.btn-form-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--blue-gradient); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 0.8rem 1.5rem; border-radius: var(--radius);
  border: none; cursor: pointer;
  box-shadow: var(--shadow-md); transition: all 0.25s ease;
  margin-top: 0.5rem; width: 100%;
}
.btn-form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
  display: none; color: #16a34a;
  text-align: center; margin-top: 0.75rem;
  font-weight: 600; font-size: 0.95rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes offerEntrance {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes badgeFloat {
  0%, 100% { transform: rotate(-15deg) translateY(-10px); }
  50%       { transform: rotate(-15deg) translateY(-18px); }
}
@keyframes badgeFloatRight {
  0%, 100% { transform: rotate(12deg) translateY(5px); }
  50%       { transform: rotate(12deg) translateY(-3px); }
}
@keyframes sparkleAnim {
  0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  50%       { opacity: 1; transform: scale(1.4) rotate(20deg); }
}
.animate-fade-in        { animation: fadeIn 0.6s ease-out forwards; }
.animate-fade-in-up     { animation: fadeInUp 0.6s ease-out forwards; }
.animate-slide-in-left  { animation: slideInLeft 0.6s ease-out forwards; }
.animate-slide-in-right { animation: slideInRight 0.6s ease-out forwards; }