:root {
      --primary: #C85E0A;
      --primary-d: #933F00;
      --secondary: #F5B700;
      --secondary-d:   #9abf1a;
      --orange:   #ff6b35;
      --sky:      #5ec5f5;
      --muted:    #888;
      --soft:     #2a2a2a;
      --text:     #f0f0f0;
      --sub:      #646464;
      --accent: #E03A1F;
      --light: #FFF8F0;
      --dark: #1C0800;
      --text: #3D1A00;
      --topbar-bg: #1C0800;
      --nav-bg: #ffffff;
      --drop-bg: #ffffff;
      --drop-hover: #FFF1E0;
      --font-head: 'Fredoka One', cursive;
      --font-body: 'Nunito', sans-serif;
      --radius: 10px;
      --shadow: 0 8px 32px rgba(200, 94, 10, .15);
      --transition: 0.28s ease;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--light);
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ───────── TOP BAR ───────── */
    .topbar {
      background: var(--topbar-bg);
      color: #ccc;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .02em;
      padding: 6px 0;
    }

    .topbar a {
      color: #ccc;
      transition: color var(--transition);
    }

    .topbar a:hover {
      color: var(--secondary);
    }

    .topbar .tb-left {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .topbar .tb-right {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: flex-end;
    }

    .topbar i {
      color: var(--secondary);
      margin-right: 5px;
    }

    .tb-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      color: #ccc;
      font-size: .78rem;
      transition: background var(--transition), color var(--transition);
    }

    .tb-social a:hover {
      background: var(--primary);
      color: #fff;
    }

    /* ───────── HEADER / NAVBAR ───────── */
    .site-header {
      background: var(--nav-bg);
      box-shadow: 0 4px 18px rgba(0, 0, 0, .1);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    /* Logo */
    .navbar-brand img {
      height: 85px;
      object-fit: contain;
    }

    .navbar-brand {
      padding: 0;
    }

    .brand-text {
      line-height: 1.2;
    }

    .brand-name {
      font-family: var(--font-head);
      font-size: 1.35rem;
      color: var(--primary);
      display: block;
    }

    .brand-sub {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--primary-d);
      text-transform: uppercase;
    }

    /* Desktop Nav */
    .navbar-nav .nav-link {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: .87rem;
      color: var(--dark) !important;
      padding: 22px 14px !important;
      text-transform: uppercase;
      letter-spacing: .04em;
      position: relative;
      transition: color var(--transition);
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 12px;
      left: 14px;
      right: 14px;
      height: 2px;
      background: var(--primary);
      transform: scaleX(0);
      transition: transform var(--transition);
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--primary) !important;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      transform: scaleX(1);
    }

    /* Products dropdown caret */
    .nav-item.has-dropdown>.nav-link::before {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: .6rem;
      margin-left: 5px;
      vertical-align: middle;
      display: inline-block;
      transition: transform var(--transition);
    }

    .nav-item.has-dropdown:hover>.nav-link::before {
      transform: rotate(180deg);
    }

    /* ── Level 1 Dropdown ── */
    .mega-drop {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      background: var(--drop-bg);
      border-top: 3px solid var(--primary);
      border-radius: 0 0 var(--radius) var(--radius);
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
      list-style: none;
      padding: 8px 0;
      z-index: 9999;
    }

    .nav-item.has-dropdown:hover>.mega-drop {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mega-drop li {
      position: relative;
    }

    .mega-drop li a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 18px;
      font-size: .82rem;
      font-weight: 700;
      color: var(--text);
      transition: background var(--transition), color var(--transition), padding-left var(--transition);
      white-space: nowrap;
    }

    .mega-drop li a i {
      color: var(--primary);
      font-size: .8rem;
      width: 16px;
      text-align: center;
    }

    .mega-drop li a:hover {
      background: var(--drop-hover);
      color: var(--primary);
      padding-left: 24px;
    }

    .mega-drop li a .sub-arrow {
      margin-left: auto;
      font-size: .65rem;
      transition: transform var(--transition);
    }

    .mega-drop li:hover>a .sub-arrow {
      transform: rotate(-90deg);
    }

    /* ── Level 2 Dropdown ── */
    .sub-drop {
      position: absolute;
      top: 0;
      left: 100%;
      min-width: 220px;
      background: var(--drop-bg);
      border-left: 3px solid var(--secondary);
      border-radius: 0 var(--radius) var(--radius) 0;
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateX(6px);
      transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
      list-style: none;
      padding: 8px 0;
      z-index: 9999;
    }

    .mega-drop li:hover>.sub-drop {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }

    .sub-drop li a {
      padding: 8px 16px;
      font-size: .8rem;
    }

    .sub-drop li a:hover {
      background: #FFF1E0;
      color: var(--primary);
      padding-left: 22px;
    }

    /* CTA Button */
    .btn-enquire {
      background: var(--primary);
      color: #fff;
      font-family: var(--font-body);
      font-weight: 800;
      font-size: .8rem;
      border-radius: 50px;
      padding: 9px 22px;
      border: 2px solid var(--primary);
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: background var(--transition), color var(--transition), transform var(--transition);
      white-space: nowrap;
    }

    .btn-enquire:hover {
      background: transparent;
      color: var(--primary);
      transform: translateY(-1px);
    }

    /* Hamburger */
    .navbar-toggler {
      border: 2px solid var(--primary);
      border-radius: 8px;
      padding: 6px 10px;
      color: var(--primary);
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler i {
      font-size: 1.2rem;
      color: var(--primary);
    }
.mblver{
    color:#000;
}
    /* ───────── MOBILE OFFCANVAS (slides from right) ───────── */
    #mobileNav {
      width: 300px;
      max-width: 85vw;
      border-left: 4px solid var(--primary);
    }

    .offcanvas-header {
      background: var(--topbar-bg);
      color: #fff;
      padding: 14px 16px;
    }

    .offcanvas-header .offcanvas-title {
      font-family: var(--font-head);
      font-size: 1.1rem;
      color: var(--secondary);
    }

    .offcanvas-header .btn-close {
      filter: invert(1);
    }

    .offcanvas-body {
      padding: 0;
    }

    /* Mobile Accordion Nav */
    .mob-nav {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mob-nav>li {
      border-bottom: 1px solid #f0e8de;
    }

    .mob-nav>li>a,
    .mob-nav>li>.mob-parent {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 20px;
      font-weight: 700;
      font-size: .88rem;
      color: var(--text);
      cursor: pointer;
      transition: background var(--transition);
    }

    .mob-nav>li>a:hover,
    .mob-nav>li>.mob-parent:hover {
      background: #FFF1E0;
      color: var(--primary);
    }

    .mob-toggle-icon {
      transition: transform .25s;
      font-size: .75rem;
      color: var(--primary);
    }

    .mob-toggle-icon.open {
      transform: rotate(180deg);
    }

    /* Level 1 sub */
    .mob-sub {
      display: none;
      list-style: none;
      padding: 0;
      background: #FFF8F2;
    }

    .mob-sub>li {
      border-bottom: 1px solid #ede0d0;
      position: relative;
    }

    .mob-sub>li>a,
    .mob-sub>li>.mob-parent2 {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 28px;
      font-size: .82rem;
      font-weight: 700;
      color: var(--text);
      cursor: pointer;
      transition: background var(--transition);
    }

    .mob-sub>li>a:hover,
    .mob-sub>li>.mob-parent2:hover {
      background: #FFE9D2;
      color: var(--primary);
    }

    /* Level 2 sub */
    .mob-sub2 {
      display: none;
      list-style: none;
      padding: 0;
      background: #fff3e8;
    }

    .mob-sub2 li a {
      display: block;
      padding: 9px 36px;
      font-size: .78rem;
      font-weight: 600;
      color: var(--text);
      transition: background var(--transition);
    }

    .mob-sub2 li a:hover {
      background: #ffdcb8;
      color: var(--primary);
    }

    /* Mobile CTA */
    .mob-cta {
      padding: 16px 20px;
    }

    .mob-cta a {
      display: block;
      text-align: center;
      background: var(--primary);
      color: #fff;
      border-radius: 50px;
      padding: 11px;
      font-weight: 800;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .mob-social {
      padding: 0 20px 20px;
      display: flex;
      gap: 10px;
    }

    .mob-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--topbar-bg);
      color: #ccc;
      font-size: .85rem;
      transition: background var(--transition);
    }

    .mob-social a:hover {
      background: var(--primary);
      color: #fff;
    }

    /* ───────── HERO CAROUSEL ───────── */
    .hero-section {
      position: relative;
      overflow: hidden;
    }

    .hero-slide {
      position: relative;
      height: 580px;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
    }

    .hero-slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgb(151 75 0 / 41%) 0%, rgb(255 255 255 / 0%) 50%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 560px;
      color: #fff;
      padding: 0 20px;
    }

    .hero-tag {
      display: inline-block;
      background: var(--secondary);
      color: var(--dark);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: 50px;
      padding: 4px 14px;
      margin-bottom: 14px;
    }

    .hero-content h2 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 5vw, 3.2rem);
      line-height: 1.15;
      margin-bottom: 14px;
      text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
    }

    .hero-content p {
      font-size: .95rem;
      font-weight: 600;
      opacity: .85;
      margin-bottom: 24px;
    }

    .btn-hero {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary);
      color: #fff;
      border-radius: 50px;
      padding: 12px 28px;
      font-weight: 800;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .05em;
      transition: background var(--transition), transform var(--transition);
    }

    .btn-hero:hover {
      background: var(--primary-d);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-hero-outline {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, .7);
      margin-left: 12px;
    }

    .btn-hero-outline:hover {
      background: rgba(255, 255, 255, .12);
      border-color: #fff;
    }

    /* Owl hero nav/dots */
    .hero-section .owl-nav button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, .15) !important;
      color: #fff !important;
      width: 46px;
      height: 46px;
      border-radius: 50% !important;
      font-size: 1.1rem !important;
      transition: background var(--transition);
      backdrop-filter: blur(6px);
    }

    .hero-section .owl-nav button:hover {
      background: var(--primary) !important;
    }

    .hero-section .owl-nav .owl-prev {
      left: 18px;
    }

    .hero-section .owl-nav .owl-next {
      right: 18px;
    }

    .hero-section .owl-dots {
      position: absolute;
      bottom: 18px;
      width: 100%;
      text-align: center;
    }

    .hero-section .owl-dot span {
      background: rgba(255, 255, 255, .45) !important;
      width: 8px !important;
      height: 8px !important;
      border-radius: 50% !important;
      margin: 4px !important;
      transition: background var(--transition), width var(--transition) !important;
    }

    .hero-section .owl-dot.active span {
      background: var(--secondary) !important;
      width: 24px !important;
      border-radius: 4px !important;
    }

    /* ───────── SECTION HEADINGS ───────── */
    .sec-label {
      display: inline-block;
      background: rgba(200, 94, 10, .1);
      color: var(--primary);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      border-radius: 50px;
      padding: 4px 14px;
      margin-bottom: 10px;
    }

    .sec-title {
      font-family: var(--font-head);
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      color: var(--dark);
      line-height: 1.2;
    }

    .sec-title span {
      color: var(--primary);
    }

    .sec-line {
      display: block;
      width: 54px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      border-radius: 3px;
      margin: 12px auto 0;
    }

    .sec-line.left {
      margin: 12px 0 0;
    }

    /* ───────── PRODUCT CARDS ───────── */
    .prod-card {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
      background: #fff;
      transition: transform .3s, box-shadow .3s;
      cursor: pointer;
      margin: 10px 0;
    }

    .prod-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(200, 94, 10, .18);
    }

    .prod-thumb {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
    }

    .prod-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }

    .prod-card:hover .prod-thumb img {
      transform: scale(1.07);
    }

    .prod-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--secondary);
      color: var(--dark);
      font-size: .65rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      border-radius: 50px;
      padding: 3px 10px;
    }

    .prod-body {
      padding: 16px 18px 18px;
    }

    .prod-body h5 {
      font-family: var(--font-head);
      font-size: 1rem;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .prod-body p {
      font-size: .78rem;
      color: #7a5a3a;
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .prod-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .78rem;
      font-weight: 800;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: .04em;
      transition: gap var(--transition);
    }

    .prod-card:hover .prod-link {
      gap: 10px;
    }

    /* ───────── WHY US ───────── */
    .why-section {
      background: var(--topbar-bg);
      color: #fff;
    }

    .why-card {
      text-align: center;
      padding: 28px 20px;
    }

    .why-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(245, 183, 0, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      border: 2px solid rgba(245, 183, 0, .3);
      font-size: 1.5rem;
      color: var(--secondary);
      transition: background var(--transition), transform .3s;
    }

    .why-card:hover .why-icon {
      background: var(--primary);
      transform: rotateY(180deg);
    }

    .why-card h6 {
      font-family: var(--font-head);
      font-size: 1.05rem;
      margin-bottom: 6px;
      color: var(--secondary);
    }

    .why-card p {
      font-size: .8rem;
      color: rgba(255, 255, 255, .65);
      line-height: 1.6;
    }

    /* ───────── PRODUCTS CAROUSEL ───────── */
    .prod-carousel .owl-nav button {
      background: var(--primary) !important;
      color: #fff !important;
      width: 38px;
      height: 38px;
      border-radius: 50% !important;
      font-size: .9rem !important;
      transition: background var(--transition);
    }

    .prod-carousel .owl-nav button:hover {
      background: var(--primary-d) !important;
    }

    .prod-carousel .owl-nav {
      margin-top: 20px;
      text-align: center;
    }

    .prod-carousel .owl-dots {
      margin-top: 14px;
      text-align: center;
    }

    .prod-carousel .owl-dot span {
      background: #ddd !important;
      width: 8px !important;
      height: 8px !important;
      border-radius: 50% !important;
      transition: background .25s !important;
    }

    .prod-carousel .owl-dot.active span {
      background: var(--primary) !important;
    }

    /* ───────── STATS BANNER ───────── */
    .stats-banner {
      background: linear-gradient(135deg, var(--primary), var(--primary-d));
      color: #fff;
    }

    .stat-item {
      text-align: center;
      padding: 30px 15px;
    }

    .stat-num {
      font-family: var(--font-head);
      font-size: 2.8rem;
      color: var(--secondary);
      display: block;
    }

    .stat-label {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .06em;
      opacity: .85;
      text-transform: uppercase;
    }

    /* ───────── TESTIMONIALS ───────── */
    .testi-card {
      background: #fff;
      border-radius: 16px;
      padding: 26px 24px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
      position: relative;
    }

    .testi-card::before {
      content: '\201C';
      font-family: Georgia, serif;
      font-size: 5rem;
      color: rgba(200, 94, 10, .12);
      position: absolute;
      top: -10px;
      left: 16px;
      line-height: 1;
    }

    .testi-stars {
      color: var(--secondary);
      margin-bottom: 10px;
      font-size: .85rem;
    }

    .testi-card p {
      font-size: .85rem;
      color: #6a4a2a;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-family: var(--font-head);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .testi-info strong {
      font-size: .88rem;
      color: var(--dark);
      display: block;
    }

    .testi-info span {
      font-size: .75rem;
      color: #999;
    }

    /* ───────── CONTACT ───────── */
    .contact-section {
      background: #FFF3E8;
    }

    .contact-card {
      background: #fff;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    }

    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .c-icon {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(200, 94, 10, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--primary);
      font-size: 1rem;
    }

    .c-text strong {
      font-size: .88rem;
      color: var(--dark);
      display: block;
    }

    .c-text span {
      font-size: .82rem;
      color: #7a5a3a;
    }

    .map-wrap iframe {
      width: 100%;
      height: 440px;
      border-radius: 14px;
      border: 3px solid rgba(200, 94, 10, .15);
    }

    /* ───────── FOOTER ───────── */
    .site-footer {
      background: var(--topbar-bg);
      color: rgba(255, 255, 255, .7);
    }

    .footer-brand img {
      height: 52px;
      object-fit: contain;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: .8rem;
      line-height: 1.7;
    }

    .footer-col h6 {
      font-family: var(--font-head);
      font-size: 1rem;
      color: var(--secondary);
      margin-bottom: 14px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 8px;
    }

    .footer-links a {
      font-size: .8rem;
      color: rgba(255, 255, 255, .6);
      transition: color var(--transition);
    }

    .footer-links a:hover {
      color: var(--secondary);
      padding-left: 4px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      color: rgba(255, 255, 255, .6);
      margin-right: 8px;
      margin-bottom: 8px;
      font-size: .85rem;
      transition: background var(--transition), color var(--transition);
    }

    .footer-social a:hover {
      background: var(--primary);
      color: #fff;
    }

    .footer-bottom {
      background: rgba(0, 0, 0, .35);
      padding: 14px 0;
      font-size: .78rem;
      text-align: center;
      color: rgba(255, 255, 255, .4);
    }

    /* Back to top */
    #backTop {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      box-shadow: 0 4px 16px rgba(200, 94, 10, .4);
      z-index: 1050;
      cursor: pointer;
      transition: transform .25s;
    }

    #backTop:hover {
      transform: translateY(-3px);
    }

    #backTop.show {
      display: flex;
    }

    /* WhatsApp float */
    .wa-float {
      position: fixed;
      bottom: 76px;
      right: 22px;
      z-index: 1049;
    }

    .wa-float a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      font-size: 1.4rem;
      box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
      transition: transform .25s;
    }

    .wa-float a:hover {
      transform: scale(1.12);
    }

    /* Responsive */
    @media (max-width:991px) {
      .hero-slide {
        height: 380px;
      }
    }

    @media (max-width:767px) {
      .hero-slide {
        height: 300px;
      }

      .topbar .tb-left {
        gap: 10px;
        font-size: .72rem;
      }
    }

    /* ── wrapper ── */
    .about-us-two { 
      width: 100%; 
      margin: auto;
      padding: 72px 10px;
      position: relative; 
      border-radius: 24px;
      overflow: hidden;
    }

    /* corner doodle squares */
    .about-us-two::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 180px; height: 180px;
      border: 2px dashed rgba(200,241,53,.18);
      border-radius: 50%;
      pointer-events: none;
    }
    .about-us-two::after {
      content: '';
      position: absolute;
      bottom: -30px; left: -30px;
      width: 120px; height: 120px;
      border: 2px dashed rgba(94,197,245,.15);
      border-radius: 50%;
      pointer-events: none;
    }

    /* dot pattern bg strip */
    .bg-dots {
      position: absolute;
      top: 0; right: 0;
      width: 320px; height: 100%;
      background-image: radial-gradient(circle, rgba(200,241,53,.07) 1px, transparent 1px);
      background-size: 20px 20px;
      pointer-events: none;
    }

    /* ── body float ── */
    .about-us-two__body { position: relative; }
    .about-us-two__body::after { content: ''; display: table; clear: both; }

    /* ── floated image block (RIGHT – unchanged) ── */
    .about-us-two__img-wrap {
      float: right;
      width: 42%;
      margin: 6px 0 32px 48px;
      position: relative;
      shape-outside: margin-box;
    }

    .about-us-two__img-wrap img {
      width: 100%;
      /* height: 230px; */
      object-fit: cover;
      display: block;
      border-radius: 18px;
      filter: grayscale(20%) contrast(1.08);
    }

    /* corner accents – now chunky colored blocks */
    .about-us-two__img-wrap::before {
      content: '';
      position: absolute;
      top: -10px; right: -10px;
      width: 54px; height: 54px;
      background: var(--secondary);
      border-radius: 10px;
      z-index: 0;
      pointer-events: none;
    }
    .about-us-two__img-wrap::after {
      content: '';
      position: absolute;
      bottom: -10px; left: -10px;
      width: 38px; height: 38px;
      background: var(--orange);
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

    /* ── badge ── */
    .about-us-two__badge {
      position: absolute;
      bottom: 28px;
      left: -28px;
      background: var(--secondary);
      color: #0d0d0d;
      padding: 20px 22px;
      text-align: center;
      z-index: 10;
      border-radius: 14px;
      box-shadow: 6px 6px 0 rgba(0,0,0,.4);
      animation: floatBadge 3.6s ease-in-out infinite;
    }

    @keyframes floatBadge {
      0%, 100% { transform: translateY(0) rotate(-2deg); }
      50%       { transform: translateY(-8px) rotate(-2deg); }
    }

    .about-us-two__badge-number {
      font-family: 'Syne', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      color: #0d0d0d;
      display: block;
    }
    .about-us-two__badge-label {
      font-size: .68rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      font-weight: 600;
      color: #333;
      margin-top: 5px;
      display: block;
    }

    /* ── text content ── */
    .about-us-two__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Syne', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--secondary);
      background: rgba(200,241,53,.1);
      border: 1px solid rgba(200,241,53,.25);
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 22px;
    }
    .about-us-two__eyebrow::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--secondary);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .about-us-two__title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      line-height: 1.1;
      color: var(--text);
      margin-bottom: 28px;
      letter-spacing: -.02em;
    }
    .about-us-two__title em {
      font-style: normal;
      color: var(--secondary);
      position: relative;
      display: inline-block;
    }
    /* wavy underline on em */
    .about-us-two__title em::after {
      content: '';
      position: absolute;
      left: 0; bottom: -4px;
      width: 100%; height: 4px;
      background: var(--orange);
      border-radius: 2px;
    }

    .about-us-two__lead {
      font-size: 1.06rem;
      font-weight: 400;
      line-height: 1.75;
      color: #c8c8c8;
      margin-bottom: 22px;
    }

    .about-us-two__body p {
      font-size: .95rem;
      line-height: 1.9;
      color: var(--sub);
      margin-bottom: 16px;
    }

    .about-us-two__rule {
      border: none;
      border-top: 1px dashed var(--soft);
      margin: 28px 0;
    }

    /* ── highlight pill inline ── */
    .hl {
      display: inline-block;
      background: rgba(94,197,245,.12);
      color: var(--sky);
      border-radius: 4px;
      padding: 1px 7px;
      font-size: .9em;
    }

    /* ── stats row ── */
    .about-us-two__stats {
      display: flex;
      gap: 0;
      border-top: 1px solid var(--soft);
      margin-top: 40px;
      padding-top: 36px;
    }

    .about-us-two__stat {
      flex: 1;
      text-align: center;
      padding: 0 16px;
      border-right: 1px solid var(--soft);
      position: relative;
    }
    .about-us-two__stat:last-child { border-right: none; }

    .about-us-two__stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.3rem;
      font-weight: 800;
      color: var(--secondary);
      display: block;
      line-height: 1;
      letter-spacing: -.02em;
    }
    .about-us-two__stat:nth-child(2) .about-us-two__stat-num { color: var(--orange); }
    .about-us-two__stat:nth-child(3) .about-us-two__stat-num { color: var(--sky); }

    .about-us-two__stat-label {
      font-size: .7rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 7px;
      display: block;
      font-weight: 500;
    }

    /* ── CTA ── */
    .about-us-two__cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 28px;
      padding: 13px 26px;
      background: var(--secondary);
      color: #0d0d0d;
      font-family: 'Syne', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: gap .22s, background .22s, box-shadow .22s;
      box-shadow: 4px 4px 0 var(--secondary-d);
    }
    .about-us-two__cta:hover {
      gap: 18px;
      background: #d8ff44;
      box-shadow: 6px 6px 0 var(--secondary-d);
    }
    .about-us-two__cta svg {
      width: 14px; height: 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
    }

    /* ── Responsive ── */
    @media (max-width: 820px) {
      .about-us-two { padding: 52px 36px; }
      .about-us-two__img-wrap { width: 48%; margin-left: 32px; }
      .about-us-two__img-wrap img { height: 420px; }
    }

    @media (max-width: 600px) {
      .about-us-two { padding: 40px 24px; }
      .about-us-two__img-wrap {
        float: none; width: 100%; margin: 0 0 40px 0;
      }
      .about-us-two__img-wrap img { height: 300px; }
      .about-us-two__badge { left: 16px; bottom: 16px; }
      .about-us-two__stats { flex-wrap: wrap; }
      .about-us-two__stat {
        flex: 1 1 45%; border-right: none;
        border-bottom: 1px solid var(--soft);
        padding: 16px 10px;
      }
      .about-us-two__stat:nth-child(odd)  { border-right: 1px solid var(--soft); }
      .about-us-two__stat:nth-last-child(-n+2) { border-bottom: none; }
    }


    .ps {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    font-family: var(--font-body);
    background: transparent;
  }

  .ps-stage {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ps-card {
    position: absolute;
    width: 270px;
    height: auto;
    border-radius: 18px;
    border: 1.5px solid rgba(200, 94, 10, 0.18);
    background: #fff;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(.25, .8, .25, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    user-select: none;
    font-family: var(--font-body);
  }

  .ps-card.c0 {
    transform: translateX(0) scale(1);
    z-index: 10;
    opacity: 1;
    box-shadow: 0 8px 32px rgba(200, 94, 10, .18), 0 0 0 2px var(--primary);
  }
  .ps-card.cl1 { transform: translateX(-252px) scale(0.88); z-index: 6; opacity: 0.72 }
  .ps-card.cl2 { transform: translateX(-444px) scale(0.76); z-index: 3; opacity: 0.35 }
  .ps-card.cr1 { transform: translateX(252px) scale(0.88); z-index: 6; opacity: 0.72 }
  .ps-card.cr2 { transform: translateX(444px) scale(0.76); z-index: 3; opacity: 0.35 }
  .ps-card.chl { transform: translateX(-640px) scale(0.6); z-index: 0; opacity: 0; pointer-events: none }
  .ps-card.chr { transform: translateX(640px) scale(0.6); z-index: 0; opacity: 0; pointer-events: none }

  .ps-img {
    width: 100%;
    height:250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 60px;
  }

  .ps-body {
    padding: 1rem 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .ps-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 5px;
    width: fit-content;
    font-family: var(--font-body);
  }

  .ps-name {
    font-size: 16px; 
    color: var(--dark);
    line-height: 1.3;
    font-family: var(--font-head);
    letter-spacing: 0.01em;
  }

  .ps-desc {
    font-size: 12px;
    color: var(--sub);
    line-height: 1.55;
    flex: 1;
    font-family: var(--font-body);
  }

  .ps-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 6px;
  }

  .ps-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-head);
  }

  .ps-btn {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 13px;
    border-radius: var(--radius);
    border: none;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    transition: background var(--transition);
    font-family: var(--font-body);
    letter-spacing: 0.03em;
  }
  .ps-btn:hover { background: var(--primary-d) }

  .ps-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 1.25rem;
  }

  .ps-arr {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    color: var(--primary);
    transition: background var(--transition), color var(--transition);
    flex-shrink: 0;
  }
  .ps-arr:hover { background: var(--primary); color: #fff }

  .ps-dots { display: flex; gap: 7px; align-items: center }

  .ps-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(200,94,10,0.25);
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    padding: 0;
  }
  .ps-dot.on {
    width: 22px;
    border-radius: 4px;
    background: var(--primary);
  }

  @media (max-width: 600px) {
    .ps-stage { height: 420px }
    .ps-card { width: 220px; height: 370px }
    .ps-card.cl1 { transform: translateX(-190px) scale(0.86) }
    .ps-card.cl2 { transform: translateX(-340px) scale(0.73); opacity: 0.2 }
    .ps-card.cr1 { transform: translateX(190px) scale(0.86) }
    .ps-card.cr2 { transform: translateX(340px) scale(0.73); opacity: 0.2 }
    .ps-card.chl { transform: translateX(-480px) scale(0.6) }
    .ps-card.chr { transform: translateX(480px) scale(0.6) }
    .ps-img { height: 160px; font-size: 48px }
    .ps-name { font-size: 15px }
    .ps-price { font-size: 18px }
    .ps-arr { width: 34px; height: 34px; font-size: 13px }
  }


  /* ══════════════════════════════════════
       CTA SECTION
    ══════════════════════════════════════ */
    .cta-section {
      position: relative;
      background: var(--dark);
      overflow: hidden;
      padding: 90px 20px;
    }

    /* background blob rings */
    .cta-section::before {
      content: '';
      position: absolute;
      top: -120px;
      left: -120px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(245, 183, 0, .13) 0%, transparent 68%);
      border-radius: 50%;
      pointer-events: none;
    }

    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(200, 94, 10, .18) 0%, transparent 68%);
      border-radius: 50%;
      pointer-events: none;
    }

    /* dot grid overlay */
    .cta-dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(245, 183, 0, .08) 1.5px, transparent 1.5px);
      background-size: 30px 30px;
      pointer-events: none;
    }

    .cta-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    /* ── CTA LEFT text ── */
    .cta-left {
      color: #fff;
    }

    .cta-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 183, 0, .12);
      border: 1.5px solid rgba(245, 183, 0, .3);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 22px;
    }

    .cta-badge i {
      font-size: .7rem;
    }

    .cta-title {
      font-family: var(--font-head);
      font-size: clamp(2rem, 3.8vw, 3.1rem);
      line-height: 1.15;
      color: #fff;
      margin-bottom: 18px;
    }

    .cta-title .accent {
      color: var(--secondary);
      position: relative;
      display: inline-block;
    }

    .cta-title .accent::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 4px;
      background: var(--accent);
      border-radius: 3px;
    }

    .cta-desc {
      font-size: .95rem;
      font-weight: 600;
      line-height: 1.8;
      color: rgba(255, 248, 240, .6);
      margin-bottom: 30px;
    }

    /* benefit list */
    .cta-benefits {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .cta-benefits li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: .88rem;
      font-weight: 700;
      color: rgba(255, 248, 240, .85);
    }

    .cta-benefits li i {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(245, 183, 0, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--secondary);
      font-size: .75rem;
      flex-shrink: 0;
    }

    /* contact quick chips */
    .cta-chips {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .cta-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 50px;
      padding: 8px 16px;
      font-size: .8rem;
      font-weight: 700;
      color: rgba(255, 248, 240, .8);
      transition: background var(--transition), color var(--transition);
    }

    .cta-chip:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    .cta-chip i {
      color: var(--secondary);
      font-size: .75rem;
    }

    .cta-chip:hover i {
      color: #fff;
    }

    /* ── CTA RIGHT – form card ── */
    .cta-form-card {
      background: #fff;
      border-radius: 24px;
      padding: 40px 36px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
      position: relative;
      overflow: hidden;
    }

    /* yellow top stripe */
    .cta-form-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
    }

    /* corner deco */
    .cta-form-card::after {
      content: '';
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 90px;
      height: 90px;
      background: rgba(200, 94, 10, .07);
      border-radius: 50%;
      pointer-events: none;
    }

    .form-label-text {
      font-family: var(--font-head);
      font-size: 1.45rem;
      color: var(--dark);
      margin-bottom: 6px;
      display: block;
    }

    .form-sub {
      font-size: .78rem;
      font-weight: 600;
      color: var(--sub);
      margin-bottom: 26px;
      display: block;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-group label {
      display: block;
      font-size: .75rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 7px;
    }

    .form-group label i {
      color: var(--primary);
      margin-right: 5px;
      font-size: .7rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    input,
    select,
    textarea {
      width: 100%;
      font-family: var(--font-body);
      font-size: .88rem;
      font-weight: 600;
      color: var(--text);
      background: var(--light);
      border: 2px solid #eeddc8;
      border-radius: var(--radius);
      padding: 11px 14px;
      outline: none;
      transition: border-color var(--transition), box-shadow var(--transition);
      appearance: none;
    }

    input::placeholder,
    textarea::placeholder {
      color: #c4a880;
      font-weight: 600;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(200, 94, 10, .12);
      background: #fff;
    }

    textarea {
      resize: vertical;
      min-height: 90px;
    }

    select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C85E0A' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-size: 12px;
      padding-right: 36px;
    }

    .btn-submit {
      width: 100%;
      background: var(--primary);
      color: #fff;
      font-family: var(--font-head);
      font-size: 1.05rem;
      letter-spacing: .04em;
      border: none;
      border-radius: var(--radius);
      padding: 14px 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 6px 20px rgba(200, 94, 10, .35);
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      margin-top: 20px;
    }

    .btn-submit:hover {
      background: var(--primary-d);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(200, 94, 10, .4);
    }

    .btn-submit:active {
      transform: translateY(0);
    }

    .form-note {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .72rem;
      font-weight: 700;
      color: var(--sub);
      margin-top: 12px;
      justify-content: center;
    }

    .form-note i {
      color: var(--primary);
      font-size: .7rem;
    }

    /* ══════════════════════════════════════
       FAQ SECTION
    ══════════════════════════════════════ */
    .faq-section {
      padding: 90px 20px;
      background: #fff;
      position: relative;
      overflow: hidden;
    }

    /* big circle bg */
    .faq-section::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(245, 183, 0, .09) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .faq-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 70px;
      align-items: start;
    }

    /* ── FAQ LEFT sticky label ── */
    .faq-left {
      position: sticky;
      top: 30px;
    }

    .faq-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200, 94, 10, .1);
      border: 1.5px solid rgba(200, 94, 10, .2);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .faq-big {
      font-family: var(--font-head);
      font-size: clamp(2rem, 3.5vw, 2.9rem);
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .faq-big .hi {
      color: var(--primary);
    }

    .faq-desc {
      font-size: .9rem;
      font-weight: 600;
      line-height: 1.8;
      color: var(--sub);
      margin-bottom: 28px;
    }

    /* contact mini card */
    .faq-contact-card {
      background: var(--light);
      border: 2px dashed rgba(200, 94, 10, .25);
      border-radius: 16px;
      padding: 20px 22px;
    }

    .faq-contact-label {
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 14px;
      display: block;
    }

    .faq-contact-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }

    .faq-contact-row:last-child {
      margin-bottom: 0;
    }

    .faq-c-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(200, 94, 10, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: .85rem;
      flex-shrink: 0;
    }

    .faq-c-text {
      font-size: .84rem;
      font-weight: 700;
      color: var(--text);
    }

    .faq-c-text span {
      display: block;
      font-size: .72rem;
      font-weight: 600;
      color: var(--sub);
    }

    /* ── FAQ RIGHT accordion ── */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: var(--light);
      border: 2px solid transparent;
      border-radius: 16px;
      overflow: hidden;
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .faq-item.open {
      border-color: rgba(200, 94, 10, .3);
      box-shadow: var(--shadow);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 22px;
      cursor: pointer;
      user-select: none;
      list-style: none;
    }

    .faq-q::-webkit-details-marker {
      display: none;
    }

    .faq-q-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .faq-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(200, 94, 10, .1);
      color: var(--primary);
      font-family: var(--font-head);
      font-size: .9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background var(--transition), color var(--transition);
    }

    .faq-item.open .faq-num {
      background: var(--primary);
      color: #fff;
    }

    .faq-q-text {
      font-size: .9rem;
      font-weight: 800;
      color: var(--text);
      line-height: 1.4;
    }

    .faq-item.open .faq-q-text {
      color: var(--primary-d);
    }

    .faq-icon {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: rgba(200, 94, 10, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: .75rem;
      flex-shrink: 0;
      transition: background var(--transition), transform var(--transition);
    }

    .faq-item.open .faq-icon {
      background: var(--primary);
      color: #fff;
      transform: rotate(45deg);
    }

    .faq-a {
      padding: 0 22px 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height .38s cubic-bezier(.4, 0, .2, 1), padding .38s;
    }

    .faq-item.open .faq-a {
      max-height: 400px;
      padding: 0 22px 20px;
    }

    .faq-a-inner {
      font-size: .88rem;
      font-weight: 600;
      color: var(--sub);
      line-height: 1.85;
      border-top: 1.5px dashed rgba(200, 94, 10, .18);
      padding-top: 14px;
    }

    .faq-a-inner strong {
      color: var(--primary);
    }

    /* tag inside answer */
    .faq-tag {
      display: inline-block;
      background: rgba(200, 94, 10, .1);
      color: var(--primary);
      border-radius: 4px;
      padding: 1px 7px;
      font-weight: 800;
      font-size: .82em;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {

      .cta-inner,
      .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .faq-left {
        position: static;
      }
    }

    @media (max-width: 600px) {

      .cta-section,
      .faq-section {
        padding: 60px 16px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .cta-form-card {
        padding: 30px 22px;
      }
    }


    
.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
  

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(135deg, rgb(151 75 0) 0%, rgb(151 75 0 / 76%) 100%);
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #37d0d9, #ca3945, var(--phero-blue)) ;
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  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: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--primary-d);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}


.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid var(--primary-d);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: var(--primary-d);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: var(--primary-d);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-d);
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}