 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --brand:      #BE084D;
      --brand-dark: #8f0639;
      --brand-l:    #e8306a;
      --brand-pale: #fce8ef;
      --charcoal:   #1A1A2E;
      --text:       #2D2D3A;
      --gray:       #6B7280;
      --border:     #EAE0E5;
      --white:      #FFFFFF;
      --bg:         #FAFAFA;
      --light:      #F7F2F4;
      --card-bg:    #FFFFFF;
      --radius:     18px;
      --shadow:     0 6px 28px rgba(190,8,77,0.09);
      --shadow-lg:  0 18px 52px rgba(190,8,77,0.16);
      --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
    }

    html { scroll-behavior: smooth; }
    body {   font-family: "Montserrat", sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
    h1,h2,h3 {   font-family: "Montserrat", sans-serif; }

    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 5%;
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(190,8,77,0.08);
      transition: box-shadow var(--transition);
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(190,8,77,0.10); }

    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-icon {
      width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-l) 100%);
      display: flex; align-items: center; justify-content: center;
    }
    .logo-icon i { color: #fff; font-size: 1.2rem; }
    .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
    .logo-text .l1 { font-family: 'Playfair Display', serif; font-size: 1.08rem; font-weight: 700; color: var(--brand); }
    .logo-text .l2 { font-family: 'DM Sans', sans-serif; font-size: 0.66rem; font-weight: 600; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; }

    .nav-links { display: flex; gap: 28px; list-style: none; }
    .nav-links a {
      color: var(--text); text-decoration: none; font-size: 0.93rem; font-weight: 500;
      position: relative; padding-bottom: 4px; transition: color var(--transition);
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px; background: var(--brand); border-radius: 2px; transition: width var(--transition);
    }
    .nav-links a:hover { color: var(--brand); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--brand); color: #fff; padding: 10px 22px; border-radius: 50px;
      font-weight: 600; font-size: 0.88rem; text-decoration: none;
      display: flex; align-items: center; gap: 8px;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }
    .nav-cta:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(190,8,77,0.32); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; }

    /* ── HERO ── */
    #home {
      min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; background: var(--light); overflow: hidden; position: relative;
    }
    #home::before {
      content: ''; position: absolute; top: -200px; left: -200px;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(190,8,77,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-left { padding: 100px 6% 80px 7%; z-index: 1; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--brand-pale); border: 1px solid rgba(190,8,77,0.22);
      color: var(--brand); padding: 7px 18px; border-radius: 50px;
      font-size: 0.69rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
      margin-bottom: 24px;
    }
    .hero-left h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.13; color: #fff; margin-bottom: 20px; }
    .hero-left h1 em { color: var(--brand); font-style: normal; }
    .hero-left p { color: #fff; font-size: 1.06rem; line-height: 1.78; margin-bottom: 36px; max-width: 430px; }

    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--brand); color: #fff; padding: 14px 32px; border-radius: 50px; border: none;
      font-family: 'DM Sans', sans-serif; font-size: 0.97rem; font-weight: 600; cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 10px;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }
    .btn-primary:hover { background: var(--brand-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(190,8,77,0.36); }
    .btn-secondary {
      background: #fff; color: var(--brand); padding: 14px 32px; border-radius: 50px; border: 2px solid var(--brand);
      font-family: 'DM Sans', sans-serif; font-size: 0.97rem; font-weight: 600; cursor: pointer; text-decoration: none;
      display: inline-flex; align-items: center; gap: 10px;
      transition: background var(--transition), transform var(--transition);
    }
    .btn-secondary:hover { background: var(--brand-pale); transform: translateY(-3px); }

    .hero-highlights { display: flex; gap: 26px; margin-top: 44px; flex-wrap: wrap; justify-content: center; }
    .highlight-item { display: flex; align-items: center; flex-direction: column; gap: 10px; color: #fff; font-size: 0.9rem; font-weight: 500; }
    .hi-icon {
      width: 36px; height: 36px; border-radius: 10px; background: var(--brand-pale);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .hi-icon i { color: var(--brand); font-size: 0.9rem; }

    /* Hero right */
    .hero-right { position: relative; height: 100vh; overflow: hidden; }
    .hero-main-img {
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=900&q=85') center/cover no-repeat;
    }
    .hero-main-img::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to left, transparent 45%, var(--light) 100%);
    }
    .hero-float-cards {
      position: absolute; right: 5%; bottom: 80px;
      display: flex; flex-direction: column; gap: 12px; z-index: 2;
    }
    .hfc {
      background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
      border: 1px solid rgba(190,8,77,0.12); border-radius: 14px;
      padding: 12px 18px; display: flex; align-items: center; gap: 12px;
      box-shadow: 0 8px 24px rgba(190,8,77,0.12); min-width: 200px;
      animation: floatUp 0.8s ease both;
    }
    .hfc:nth-child(2) { animation-delay: 0.15s; }
    .hfc:nth-child(3) { animation-delay: 0.3s; }
    @keyframes floatUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
    .hfc-icon {
      width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-l) 100%);
      display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem;
    }
    .hfc-info strong { font-size: 0.87rem; color: var(--charcoal); display: block; line-height: 1.3; }
    .hfc-info span { font-size: 0.74rem; color: var(--brand); font-weight: 600; }

    /* ── STATS ── */
    .stats-strip {
      background: var(--brand); padding: 44px 6%;
      display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
    }
    .stat { text-align: center; padding: 20px 52px; border-right: 1px solid rgba(255,255,255,0.2); flex: 1; min-width: 130px; }
    .stat:last-child { border-right: none; }
    .stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; color: #fff; font-weight: 700; line-height: 1; }
    .stat-label { color: rgba(255,255,255,0.72); font-size: 0.87rem; margin-top: 6px; }

    /* ── SECTION HEADER ── */
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-tag { display: inline-block; color: var(--brand); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
    .section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--charcoal); line-height: 1.2; }
    .section-header p { color: var(--gray); font-size: 1.02rem; margin-top: 14px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.75; }
    .divider { width: 50px; height: 4px; background: var(--brand); border-radius: 2px; margin: 16px auto 0; }

    /* ── SERVICES ── */
    #services { padding: 100px 5%; background: var(--bg); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }

    .service-card {
      background: var(--card-bg); border-radius: var(--radius); overflow: hidden;
      box-shadow: var(--shadow); border: 1.5px solid var(--border); cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(190,8,77,0.28); }

    .service-img-wrap { overflow: hidden; position: relative; }
    .service-img { width: 100%; height: 185px; object-fit: cover; display: block; transition: transform 0.6s ease; }
    .service-card:hover .service-img { transform: scale(1.06); }
    .service-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(190,8,77,0.4) 0%, transparent 55%);
      opacity: 0; transition: opacity var(--transition);
    }
    .service-card:hover .service-img-overlay { opacity: 1; }

    .service-body { padding: 26px 26px 28px; }
    .service-icon-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
    .svc-icon {
      width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-l) 100%);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.35rem;
      box-shadow: 0 6px 16px rgba(190,8,77,0.25);
      transition: transform var(--transition);
    }
    .service-card:hover .svc-icon { transform: rotate(-8deg) scale(1.1); }
    .service-body h3 { font-size: 1.18rem; color: var(--charcoal); }
    .service-body p { color: var(--gray); font-size: 0.92rem; line-height: 1.72; margin-top: 10px; }
    .learn-more {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--brand); font-weight: 600; font-size: 0.88rem;
      margin-top: 18px; text-decoration: none; transition: gap var(--transition);
    }
    .learn-more:hover { gap: 10px; }

    /* ── EMERGENCY ── */
    #emergency {
      padding: 90px 5%;
      background: linear-gradient(135deg, var(--charcoal) 0%, #2a1030 100%);
      position: relative; overflow: hidden;
    }
    #emergency::before {
      content: ''; position: absolute; top: -200px; right: -100px;
      width: 560px; height: 560px; border-radius: 50%;
      background: radial-gradient(circle, rgba(190,8,77,0.22) 0%, transparent 70%);
    }
    .emergency-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
    .emergency-text { max-width: 560px; }
    .emergency-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(190,8,77,0.18); border: 1px solid rgba(190,8,77,0.4);
      color: #f47ba7; padding: 6px 16px; border-radius: 50px;
      font-size: 0.79rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
    }
    .pulse-dot {
      width: 9px; height: 9px; border-radius: 50%; background: #f47ba7;
      animation: pulse 1.8s infinite;
    }
    @keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(244,123,167,0.6);} 70%{box-shadow:0 0 0 10px rgba(244,123,167,0);} }
    .emergency-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; margin-bottom: 16px; }
    .emergency-text h2 span { color: #f47ba7; }
    .emergency-text p { color: rgba(255,255,255,0.68); font-size: 1.02rem; line-height: 1.75; margin-bottom: 28px; }
    .emergency-features { display: flex; flex-direction: column; gap: 13px; }
    .emergency-feature { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 0.93rem; }
    .emergency-feature i { color: #f47ba7; width: 18px; }
    .emergency-action { display: flex; flex-direction: column; align-items: center; gap: 16px; }
    .call-btn {
      background: var(--brand); color: #fff; padding: 18px 44px; border-radius: 50px; border: none;
      font-family: 'DM Sans', sans-serif; font-size: 1.1rem; font-weight: 700; cursor: pointer; text-decoration: none;
      display: flex; align-items: center; gap: 12px; white-space: nowrap;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }
    .call-btn:hover { background: var(--brand-l); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(190,8,77,0.45); }
    .call-btn i { animation: ring 2s infinite; }
    @keyframes ring { 0%,100%,40%{transform:rotate(0);} 10%{transform:rotate(-20deg);} 20%{transform:rotate(20deg);} 30%{transform:rotate(-10deg);} }
    .emergency-note { color: rgba(255,255,255,0.45); font-size: 0.83rem; text-align: center; }

    /* ── TESTIMONIALS ── */
    #testimonials { padding: 100px 5%; background: var(--light); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
    .testi-card {
      background: var(--white); border-radius: var(--radius); padding: 36px 30px;
      box-shadow: var(--shadow); border: 1.5px solid var(--border);
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative; overflow: hidden;
    }
    .testi-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
      background: linear-gradient(90deg, var(--brand) 0%, var(--brand-l) 100%);
    }
    .testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .quote-icon { font-size: 3.2rem; color: var(--brand); opacity: 0.15; line-height: 1; font-family: Georgia, serif; }
    .testi-text { color: var(--gray); font-size: 0.95rem; line-height: 1.78; margin-bottom: 26px; font-style: italic; }
    .testi-footer { display: flex; align-items: center; gap: 14px; }
    .testi-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-l) 100%);
      display: flex; align-items: center; justify-content: center;
  font-family: "Montserrat", sans-serif; font-size: 1.2rem; color: #fff; font-weight: 700; flex-shrink: 0;
    }
    .testi-info h4 { font-size: 0.97rem; color: var(--charcoal); font-family: 'DM Sans', sans-serif; font-weight: 600; }
    .testi-info span { font-size: 0.8rem; color: var(--gray); }
    .stars { color: #F59E0B; font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 6px; }

    /* ── MAP ── */
    #map { padding: 90px 5%; background: var(--bg); }
    .map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--white); }
    .map-wrapper iframe { display: block; width: 100%; height: 430px; border: none; }

    /* ── FOOTER ── */
    footer { background: var(--charcoal); color: rgba(255,255,255,0.62); padding: 70px 5% 30px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 52px; margin-bottom: 52px; }
    .footer-logo { display: inline-flex; margin-bottom: 16px; }
    .footer-logo .logo-text .l1 { color: #fff; }
    .footer-logo .logo-text .l2 { color: rgba(255,255,255,0.4); }
    .footer-brand p { font-size: 0.9rem; line-height: 1.78; max-width: 268px; }
    .footer-social { display: flex; gap: 10px; margin-top: 22px; }
    .social-btn {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.65); text-decoration: none; font-size: 1rem;
      transition: background var(--transition), color var(--transition), transform var(--transition);
    }
    .social-btn:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
    .footer-col h4 { color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 20px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color var(--transition), padding-left var(--transition); }
    .footer-links a:hover { color: #f47ba7; padding-left: 6px; }
    .contact-items { display: flex; flex-direction: column; gap: 14px; }
    .contact-item { display: flex; align-items: flex-start; gap: 11px; font-size: 0.9rem; }
    .contact-item i { color: var(--brand); margin-top: 3px; width: 16px; flex-shrink: 0; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 26px; text-align: center; font-size: 0.83rem; }
    .footer-bottom span { color: #f47ba7; }

    /* Back to top */
    #back-top {
      position: fixed; bottom: 26px; right: 26px; z-index: 999;
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--brand); color: #fff; border: none; font-size: 1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity var(--transition), transform var(--transition);
      box-shadow: 0 6px 18px rgba(190,8,77,0.4);
    }
    #back-top.show { opacity: 1; pointer-events: auto; }
    #back-top:hover { transform: translateY(-4px); }

    /* ── RESPONSIVE ── */
    @media (max-width: 960px) {
      #home { grid-template-columns: 1fr; min-height: auto; }
      .hero-right { height: 380px; }
      .hero-main-img::after { background: linear-gradient(to bottom, var(--light) 0%, transparent 30%); }
      .hero-float-cards { right: 4%; bottom: 14px; flex-direction: row; flex-wrap: wrap; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex; flex-direction: column; position: fixed;
        top: 72px; left: 0; right: 0; background: #fff; padding: 22px 5%; gap: 18px;
        border-top: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      }
      .hero-float-cards { display: none; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .stat { padding: 18px 22px; }
      .emergency-inner { flex-direction: column; align-items: flex-start; }
      .emergency-action { align-items: flex-start; }
    }
    @media (max-width: 480px) {
      .hero-highlights { flex-direction: row; gap: 14px; }
      .hero-btns { flex-direction: column; }
      .btn-primary, .btn-secondary { justify-content: center; }
    }
     /* Container */
  .call-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }

  /* Call Button */
  .call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #28a745;
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    animation: pulse 1.5s infinite;
    transition: 0.3s;
  }

  .call-btn:hover {
    background: #218838;
    transform: scale(1.05);
  }

  /* Icon */
  .call-btn i {
    font-size: 18px;
  }

  /* Pulse Animation */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
      box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
  }
  @media(max-width: 768px) {
    .hero-main-img {
      position: absolute; inset: 0;
      background: url('../img/servicemobile.png') center/cover no-repeat;
    }
  }