/* ════════════════════════════════════════════
   RESET & DESIGN TOKENS
════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px
    }

    :root {
      --brand: #FF3B30;
      --brand-dark: #c0251c;
      --brand-glow: rgba(255, 59, 48, .28);
      --black: #0a0a0a;
      --white: #ffffff;
      --gray-50: #f8f9fa;
      --gray-100: #f0f1f3;
      --gray-200: #e2e4e8;
      --gray-400: #9aa0ab;
      --gray-500: #6b7280;
      --gray-700: #374151;
      --gray-900: #111827;
      --display: 'Cormorant Garamond', Georgia, serif;
      --body: 'Manrope', sans-serif;
      --nav-h: 80px;
      --transition: .3s cubic-bezier(.4, 0, .2, 1);
    }

    body {
      font-family: var(--body);
      color: var(--gray-900);
      background: var(--white);
      overflow-x: hidden
    }

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

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

    button {
      font-family: var(--body);
      cursor: pointer;
      border: none
    }

    input,
    select,
    textarea {
      font-family: var(--body)
    }

    ul {
      list-style: none
    }

    /* ════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════ */
    .container {
      width: min(100% - 48px, 1280px);
      margin: 0 auto
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--brand);
      margin-bottom: 14px;
    }

    .section-label::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--brand);
      border-radius: 1px
    }

    /* ════════════════════════════════════════════
   ① NAVIGATION
════════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--nav-h);
      /* Fully transparent on hero — image bleeds through the nav */
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      transition: background var(--transition), border-color var(--transition), height var(--transition), backdrop-filter var(--transition);
    }

    .nav.scrolled {
      background: rgba(255, 255, 255, .96);
      border-bottom-color: var(--gray-200);
      height: 68px;
      box-shadow: 0 4px 30px rgba(10, 10, 10, .08);
    }

    .nav-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      width: min(100% - 48px, 1280px);
      margin: 0 auto;
    }

    /* Logo */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-shrink: 0
    }

    .nav-logo-icon {
      width: 160px;
      height: 160px;
      border-radius: 12px;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 20px;
    }

    .nav-logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    /* Logo switching based on scroll state */
    .nav-logo-icon .logo-light {
      display: block;
    }

    .nav-logo-icon .logo-dark {
      display: none;
    }

    .nav.scrolled .nav-logo-icon .logo-light {
      display: none;
    }

    .nav.scrolled .nav-logo-icon .logo-dark {
      display: block;
    }

    .nav-logo-icon svg {
      width: 22px;
      height: 22px;
      color: #fff
    }


    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1
    }

    .nav-logo-name {
      font-size: 17px;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--white);
      transition: color var(--transition);
    }

    .nav.scrolled .nav-logo-name {
      color: var(--black)
    }

    .nav-logo-tagline {
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .7);
      transition: color var(--transition);
    }

    .nav.scrolled .nav-logo-tagline {
      color: var(--gray-400)
    }

    /* Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px
    }

    .nav-links a {
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .03em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .88);
      transition: color var(--transition), background var(--transition);
      white-space: nowrap;
    }

    .nav-links a:hover {
      color: #fff;
      background: rgba(255, 255, 255, .12)
    }

    .nav.scrolled .nav-links a {
      color: var(--gray-700)
    }

    .nav.scrolled .nav-links a:hover {
      color: var(--black);
      background: var(--gray-100)
    }

    .nav-links a.active {
      color: var(--brand) !important
    }

    /* Social icons */
    .nav-social {
      display: flex;
      align-items: center;
      gap: 8px
    }

    @media (max-width: 985px) {
      .nav-social {
        display: none
      }
    }

    .nav-social a {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .8);
      border: 1px solid rgba(255, 255, 255, .2);
      transition: all var(--transition);
    }

    .nav-social a:hover {
      color: #fff;
      background: rgba(255, 255, 255, .15);
      border-color: rgba(255, 255, 255, .4)
    }

    .nav.scrolled .nav-social a {
      color: var(--gray-500);
      border-color: var(--gray-200)
    }

    .nav.scrolled .nav-social a:hover {
      color: var(--brand);
      border-color: var(--brand);
      background: rgba(255, 59, 48, .06)
    }

    .nav-social svg {
      width: 16px;
      height: 16px
    }

    /* CTA */
    .nav-cta {
      height: 38px;
      padding: 0 20px;
      border-radius: 10px;
      background: var(--brand);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      box-shadow: 0 4px 16px var(--brand-glow);
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .nav-cta:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px var(--brand-glow)
    }

    .nav-cta svg {
      width: 14px;
      height: 14px
    }

    /* Hamburger */
    .nav-ham {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .25);
      background: rgba(255, 255, 255, .1);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      transition: all var(--transition);
    }

    .nav.scrolled .nav-ham {
      border-color: var(--gray-200);
      background: var(--gray-50)
    }

    .nav-ham span {
      width: 18px;
      height: 2px;
      background: #fff;
      border-radius: 1px;
      transition: all var(--transition);
      display: block
    }

    .nav.scrolled .nav-ham span {
      background: var(--black)
    }

    /* Mobile drawer */
    .nav-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: min(320px, 88vw);
      height: 100vh;
      background: var(--white);
      z-index: 1200;
      box-shadow: -20px 0 60px rgba(0, 0, 0, .15);
      transform: translateX(100%);
      transition: transform var(--transition);
      display: flex;
      flex-direction: column;
      padding: 28px 24px;
      gap: 8px;
      overflow-y: auto;
    }

    .nav-drawer.open {
      transform: translateX(0)
    }

    .nav-drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-drawer-close {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      border: 1px solid var(--gray-200);
      background: var(--gray-50);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-700);
    }

    .nav-drawer-close svg {
      width: 18px;
      height: 18px
    }

    .nav-drawer a {
      display: block;
      padding: 14px 16px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .03em;
      text-transform: uppercase;
      color: var(--gray-700);
      border: 1px solid transparent;
      transition: all var(--transition);
    }

    .nav-drawer a:hover {
      background: rgba(255, 59, 48, .06);
      border-color: rgba(255, 59, 48, .12);
      color: var(--brand)
    }

    .nav-drawer .drawer-whatsapp {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 56px;
      margin: 4px 0 10px;
      padding: 0 20px;
      border-radius: 14px;
      background: #25D366;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      border: 1px solid transparent;
      box-shadow: 0 12px 28px rgba(37, 211, 102, .25);
    }

    .nav-drawer .drawer-whatsapp svg {
      width: 24px;
      height: 24px;
    }

    .nav-drawer .drawer-whatsapp:hover {
      background: #1fb558;
      color: #fff;
      border-color: transparent;
      transform: translateY(-1px);
    }

    .nav-drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .4);
      z-index: 1100;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
    }

    .nav-drawer-overlay.open {
      opacity: 1;
      pointer-events: auto
    }

    /* ════════════════════════════════════════════
   ② HERO
════════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;

      /* PARALLAX EFFECT */
      background-image: url('hero.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

    /* Remove old background image container */
    .hero-bg {
      display: none;
    }

    /* The actual <img> inside .hero-bg */
    .hero-bg img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
      /* Slight zoom on load for cinematic feel */
      animation: hero-zoom 12s ease-out both;
    }

    @keyframes hero-zoom {
      from {
        transform: scale(1.06)
      }

      to {
        transform: scale(1)
      }
    }

    /* Subtle grid texture overlay */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* Glowing orb */
    .hero-orb {
      position: absolute;
      right: 8%;
      top: 50%;
      transform: translateY(-50%);
      width: min(580px, 50vw);
      height: min(580px, 50vw);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 59, 48, .22) 0%, rgba(255, 59, 48, .06) 50%, transparent 70%);
      z-index: -1;
      animation: orb-pulse 6s ease-in-out infinite;
    }

    @keyframes orb-pulse {

      0%,
      100% {
        transform: translateY(-50%) scale(1);
        opacity: .8
      }

      50% {
        transform: translateY(-52%) scale(1.05);
        opacity: 1
      }
    }

    /* Animated grid dots */
    .hero-dots {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      width: min(520px, 45vw);
      height: min(520px, 45vw);
      z-index: 0;
      opacity: .18;
      background-image: radial-gradient(circle, rgba(255, 255, 255, .6) 1.5px, transparent 1.5px);
      background-size: 32px 32px;
      animation: dots-drift 20s linear infinite;
    }

    @keyframes dots-drift {
      from {
        background-position: 0 0
      }

      to {
        background-position: 32px 32px
      }
    }

    /* Multi-layer overlay — keeps image visible but text always readable */
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(to top, rgb(5 5 10 / 51%) 0%, transparent 45%), linear-gradient(98deg, rgb(5 5 10 / 55%) 0%, rgba(5, 5, 10, .55) 45%, rgba(5, 5, 10, .25) 100%), radial-gradient(ellipse 60% 80% at 0% 100%, rgba(255, 59, 48, .12) 0%, transparent 60%);
    }

    /* Content */
    .hero-content {
      position: relative;
      z-index: 1;
      padding: calc(var(--nav-h) + 60px) 0 40px;
      width: min(100% - 48px, 1280px);
      margin: 0 auto;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 16px;
      border-radius: 999px;
      background: rgba(255, 59, 48, .14);
      border: 1px solid rgba(255, 59, 48, .3);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 180, 176, .95);
      margin-bottom: 28px;
      animation: fade-up .7s ease both;
    }

    .hero-eyebrow svg {
      width: 14px;
      height: 14px;
      color: var(--brand)
    }

    .hero-title {
      font-family: var(--display);
      font-size: clamp(4rem, 6vw, 6.5rem);
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -.02em;
      color: #fff;
      margin-bottom: 16px;
      max-width: 720px;
      animation: fade-up .7s .12s ease both;
    }

    .hero-title strong {
      font-weight: 700;
      color: #fff
    }

    .hero-title em {
          font-style: italic;
    color: rgba(255, 150, 140, 0.9);
    font-family: serif;
    font-size: clamp(32px, 5vw, 58px)
    }

    .hero-sub {
      font-size: clamp(1rem, 1.6vw, 1.2rem);
      font-weight: 400;
      line-height: 1.7;
      color: rgba(255, 255, 255, .7);
      max-width: 560px;
      margin-bottom: 44px;
      animation: fade-up .7s .22s ease both;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      animation: fade-up .7s .34s ease both;
    }

    .btn-primary {
      height: 56px;
      padding: 0 36px;
      border-radius: 12px;
      background: var(--brand);
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 32px var(--brand-glow);
      transition: all var(--transition);
    }
    .whatsapp-btn{
      height: 45px;
    padding: 0 10px;
      border-radius: 12px;
      background: #25D366;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 32px var(--brand-glow);
      transition: all var(--transition);
    }
    .whatsapp-btn svg{
      width: 22px;
      height: 22px;
    }

    .btn-primary:hover {
      background: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 42px var(--brand-glow)
    }

    .btn-primary svg {
      width: 18px;
      height: 18px;
      transition: transform var(--transition)
    }

    .btn-primary:hover svg {
      transform: translateX(3px)
    }

    .btn-ghost {
      height: 56px;
      padding: 0 32px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .1);
      border: 1.5px solid rgba(255, 255, 255, .3);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .03em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all var(--transition);
      backdrop-filter: blur(8px);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, .18);
      border-color: rgba(255, 255, 255, .5);
      transform: translateY(-2px)
    }

    /* Stats row */
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 15px;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      animation: fade-up .7s .46s ease both;
      flex-wrap: wrap;
      justify-content: center;
    }

    .stat-item {}

    .stat-number {
      font-family: var(--display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: #fff;
      line-height: 1;
      letter-spacing: -.03em;
      text-align: center;
    }

    .stat-number span {
      color: var(--brand)
    }

    .stat-label {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, .5);
      margin-top: 4px;
      letter-spacing: .04em;
      text-transform: uppercase
    }

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

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ════════════════════════════════════════════
   ③ GET IN TOUCH / CONTACT SECTION
════════════════════════════════════════════ */
    .contact-section {
      padding: 45px 0;
      background: var(--gray-50);
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 59, 48, .06) 0%, transparent 70%);
      pointer-events: none;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start
    }

    .contact-left h2 {
      font-family: var(--display);
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 400;
      line-height: 1.1;
      color: var(--gray-900);
      margin-bottom: 20px;
      letter-spacing: -.02em;
    }

    .contact-left h2 em {
      font-style: italic;
      color: var(--brand)
    }

    .contact-left p {
      font-size: 15px;
      line-height: 1.75;
      color: var(--gray-500);
      margin-bottom: 32px
    }

    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 32px
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 18px;
      border-radius: 12px;
      background: var(--white);
      border: 1px solid var(--gray-200);
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .contact-info-item:hover {
      border-color: rgba(255, 59, 48, .2);
      box-shadow: 0 4px 20px rgba(255, 59, 48, .08)
    }

    .contact-info-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255, 59, 48, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-info-icon svg {
      width: 18px;
      height: 18px;
      color: var(--brand)
    }

    .contact-info-text {}

    .contact-info-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--gray-400);
      margin-bottom: 3px
    }

    .contact-info-value {
      font-size: 14px;
      font-weight: 600;
      color: var(--gray-900)
    }

    /* Contact form card */
    .contact-form-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 8px 40px rgba(10, 10, 10, .06);
    }

    .contact-form-card h3 {
      font-family: var(--display);
      font-size: 1.9rem;
      font-weight: 600;
      color: var(--gray-900);
      margin-bottom: 6px;
      letter-spacing: -.01em;
    }

    .contact-form-card p {
      font-size: 13.5px;
      color: var(--gray-400);
      margin-bottom: 28px;
      line-height: 1.6
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px
    }

    .form-group:last-of-type {
      margin-bottom: 0
    }

    .form-group label {
      font-size: 11.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--gray-500)
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      height: 48px;
      border: 1.5px solid var(--gray-200);
      border-radius: 10px;
      padding: 0 16px;
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-900);
      background: var(--gray-50);
      outline: none;
      transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
    }

    .form-group textarea {
      height: 110px;
      padding: 14px 16px;
      resize: vertical
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--brand);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(255, 59, 48, .1);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--gray-400)
    }

    .form-submit {
      width: 100%;
      height: 52px;
      background: var(--brand);
      color: #fff;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
      box-shadow: 0 6px 24px var(--brand-glow);
      transition: all var(--transition);
    }

    .form-submit:hover {
      background: var(--brand-dark);
      transform: translateY(-1px);
      box-shadow: 0 10px 32px var(--brand-glow)
    }

    .form-submit svg {
      width: 17px;
      height: 17px;
      transition: transform var(--transition)
    }

    .form-submit:hover svg {
      transform: translateX(3px)
    }

    /* ════════════════════════════════════════════
   ④ SERVICES SECTION
════════════════════════════════════════════ */
    .services-section {
      padding: 45px 0;
      background: var(--white)
    }

    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px
    }

    .section-header .section-label {
      justify-content: center
    }

    .section-header h2 {
      font-family: var(--display);
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 400;
      line-height: 1.1;
      color: var(--gray-900);
      margin-bottom: 16px;
      letter-spacing: -.02em;
    }

    .section-header h2 em {
      font-style: italic;
      color: var(--brand)
    }

    .section-header p {
      font-size: 15px;
      line-height: 1.75;
      color: var(--gray-500)
    }

    .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Services slider */
.services-slider {
  position: relative;
  padding-bottom: 52px; /* space for dots */
}

.services-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.services-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.services-slider-btn {
  position: absolute;
  top: -56px; /* sits above the track, aligned right */
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all var(--transition);
}

.services-slider-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 59, 48, 0.25);
}
.services-slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.services-slider-btn.prev {
  right: 60px;
}

.services-slider-btn.next {
  right: 0px;
}
.services-slider-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.services-slider-dot {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(17, 17, 17, 0.14);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s ease,
    width 0.25s ease;
}
.services-slider-dot.active {
  background: var(--brand);
  width: 44px;
}
@media (max-width: 640px) {
  .services-slider-btn {
    display: none;
  }
}

.services-slider-track .service-card {
  flex: 0 0 calc((100% - 72px) / 4); /* (100% - 3 gaps × 24px) / 4 */
  min-width: 0;
}

@media (max-width: 1024px) {
  .services-slider-track .service-card {
    flex: 0 0 calc((100% - 24px) / 2); /* (100% - 1 gap × 24px) / 2 */
  }
}

@media (max-width: 640px) {
  .services-slider-btn {
    display: none;
  }

  .services-slider-track {
    gap: 16px;
  }
  .services-slider-track .service-card {
    flex: 0 0 100%;
  }
}

.service-card {
  padding: 36px 32px;
  border-radius: 18px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.1);
  border-color: rgba(255, 59, 48, 0.2);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: background var(--transition);
}

.service-icon svg {
  width: 26px;  
  height: 26px;
  color: var(--brand);
}

.service-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
  transition: gap var(--transition);
  margin-top:15px;
}

.service-link:hover {
  gap: 10px;
}

.service-link svg {
  width: 14px;
  height: 14px;
}
.services-slider-btn svg {
  width: 18px;
  height: 18px;
}

    /* ════════════════════════════════════════════
   ⑤ ABOUT SECTION
════════════════════════════════════════════ */
    .about-section {
      padding: 100px 0;
      background: var(--black);
      position: relative;
      overflow: hidden;
    }

    .about-section::before {
      content: '';
      position: absolute;
      left: -200px;
      top: 50%;
      transform: translateY(-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 59, 48, .12) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center
    }

    .about-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      aspect-ratio: 3/4;
      max-height: 560px;
    }

    .about-img-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #1a1a2e, #16213e);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: rgba(255, 255, 255, .3);
    }

    .about-img-placeholder svg {
      width: 60px;
      height: 60px;
      opacity: .4
    }

    .about-img-placeholder span {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase
    }

    .about-img-badge {
      position: absolute;
      bottom: 28px;
      left: 28px;
      right: 28px;
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 14px;
      padding: 18px 22px;
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .about-img-badge .stat-number {
      font-size: 1.8rem
    }

    .about-img-badge .stat-label {
      font-size: 11px
    }

    .about-right {}

    .about-right .section-label {
      color: rgba(255, 150, 140, .9)
    }

    .about-right .section-label::before {
      background: rgba(255, 150, 140, .9)
    }

    .about-right h2 {
      font-family: var(--display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 400;
      line-height: 1.1;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: -.02em;
    }

    .about-right h2 em {
      font-style: italic;
      color: var(--brand)
    }

    .about-right p {
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 16px
    }

    .about-checks {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 28px 0 36px
    }

    .about-check {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      font-weight: 600;
      color: rgba(255, 255, 255, .8);
    }

    .about-check-icon {
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: rgba(255, 59, 48, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .about-check-icon svg {
      width: 13px;
      height: 13px;
      color: var(--brand)
    }

    .btn-primary-dark {
      height: 52px;
      padding: 0 32px;
      border-radius: 12px;
      background: var(--brand);
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 6px 24px var(--brand-glow);
      transition: all var(--transition);
    }

    .btn-primary-dark:hover {
      background: var(--brand-dark);
      transform: translateY(-2px)
    }

    .btn-primary-dark svg {
      width: 16px;
      height: 16px
    }

    /* ════════════════════════════════════════════
   ⑥ TEAM SECTION
════════════════════════════════════════════ */
    .team-section {
      padding: 100px 0;
      background: var(--gray-50)
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 60px
    }

    .team-card {
      background: var(--white);
      border-radius: 16px;
      border: 1px solid var(--gray-200);
      overflow: hidden;
      transition: all var(--transition);
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(10, 10, 10, .1);
      border-color: rgba(255, 59, 48, .2)
    }

    .team-card-img {
      aspect-ratio: 3/4;
      background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .team-card-img-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--gray-400);
    }

    .team-card-img-placeholder svg {
      width: 40px;
      height: 40px;
      opacity: .5
    }

    .team-card-img-placeholder span {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase
    }

    .team-card-img::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(to top, rgba(10, 10, 10, .6), transparent);
    }

    .team-card-body {
      padding: 18px 18px 20px
    }

    .team-card-name {
      font-family: var(--display);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--gray-900);
      margin-bottom: 4px;
      letter-spacing: -.01em
    }

    .team-card-role {
      font-size: 11.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--brand);
    }

    /* ════════════════════════════════════════════
   ⑦ TESTIMONIALS SECTION
════════════════════════════════════════════ */
    .testimonials-section {
      padding: 45px 0;
      background: var(--gray-50);
      position: relative;
      overflow: hidden;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      margin-top: 40px;
      align-items: stretch;
    }

    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 18px;
      padding: 26px 24px;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-height: 230px;
    }

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

    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(10, 10, 10, .08);
      border-color: rgba(255, 59, 48, .2);
    }

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

    .testimonial-quote {
      font-size: 14.5px;
      line-height: 1.8;
      color: var(--gray-500);
      margin-top: 4px;
      flex: 1;
    }

    .testimonial-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-top: 4px;
    }

    .testimonial-person {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(255, 59, 48, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(255, 59, 48, .18);
    }

    .testimonial-avatar svg {
      width: 20px;
      height: 20px;
      color: var(--brand);
    }

    .testimonial-name {
      font-weight: 900;
      color: var(--gray-900);
      letter-spacing: -.01em;
      font-size: 14px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .testimonial-role {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: rgba(107, 114, 128, .9);
      margin-top: 2px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .testimonial-stars {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .testimonial-stars svg {
      width: 16px;
      height: 16px;
      color: var(--brand);
    }

    @media(max-width:1024px) {
      .testimonials-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:640px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ════════════════════════════════════════════
   ⑧ FOOTER
════════════════════════════════════════════ */
    .footer {
      background: var(--black);
      padding: 40px 0 0;
      color: rgba(255, 255, 255, .7)
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .footer-brand .nav-logo-name {
      color: #fff;
      font-size: 20px
    }
    .footer-brand .nav-logo-icon{
        margin-top: 0;
        height: 67px;
        width: 180px;
    }

    .footer-brand .nav-logo-tagline {
      color: rgba(255, 255, 255, .4)
    }

    .footer-brand p {
      font-size: 13.5px;
      line-height: 1.75;
      color: rgba(255, 255, 255, .5);
      margin-top: 16px;
      margin-bottom: 24px
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 4px
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .5);
      transition: all var(--transition);
    }

    .footer-social a:hover {
      color: #fff;
      background: rgba(255, 59, 48, .15);
      border-color: rgba(255, 59, 48, .3)
    }

    .footer-social svg {
      width: 15px;
      height: 15px
    }

    .footer-col h4 {
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 18px
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .footer-col ul li a {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .55);
      transition: color var(--transition)
    }

    .footer-col ul li a:hover {
      color: var(--brand)
    }

    .footer-bottom {
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 12.5px;
      color: rgba(255, 255, 255, .3)
    }

    .footer-bottom a {
      color: rgba(255, 59, 48, .7);
      transition: color var(--transition)
    }

    .footer-bottom a:hover {
      color: var(--brand)
    }

    .payment-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .payment-logos img {
      height: 34px;
      width: auto;
      object-fit: contain;
      opacity: .9;
      filter: grayscale(.08);
      border-radius: 6px;
    }

    /* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
    @media(max-width:1024px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px
      }

      .about-img-wrap {
        max-height: 380px;
        aspect-ratio: 16/9
      }

      .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
      }
    }

    @media(max-width:900px) {

      .nav-links,
      .nav-social,
      .nav-cta {
        display: none
      }

      .whatsapp-btn {
        display: none
      }

      .nav-ham {
        display: flex
      }

      .hero-dots {
        opacity: .08
      }
    }

    @media(max-width:640px) {
      .container {
        width: min(100% - 32px, 1280px)
      }

      .services-grid {
        grid-template-columns: 1fr
      }

      .hero-stats {
        gap: 28px
        justify-content: center;
      }

      .form-row {
        grid-template-columns: 1fr
      }

      .footer-grid {
        grid-template-columns: 1fr
      }

      .footer-bottom {
        justify-content: center;
        text-align: center;
      }

      .hero-title {
        font-size: clamp(2.4rem, 9vw, 3.6rem)
      }

      .contact-form-card {
        padding: 28px 22px
      }

      .team-grid {
        grid-template-columns: 1fr 1fr
      }
    }

    @media(max-width:400px) {
      .team-grid {
        grid-template-columns: 1fr
      }
    }


/* Why Choose Us */
.why-section {
  padding: 80px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  left: -180px;
  top: 20px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 48, .10) 0%, transparent 65%);
  pointer-events: none;
}

.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.why-header h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--gray-900);
  margin-bottom: 14px;
}

.why-header h2 em {
  font-style: italic;
  color: var(--brand);
}

.why-header p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-500);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 26px 22px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

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

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(10, 10, 10, .08);
  border-color: rgba(255, 59, 48, .20);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 59, 48, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon svg {
  width: 26px;
  height: 26px;
  color: var(--brand);
}

.why-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-500);
}

.why-bottom {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.why-cta {
  height: 52px;
  padding: 0 26px;
  border-radius: 14px;
  background: var(--brand);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 34px var(--brand-glow);
  transition: all var(--transition);
}

.why-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 42px var(--brand-glow);
}

.why-cta svg {
  width: 16px;
  height: 16px;
}

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

@media(max-width:640px) {
  .why-section { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 22px 18px; }
}

/* Privacy Policy Page */
.policy-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff 0%, #fff6f5 100%);
}

.policy-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px 24px 70px;
}

.policy-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(17, 24, 39, .08);
  padding: 38px 30px;
}

.policy-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.policy-meta {
  color: var(--gray-500);
  font-size: .95rem;
  margin-bottom: 26px;
}

.policy-section {
  margin-top: 22px;
}

.policy-section h2 {
  font-size: 1.2rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.policy-section p,
.policy-section li {
  color: var(--gray-700);
  line-height: 1.75;
}

.policy-section ul {
  padding-left: 20px;
  margin-top: 8px;
}

.policy-home-link {
  display: inline-flex;
  margin-top: 28px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  transition: var(--transition);
}

.policy-home-link:hover {
  background: var(--brand-dark);
}

@media (max-width: 640px) {
  .policy-card {
    padding: 28px 20px;
    border-radius: 14px;
  }
}
/* ════════════════════════════════════════════
   COMING SOON MODAL STYLES
════════════════════════════════════════════ */
 
.coming-soon-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}
 
.coming-soon-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
  animation: fade-in 0.3s ease;
}
 
.coming-soon-content {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 20px;
  padding: 52px 40px;
  max-width: 480px;
  width: min(100% - 32px, 480px);
  box-shadow: 0 20px 60px rgba(10, 10, 10, 0.15);
  text-align: center;
  animation: slide-up 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.coming-soon-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
}
 
.coming-soon-close:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
  transform: rotate(90deg);
}
 
.coming-soon-close svg {
  width: 20px;
  height: 20px;
}
 
.coming-soon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
 
.coming-soon-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: rgba(255, 59, 48, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
 
.coming-soon-icon svg {
  width: 40px;
  height: 40px;
  color: var(--brand);
}
 
.coming-soon-content h2 {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
 
.coming-soon-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-500);
  margin: 0;
}
 
.coming-soon-cta {
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px var(--brand-glow);
  transition: all var(--transition);
  text-decoration: none;
  margin-top: 8px;
}
 
.coming-soon-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px var(--brand-glow);
}
 
.coming-soon-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
 
.coming-soon-cta:hover svg {
  transform: translateX(3px);
}
 
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
 
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
/* Responsive */
@media (max-width: 640px) {
  .coming-soon-content {
    padding: 40px 24px;
    border-radius: 16px;
  }
 
  .coming-soon-content h2 {
    font-size: 1.8rem;
  }
 
  .coming-soon-content p {
    font-size: 14px;
  }
 
  .coming-soon-close {
    width: 36px;
    height: 36px;
    top: 16px;
    right: 16px;
  }
 
  .coming-soon-close svg {
    width: 18px;
    height: 18px;
  }
}
 
/* Make the service-link button style work properly */
/* Make the service-link button style work properly */
.service-link.coming-soon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  margin-top:15px;
}
.card-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d1d5db;
  border-radius: 50%;

  color: #1f2937;
  text-decoration: none;

  font-size: 16px;

  transition: all 0.3s ease;
}

.card-social a:hover {
  background: #1f2937;
  color: #fff;
  transform: translateY(-3px);
  border-color: #1f2937;
}
