:root {
      --purple-dark: #4a1fa8;
      /*--purple-main: #6c35de;*/
      --purple-main: #cb2c2c;
      --purple-light: #9b6dff;
      --purple-pale: #ede8ff;
      --gold: #f7b731;
      --gold-dark: #e0a020;
      --white: #ffffff;
      --gray-100: #f8f7ff;
      --gray-200: #efefef;
      --gray-600: #666;
      --gray-800: #222;
      --radius: 16px;
      --radius-sm: 10px;
      --shadow: 0 4px 32px rgba(108, 53, 222, 0.10);
      --shadow-card: 0 2px 24px rgba(108, 53, 222, 0.08);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Manrope', sans-serif;
      color: var(--gray-800);
      background: #fff;
      overflow-x: hidden;
    }

    /* ===================== NAVBAR ===================== */
    .navbar {
      background: #fff;
      border-bottom: 1px solid rgba(108, 53, 222, 0.08);
      padding: 14px 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: 1.25rem;
      color: var(--purple-main) !important;
      text-decoration: none;
    }

    .navbar-brand .brand-icon {
      width: 36px;
      height: 36px;
      background: var(--purple-main);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
    }

    .navbar-brand span.brand-sub {
      color: var(--gray-800);
      font-size: 0.78rem;
      font-weight: 500;
      display: block;
      line-height: 1;
    }

    .navbar .nav-link {
      color: var(--gray-800) !important;
      font-weight: 600;
      font-size: 0.92rem;
      padding: 6px 14px !important;
      border-radius: 8px;
      transition: background 0.2s, color 0.2s;
    }

    .navbar .nav-link:hover {
      background: var(--purple-pale);
      color: var(--purple-main) !important;
    }

    .lang-btn {
      border: 2px solid var(--gray-200);
      border-radius: 8px;
      padding: 4px 10px;
      font-weight: 700;
      font-size: 0.82rem;
      cursor: pointer;
      background: #fff;
      color: var(--gray-800);
      transition: all 0.2s;
    }

    .lang-btn.active {
      background: var(--purple-main);
      color: #fff;
      border-color: var(--purple-main);
    }

    .call-btn {
      background: var(--purple-main);
      color: #fff !important;
      border-radius: 10px;
      padding: 8px 16px !important;
      font-weight: 700;
      font-size: 0.88rem;
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      transition: background 0.2s;
    }

    .call-btn:hover {
      background: var(--purple-dark);
    }

    /* ===================== HERO ===================== */
    .hero {
    background: linear-gradient(135deg, #cb2c2c 0%, #b30000 50%, #cb2c2c 100%);
      min-height: 520px;
      padding: 60px 0 80px;
      position: relative;
      overflow: hidden;
    }
.quote-card a{
    text-decoration: none;
}
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      
        radial-gradient(ellipse at 10% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 55%);
      pointer-events: none;
    }

    .hero-trusted {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.18);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      padding: 5px 14px;
      color: #fff;
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 20px;
      backdrop-filter: blur(6px);
    }

    .hero h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero .subtitle {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 6px;
    }

    .hero .subtitle-bold {
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 28px;
    }

    /* Quote Form Card */
    .quote-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 28px 20px;
      box-shadow: 0 16px 64px rgba(0, 0, 0, 0.18);
      max-width: 500px;
      margin: 0 auto;
    }

    .quote-card h3 {
      font-family: 'Fraunces', serif;
      font-size: 1.2rem;
      font-weight: 900;
      text-align: center;
      color: var(--gray-800);
      margin-bottom: 4px;
    }

    .quote-card .sub-text {
      text-align: center;
      font-size: 0.8rem;
      color: var(--gray-600);
      margin-bottom: 16px;
    }

    .quote-card .input-row {
      display: flex;
      gap: 10px;
      margin-bottom: 14px;
    }

    .quote-card input,
    .quote-card select {
      flex: 1;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.88rem;
      color: var(--gray-800);
      outline: none;
      transition: border-color 0.2s;
      background: #fafafa;
    }

    .quote-card input:focus,
    .quote-card select:focus {
      border-color: var(--purple-main);
      background: #fff;
    }

    .quote-card .btn-get {
      width: 100%;
      background: var(--purple-main);
      color: #fff;
      border: none;
      border-radius: var(--radius-sm);
      padding: 13px;
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .quote-card .btn-get:hover {
      background:#930f0f;
      transform: translateY(-1px);
    }

    .quote-card .trust-row {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 12px;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.75rem;
      color: #444;
      font-weight: 600;
    }

    .trust-badge .dot {
      color: var(--purple-main);
      font-size: 10px;
    }

    .quote-card .phone-link {
      display: block;
      text-align: center;
      margin-top: 10px;
      font-size: 0.82rem;
      color: var(--gray-600);
    }

    .quote-card .phone-link a {
      color: var(--purple-main);
      font-weight: 700;
      text-decoration: none;
    }

    /* Hero Stats */
    .hero-stats {
      display: flex;
      gap: 0;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    .hero-stat {
      text-align: center;
      padding: 16px 32px;
      border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-stat:last-child {
      border-right: none;
    }

    .hero-stat .val {
      font-family: 'Fraunces', serif;
      font-size: 1.7rem;
      font-weight: 900;
      color: #fff;
      display: block;
    }

    .hero-stat .lbl {
      color: rgba(255, 255, 255, 0.75);
      font-size: 0.8rem;
      font-weight: 600;
    }

    /* ===================== HOW IT WORKS ===================== */
    .section {
      padding: 80px 0;
    }

    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 900;
      text-align: center;
      color: var(--gray-800);
      margin-bottom: 8px;
    }

    .section-sub {
      text-align: center;
      color: var(--gray-600);
      font-size: 0.98rem;
      margin-bottom: 48px;
    }

    .step-card {
      background: #fff;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: left;
      transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
      height: 100%;
    }

    .step-card:hover {
      box-shadow: var(--shadow);
      border-color: var(--purple-light);
      transform: translateY(-4px);
    }

    .step-num {
      width: 44px;
      height: 44px;
      background: var(--purple-main);
      color: #fff;
      border-radius: 12px;
      font-family: 'Fraunces', serif;
      font-size: 1.3rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .step-card h4 {
      font-weight: 800;
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .step-card p {
      font-size: 0.88rem;
      color: var(--gray-600);
      margin-bottom: 12px;
    }

    .step-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--purple-main);
      background: var(--purple-pale);
      padding: 4px 10px;
      border-radius: 50px;
    }

    /* ===================== SERVICES ===================== */
    .services-section {
      background: var(--gray-100);
    }

    .service-card {
      background: #fff;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 22px 20px 18px;
      transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      box-shadow: var(--shadow);
      border-color: var(--purple-light);
      transform: translateY(-4px);
    }

    .service-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .service-icon {
      width: 42px;
      height: 42px;
      background: var(--purple-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--purple-main);
      font-size: 20px;
    }

    .service-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--gold-dark);
    }

    .service-card h5 {
      font-weight: 800;
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .service-card .service-desc {
      font-size: 0.82rem;
      color: var(--gray-600);
      margin-bottom: 12px;
    }

    .service-meta {
      margin-bottom: 14px;
    }

    .service-meta .meta-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.8rem;
      margin-bottom: 3px;
    }

    .service-meta .meta-label {
      color: var(--gray-600);
      font-weight: 500;
    }

    .service-meta .meta-val {
      font-weight: 700;
      color: var(--gray-800);
    }

    .btn-quotes {
      width: 100%;
      background: var(--purple-main);
      color: #fff;
      border: none;
      border-radius: var(--radius-sm);
      padding: 10px;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 0.88rem;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .btn-quotes:hover {
      background: var(--purple-dark);
    }

    .btn-view-all {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 2px solid var(--purple-main);
      color: var(--purple-main);
      border-radius: var(--radius-sm);
      padding: 12px 28px;
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
    }

    .btn-view-all:hover {
      background: var(--purple-main);
      color: #fff;
    }

    /* ===================== WHY US ===================== */
    .why-section {
      background: linear-gradient(135deg, #841212 0%, #cb2c2c 60%, #a30202 100%);
      padding: 70px 0;
    }

    .why-card {
      text-align: center;
      padding: 20px;
    }

    .why-icon {
      width: 68px;
      height: 68px;
      background: rgba(255, 255, 255, 0.15);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      color: #fff;
      font-size: 28px;
      backdrop-filter: blur(4px);
    }

    .why-card h5 {
      font-family: 'Fraunces', serif;
      font-size: 1.05rem;
      font-weight: 900;
      color: #fff;
      margin-bottom: 10px;
    }

    .why-card p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.8);
    }

    /* ===================== CTA ===================== */
    .cta-section {
      padding: 80px 0;
      background: #fff;
      text-align: center;
    }

    .cta-section h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .cta-section p {
      color: var(--gray-600);
      margin-bottom: 28px;
      font-size: 1rem;
    }

    .btn-cta-main {
      background: var(--purple-main);
      color: #fff;
      border: none;
      border-radius: 12px;
      padding: 16px 36px;
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-cta-main:hover {
      background: #970e0e;
      transform: translateY(-2px);
    }

    .cta-micro {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 14px;
      font-size: 0.82rem;
      color: var(--gray-600);
      font-weight: 600;
    }

    .cta-micro span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .cta-micro i {
      color: var(--purple-main);
    }

    /* ===================== FOOTER ===================== */
    footer {
      background: #fff;
      border-top: 1px solid var(--gray-200);
      padding: 50px 0 24px;
    }

    .footer-brand {
      font-family: 'Fraunces', serif;
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--purple-main);
      margin-bottom: 8px;
    }

    .footer-tagline {
      font-size: 0.82rem;
      color: var(--gray-600);
      margin-bottom: 16px;
    }

    .footer-contact a {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gray-800);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 6px;
      text-decoration: none;
    }

    .footer-contact a i {
      color: var(--purple-main);
    }

    .footer-social {
      display: flex;
      gap: 8px;
      margin-top: 14px;
    }

    .social-icon {
      width: 34px;
      height: 34px;
      background: var(--purple-pale);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--purple-main);
      font-size: 15px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }

    .social-icon:hover {
      background: var(--purple-main);
      color: #fff;
    }

    footer h6 {
      font-weight: 800;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gray-800);
      margin-bottom: 14px;
    }

    footer ul {
      list-style: none;
      padding: 0;
    }

    footer ul li {
      margin-bottom: 8px;
    }

    footer ul li a {
      color: var(--gray-600);
      font-size: 0.85rem;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    footer ul li a:hover {
      color: var(--purple-main);
    }

    .footer-bottom {
      border-top: 1px solid var(--gray-200);
      margin-top: 36px;
      padding-top: 18px;
      text-align: center;
      font-size: 0.8rem;
      color: var(--gray-600);
    }

    /* ===================== ANIMATIONS ===================== */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-up {
      animation: fadeUp 0.55s ease forwards;
    }

    .delay-1 {
      animation-delay: 0.1s;
      opacity: 0;
    }

    .delay-2 {
      animation-delay: 0.22s;
      opacity: 0;
    }

    .delay-3 {
      animation-delay: 0.34s;
      opacity: 0;
    }

    .delay-4 {
      animation-delay: 0.46s;
      opacity: 0;
    }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 768px) {
      .hero {
        padding: 40px 0 60px;
      }

      .hero-stats {
        gap: 0;
      }

      .hero-stat {
        padding: 12px 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      }

      .hero-stat:last-child {
        border-bottom: none;
      }

      .quote-card .input-row {
        flex-direction: column;
      }

      .navbar-brand .brand-sub {
        display: none;
      }
    }