
    /* ============================================================
       BRAND VARIABLES
    ============================================================ */
    :root {
      --primary:        #2A6F8E;
      --primary-dark:   #1A4F6A;
      --primary-light:  #3D8BAD;
      --primary-pale:   #EAF4F8;
      --accent:         #C41E6A;
      --accent-dark:    #9A1550;
      --accent-light:   #D4357A;
      --accent-pale:    #FCEEF4;

      --bg:             #F7F3EE;
      --bg-white:       #FFFFFF;
      --bg-section:     #F0EBE3;

      --text-dark:      #1A2A3A;
      --text-body:      #3D5066;
      --text-muted:     #333;

      --border:         #E2D9CE;
      --shadow-sm:      0 2px 16px rgba(42,111,142,0.08);
      --shadow-md:      0 8px 40px rgba(42,111,142,0.12);
      --shadow-lg:      0 20px 60px rgba(42,111,142,0.16);
      --radius-sm:      10px;
      --radius-md:      18px;
      --radius-lg:      28px;
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--bg);
      color: var(--text-body);
      overflow-x: hidden;
      line-height: 1.7;
    }
    ::selection { background: var(--accent); color: #fff; }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

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

    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    h1, h2, h3, h4 { font-family: 'Philosopher', serif; color: var(--text-dark); line-height: 1.15; }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }
    .section-tag::before,
    .section-tag::after {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--accent);
    }

    .section-title {
      font-family: 'Philosopher', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 18px;
    }
    .section-title span.blue  { color: var(--primary); }
    .section-title span.pink  { color: var(--accent); }

    .section-desc {
      font-size: 1rem;
      color: var(--text-muted);
      line-height: 1.85;
    }

    .divider {
      width: 50px;
      height: 3px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      margin: 16px 0 24px;
    }
    .divider.center { margin: 16px auto 24px; }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn-rose {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
      color: #fff;
      padding: 15px 34px;
      border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 28px rgba(196,30,106,0.35);
    }
    .btn-rose:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(196,30,106,0.5);
      color: #fff;
    }

    .btn-teal {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      color: #fff;
      padding: 15px 34px;
      border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 28px rgba(42,111,142,0.3);
    }
    .btn-teal:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 36px rgba(42,111,142,0.5);
      color: #fff;
    }

    .btn-outline-teal {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--primary);
      padding: 14px 32px;
      border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid var(--primary);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .btn-outline-teal:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(42,111,142,0.3);
    }

    /* ============================================================
       NAVBAR
    ============================================================ */
    #mainNav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 0;
      transition: all 0.4s ease;
      background: transparent;
    }
    #mainNav.scrolled {
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(20px);
      padding: 12px 0;
      box-shadow: 0 2px 30px rgba(42,111,142,0.1);
      border-bottom: 1px solid var(--border);
    }
    .navbar-brand img {
      height: 50px;
      transition: height 0.3s ease;
      filter: brightness(0) invert(1);
    }
    #mainNav.scrolled .navbar-brand img {
      height: 42px;
      filter: none;
    }

    .navbar-toggler {
      border: 1px solid rgba(255,255,255,0.4);
      padding: 7px 11px;
    }
    #mainNav.scrolled .navbar-toggler { border-color: var(--border); }

    .toggler-bar {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      margin: 4px 0;
      transition: 0.3s;
    }
    #mainNav.scrolled .toggler-bar { background: var(--text-dark); }

    .nav-link {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      color: rgba(255,255,255,0.85) !important;
      padding: 6px 14px !important;
      text-transform: uppercase;
      transition: color 0.3s ease;
      font-weight: 600;
    }
    #mainNav.scrolled .nav-link { color: var(--text-muted) !important; }

    #mainNav.scrolled .nav-link:hover { color: var(--primary) !important; }

    .nav-link:hover { color: #fff !important; }
    #mainNav.scrolled .nav-cta { color: #fff!important; }
    .nav-cta {
      background: linear-gradient(135deg, var(--accent-dark), var(--accent));
      color: #fff !important;
      border-radius: 30px;
      padding: 9px 22px !important;
      font-size: 0.72rem;
      box-shadow: 0 4px 16px rgba(196,30,106,0.4);
      transition: all 0.3s ease !important;
    }
    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(196,30,106,0.55) !important;
      color: #fff !important;
    }

    /* ============================================================
       HERO SECTION - ELEGANT CENTERED FULL-BLEED
    ============================================================ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: url('/images/hero.jpg') center center / cover no-repeat;
      padding: 140px 0 100px;
      overflow: hidden;
    }

    /* Multi-layered premium overlay */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(13, 35, 46, 0.48) 0%, rgba(15, 20, 26, 0.68) 50%, rgba(26, 79, 106, 0.48) 100%);
      z-index: 1;
    }

    /* Subtle background glow effect */
    #hero::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60%;
      height: 60%;
      background: radial-gradient(circle, rgba(196, 30, 106, 0.15) 0%, transparent 70%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 960px;
      width: 100%;
      padding: 0 24px;
      text-align: center;
      margin: auto;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 50px;
      padding: 8px 22px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 28px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    }
    
    .pulse-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #7EFFC5;
      box-shadow: 0 0 10px #7EFFC5;
      display: inline-block;
      animation: pillPulse 1.8s infinite;
    }
    @keyframes pillPulse {
      0% { transform: scale(0.9); opacity: 0.6; }
      50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 14px #7EFFC5; }
      100% { transform: scale(0.9); opacity: 0.6; }
    }

    .hero-arabic {
      font-family: 'Amiri', serif;
      font-size: clamp(1.2rem, 2.5vw, 1.8rem);
      font-weight: 300;
      font-style: italic;
      color: #f3dfca; /* champagne gold */
      margin-bottom: 18px;
      letter-spacing: 0.05em;
      text-shadow: 0 2px 14px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.6);
    }

    .hero-title {
      font-family: 'Philosopher', serif;
      font-size: clamp(2.8rem, 5.5vw, 5.2rem);
      font-weight: 700;
      line-height: 1.15;
      color: #fff;
      margin-bottom: 0;
      text-shadow: 0 4px 28px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
    }
    .hero-title .word-teal {
      color: #5ab1d7; /* brighter premium teal for dark bg */
      display: inline;
    }
    .hero-title .word-pink {
      color: #e44283; /* brighter premium pink for dark bg */
      display: inline;
    }

    /* Luxurious centered divider */
    .hero-divider {
      width: 180px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(90, 177, 215, 0.6), rgba(228, 66, 131, 0.6), transparent);
      margin: 28px auto;
      position: relative;
    }
    

    .hero-sub {
      font-family: 'Philosopher', serif;
      font-size: clamp(1.2rem, 2.2vw, 1.6rem);
      font-style: italic;
      color: #f3dfca;
      margin-bottom: 18px;
      line-height: 1.5;
      text-shadow: 0 2px 14px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.6);
    }

    .hero-desc {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.88);
      line-height: 1.85;
      margin-bottom: 42px;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.6);
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Centered trust badges */
    .hero-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      margin-top: 54px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      flex-wrap: wrap;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.75);
      text-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }
    .trust-item i {
      color: #5ab1d7;
      font-size: 1rem;
    }

    /* Scroll indicator centered */
    .hero-scroll {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .hero-scroll span {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.58rem;
      letter-spacing: 0.28em;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, #5ab1d7, transparent);
      animation: scrollLine 1.8s ease infinite;
    }
    @keyframes scrollLine {
      0%   { opacity: 1; height: 40px; }
      100% { opacity: 0; height: 10px; }
    }

    /* Responsive styling */
    @media (max-width: 991.98px) {
      #hero {
        padding: 130px 0 80px;
      }
      .hero-trust {
        gap: 20px;
        margin-top: 40px;
        padding-top: 24px;
      }
    }
    @media (max-width: 575.98px) {
      #hero {
        padding: 120px 0 70px;
      }
      .hero-btns {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
      }
      .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        margin: 32px auto 0;
        gap: 12px;
      }
    }

    /* ============================================================
       VERSE STRIP
    ============================================================ */
    .verse-strip {
      position: relative;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      padding: 80px 0;
      text-align: center;
      overflow: hidden;
    }
    .verse-strip::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 150%; height: 150%;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
      pointer-events: none;
    }
    .verse-strip .container {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }
    .verse-strip .arabic {
      font-family: 'Amiri', serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      color: #f3dfca;
      direction: rtl;
      margin-bottom: 24px;
      line-height: 1.6;
      text-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .verse-strip .translation {
      font-family: 'Philosopher', serif;
      font-size: clamp(1.2rem, 2vw, 1.4rem);
      font-style: italic;
      color: rgba(255,255,255,0.9);
      margin-bottom: 16px;
      line-height: 1.6;
    }
    .verse-strip .ref {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .verse-strip .ref::before,
    .verse-strip .ref::after {
      content: '';
      display: block;
      width: 40px;
      height: 1px;
      background: rgba(255,255,255,0.25);
    }

    /* ============================================================
       FEATURES SECTION
    ============================================================ */
    #features {
      padding: 100px 0;
      background: var(--bg-white);
    }

    .feature-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 38px 30px;
      height: 100%;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .feature-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: scaleX(0);
      transition: transform 0.35s ease;
      transform-origin: left;
    }
    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(42,111,142,0.2);
    }
    .feature-card:hover::after { transform: scaleX(1); }

    .feat-icon {
      width: 66px;
      height: 66px;
      border-radius: 16px;
      background: var(--primary-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      color: var(--primary);
      margin-bottom: 22px;
      transition: all 0.35s ease;
    }
    .feature-card:hover .feat-icon {
      background: var(--accent-pale);
      color: var(--accent);
    }

    .feat-title {
      font-family: 'Philosopher', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .feat-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.78; }

    /* Check list */
    .check-list { list-style: none; padding: 0; }
    .check-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.95rem;
      color: var(--text-body);
    }
    .check-list li:last-child { border-bottom: none; }
    .check-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--primary-pale);
      border: 1.5px solid var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      color: var(--primary);
      flex-shrink: 0;
    }

    /* ============================================================
       SERVICES SECTION
    ============================================================ */
    #services {
      padding: 100px 0;
      background: var(--bg);
    }

    .service-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      height: 100%;
      transition: all 0.4s ease;
      border: 1px solid var(--border);
    }
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .service-img-wrap {
      position: relative;
      height: 230px;
      overflow: hidden;
    }
    .service-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .service-card:hover .service-img-wrap img { transform: scale(1.06); }

    .service-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,42,58,0.65) 0%, transparent 60%);
    }

    .service-num-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--accent);
      color: #fff;
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: 0.12em;
    }

    .service-body {
      padding: 28px 28px 32px;
    }
    .service-title {
      font-family: 'Cinzel', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
    }
    .service-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.8;
    }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: var(--primary);
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-decoration: none;
      text-transform: uppercase;
      transition: gap 0.3s ease, color 0.3s ease;
    }
    .service-link:hover { gap: 14px; color: var(--accent); }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    #about {
      padding: 100px 0;
      background: var(--bg-white);
    }

    .about-img-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .about-img-wrap img {
      width: 100%;
      height: 580px;
      object-fit: cover;
    }

    .about-badge {
      position: absolute;
      bottom: 28px;
      left: 28px;
      background: #fff;
      border-radius: var(--radius-md);
      padding: 18px 22px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .about-badge-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--accent-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--accent);
    }
    .about-badge-num {
      font-family: 'Cinzel', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1;
    }
    .about-badge-label { font-size: 0.75rem; color: var(--text-muted); }

    .about-badge-2 {
      position: absolute;
      top: 28px;
      right: -20px;
      background: var(--primary);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      box-shadow: var(--shadow-md);
      color: #fff;
      text-align: center;
      min-width: 130px;
    }
    .about-badge-2 .num {
      font-family: 'Cinzel', serif;
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1;
    }
    .about-badge-2 .lbl { font-size: 0.72rem; opacity: 0.8; margin-top: 4px; }

    .highlights-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 32px;
    }
    .hl-item {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: all 0.3s ease;
    }
    .hl-item:hover {
      background: var(--primary-pale);
      border-color: rgba(42,111,142,0.3);
      transform: translateX(4px);
    }
    .hl-icon { font-size: 1.2rem; color: var(--accent); flex-shrink: 0; }
    .hl-text { font-size: 0.85rem; font-weight: 500; color: var(--text-dark); }

    /* ============================================================
       STATS BAR
    ============================================================ */
    .stats-bar {
      position: relative;
      background: url('images/islamic_pattern.png') center/cover;
      padding: 70px 0;
    }
    .stats-bar::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26,79,106,0.92) 0%, rgba(42,111,142,0.92) 100%);
    }
    .stats-bar .container {
      position: relative;
      z-index: 2;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 15px;
    }
    @media (min-width: 768px) {
      .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
      }
      .stat-item {
        border-right: 1px solid rgba(255,255,255,0.15);
      }
      .stat-item:last-child {
        border-right: none;
      }
    }
    .stat-item { text-align: center; padding: 10px; }
    .stat-num {
      font-family: 'Philosopher', serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: #fff;
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-num span { color: #fff; }
    .stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; }

    /* ============================================================
       FAQ
    ============================================================ */
    #faq {
      padding: 100px 0;
      background: var(--bg);
    }

    .faq-item {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      margin-bottom: 12px;
      overflow: hidden;
      transition: all 0.35s ease;
    }
    .faq-item.open {
      border-color: rgba(42,111,142,0.3);
      box-shadow: var(--shadow-md);
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      padding: 22px 26px;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      font-family: 'Cinzel', serif;
      font-size: 0.88rem;
      color: var(--text-dark);
      letter-spacing: 0.02em;
      line-height: 1.5;
      transition: color 0.3s;
    }
    .faq-item.open .faq-q { color: var(--primary); }

    .faq-toggle {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--primary-pale);
      border: 1.5px solid rgba(42,111,142,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.85rem;
      color: var(--primary);
      transition: all 0.35s ease;
    }
    .faq-item.open .faq-toggle {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      transform: rotate(45deg);
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1);
    }
    .faq-body-inner {
      padding: 0 26px 22px;
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.85;
    }
    .faq-body-inner ul {
      list-style: none;
      margin-top: 10px;
      padding: 0;
    }
    .faq-body-inner ul li {
      padding: 4px 0 4px 18px;
      position: relative;
      font-size: 0.88rem;
    }
    .faq-body-inner ul li::before {
      content: '*';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-size: 0.45rem;
      top: 9px;
    }

    /* ============================================================
       CTA BAND
    ============================================================ */
    #cta {
      position: relative;
      padding: 100px 0;
      background: url('https://images.unsplash.com/photo-1609158811649-e05296f93b69?w=1600&q=80&auto=format&fit=crop') center center / cover no-repeat;
    }
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26,79,106,0.93) 0%, rgba(154,21,80,0.85) 100%);
    }
    .cta-inner { position: relative; z-index: 1; text-align: center; }
    .cta-inner h2 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }
    .cta-inner p {
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      max-width: 560px;
      margin: 0 auto 40px;
      line-height: 1.8;
    }
    .cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

    /* WhatsApp btn */
    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: #fff;
      padding: 15px 32px;
      border-radius: 50px;
      font-family: 'Cinzel', serif;
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    }
    .btn-whatsapp:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(37,211,102,0.6);
      color: #fff;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    #contact {
      background: var(--text-dark);
      padding: 80px 0 0;
      color: rgba(255,255,255,0.7);
    }

    .footer-logo img {
      height: 52px;
      margin-bottom: 18px;
      filter: brightness(0) invert(1) opacity(0.9);
    }
    .footer-desc { font-size: 0.88rem; line-height: 1.85; max-width: 300px; }

    .footer-h {
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--primary-light);
      margin-bottom: 18px;
    }

    .footer-link {
      display: block;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.88rem;
      padding: 5px 0;
      transition: all 0.3s ease;
    }
    .footer-link:hover { color: #fff; padding-left: 8px; }

    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
    }
    .ci-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(42,111,142,0.2);
      border: 1px solid rgba(42,111,142,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--primary-light);
      flex-shrink: 0;
    }
    .ci-label { font-size: 0.68rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
    .ci-val { font-size: 0.88rem; color: rgba(255,255,255,0.8); }
    .ci-val a { color: inherit; text-decoration: none; transition: color 0.3s; }
    .ci-val a:hover { color: var(--accent-light); }

    .social-icons { display: flex; gap: 10px; margin-top: 22px; }
    .si {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.3s ease;
    }
    .si:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      transform: translateY(-3px);
    }

    .newsletter-form {
      display: flex;
      gap: 8px;
      margin-top: 14px;
    }
    .nl-input {
      flex: 1;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 8px;
      padding: 11px 14px;
      color: #fff;
      font-size: 0.85rem;
      outline: none;
      transition: border-color 0.3s;
    }
    .nl-input::placeholder { color: rgba(255,255,255,0.35); }
    .nl-input:focus { border-color: var(--primary-light); }
    .nl-btn {
      background: linear-gradient(135deg, var(--accent-dark), var(--accent));
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 11px 16px;
      font-size: 0.82rem;
      cursor: pointer;
      font-family: 'Cinzel', serif;
      letter-spacing: 0.05em;
      white-space: nowrap;
      transition: all 0.3s;
    }
    .nl-btn:hover { box-shadow: 0 4px 16px rgba(196,30,106,0.4); transform: translateY(-1px); }

    .footer-sep {
      border-color: rgba(255,255,255,0.08);
      margin: 48px 0 0;
    }
    .footer-bottom {
      padding: 22px 0;
      font-size: 0.8rem;
      color: rgba(255,255,255,0.35);
      text-align: center;
    }
    .footer-bottom a { color: var(--primary-light); text-decoration: none; }

    /* ============================================================
       WHATSAPP FLOAT
    ============================================================ */
    .wa-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 9999;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.55rem;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 6px 24px rgba(37,211,102,0.55);
      animation: waPulse 2.5s ease infinite;
      transition: transform 0.3s ease;
    }
    .wa-float:hover { transform: scale(1.12); color: #fff; }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
      60%       { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
    }
    .wa-tooltip {
      position: absolute;
      right: 66px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--text-dark);
      color: #fff;
      border-radius: 8px;
      padding: 6px 12px;
      font-size: 0.75rem;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      border: 1px solid rgba(37,211,102,0.25);
      font-family: 'Cinzel', serif;
    }
    .wa-float:hover .wa-tooltip { opacity: 1; }

    /* Back to top */
    .back-top {
      position: fixed;
      bottom: 30px;
      left: 30px;
      z-index: 9999;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--bg-white);
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: var(--primary);
      text-decoration: none;
      box-shadow: var(--shadow-sm);
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s ease;
    }
    .back-top.show { opacity: 1; pointer-events: all; }
    .back-top:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

    /* ============================================================
       SCROLL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.up    { transform: translateY(36px); }
    .reveal.down  { transform: translateY(-36px); }
    .reveal.in    { opacity: 1; transform: translate(0); }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }
    .d4 { transition-delay: 0.4s; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 991.98px) {
      .about-badge-2 { right: 10px; }
      .about-img-wrap img { height: 420px; }
    }
    @media (max-width: 767.98px) {
      .highlights-grid { grid-template-columns: 1fr; }
      .newsletter-form { flex-direction: column; }
      .cta-btns { flex-direction: column; align-items: center; }
      .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.3rem; }
      .back-top { bottom: 20px; left: 20px; }
      .stat-divider { display: none; }
    }

    /* ============================================================
       BLOG (blog.html)
    ============================================================ */
    .blog-wrap {
      padding: 90px 0 40px;
      background: var(--bg-white);
    }

    .blog-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }

    .blog-card-media {
      position: relative;
      height: 220px;
      overflow: hidden;
      background: #0b1c22;
    }
    .blog-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      transition: transform 0.6s ease;
    }
    .blog-card:hover .blog-card-media img { transform: scale(1.08); }

    .blog-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(26,111,142,0.25) 0%, rgba(196,30,106,0.25) 50%, rgba(0,0,0,0.25) 100%);
    }

    .blog-pill {
      position: absolute;
      left: 18px;
      top: 18px;
      padding: 7px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff;
      font-size: 0.74rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-family: 'Cinzel', serif;
      backdrop-filter: blur(10px);
    }
    .blog-pill-pink { background: rgba(196,30,106,0.35); border-color: rgba(196,30,106,0.55); }
    .blog-pill-teal { background: rgba(42,111,142,0.35); border-color: rgba(42,111,142,0.55); }

    .blog-card-body {
      padding: 26px 26px 28px;
    }

    .blog-title {
      font-family: 'Philosopher', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
      line-height: 1.25;
    }

    .blog-excerpt {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.85;
      margin-bottom: 14px;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.82rem;
      color: rgba(61,80,102,0.75);
      margin-bottom: 18px;
      flex-wrap: wrap;
    }
    .blog-meta .dot { opacity: 0.6; }

    .blog-readmore {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Cinzel', serif;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      text-decoration: none;
      font-size: 0.78rem;
      transition: color 0.3s ease, gap 0.3s ease;
    }
    .blog-readmore:hover { color: var(--accent); gap: 14px; }

    .blog-pagination {
      display: flex;
      gap: 10px;
      align-items: center;
      justify-content: center;
      margin-top: 26px;
      flex-wrap: wrap;
    }

    .blog-page-btn {
      text-decoration: none;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1.5px solid var(--border);
      color: var(--text-dark);
      font-size: 0.85rem;
      transition: all 0.3s ease;
      background: var(--bg-white);
    }
    .blog-page-btn:hover { border-color: rgba(42,111,142,0.5); color: var(--primary); transform: translateY(-2px); }
    .blog-page-btn-active {
      background: linear-gradient(135deg, var(--accent-dark), var(--accent));
      border-color: var(--accent);
      color: #fff;
    }

    .blog-sidebar { position: sticky; top: 110px; }

    .sidebar-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 22px 20px;
      box-shadow: var(--shadow-sm);
      margin-bottom: 18px;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .sidebar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

    .sidebar-title {
      font-family: 'Cinzel', serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .sidebar-links { list-style: none; padding: 0; margin: 0; }
    .sidebar-links li { margin: 10px 0; }
    .sidebar-links a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 0.92rem;
      display: flex;
      gap: 10px;
      align-items: center;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .sidebar-links a:hover { color: var(--accent); transform: translateX(4px); }

    .popular-list { list-style: none; padding: 0; margin: 0; }
    .popular-list li { margin: 14px 0; }
    .popular-list a {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-muted);
      transition: color 0.3s ease;
    }
    .popular-list a:hover { color: var(--primary); }
    .popular-list .num {
      font-family: 'Cinzel', serif;
      font-weight: 800;
      color: var(--accent);
      background: var(--accent-pale);
      border: 1px solid rgba(196,30,106,0.2);
      padding: 6px 10px;
      border-radius: 12px;
      font-size: 0.78rem;
    }
    .popular-list .txt { font-size: 0.92rem; font-weight: 600; }

    .sidebar-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }

    .blog-newsletter .nl-input { background: var(--bg); }
    .blog-newsletter-note {
      font-size: 0.9rem;
      color: var(--primary);
      background: rgba(42,111,142,0.08);
      border: 1px solid rgba(42,111,142,0.18);
      padding: 10px 12px;
      border-radius: 10px;
    }

    .sidebar-cta { background: linear-gradient(135deg, rgba(42,111,142,0.06) 0%, rgba(196,30,106,0.06) 100%); }

    @media (max-width: 991.98px) {
      .blog-sidebar { position: static; top: auto; }
      .blog-card-body { padding: 22px 18px 24px; }
    }
    @media (max-width: 575.98px) {
      .blog-card-media { height: 200px; }
    }
      /* ============================================================
       CONTACT FORM
    ============================================================ */
    #contact-form-section {
      padding: 100px 0;
      background: var(--bg-section);
    }
    .contact-card {
      background: var(--bg-white);
      padding: 40px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border);
    }
    .premium-input {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 16px 20px;
      border-radius: var(--radius-sm);
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      color: var(--text-dark);
      transition: all 0.3s ease;
    }
    .premium-input:focus {
      background: var(--bg-white);
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(42,111,142,0.1);
      outline: none;
    }
    @media (max-width: 991.98px) {
      .navbar-collapse {
        background: rgba(26, 42, 58, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      }
      #mainNav.scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 10px 30px rgba(42,111,142,0.1);
      }
      #mainNav:not(.scrolled) .nav-link { color: #fff !important; }
      #mainNav:not(.scrolled) .nav-link:hover { color: var(--accent) !important; }
      #features .feature-card
    {margin-bottom: 35px!important; height: 90%}
    .service-card
    {margin-bottom: 35px!important; height: 90%}
    }