:root {
    --gold: #C9A227;
    --gold-light: #E8C84A;
    --gold-dark: #A0801A;
    --gold-faint: rgba(201, 162, 39, 0.10);
    --dark: #1A1A1A;
    --darker: #111111;
    --maroon: #6B0F1A;
    --maroon-light: rgba(107, 15, 26, 0.08);
    --white: #FFFFFF;
    --off-white: #F8F6F0;
    --card-bg: #FFFFFF;
    --gray-light: #F0EDE8;
    --text-dark: #222222;
    --text-mid: #555555;
    --card-dark: #1c1c1c;
    --card-darker: #141414;
    --text-muted: #7a7a7a;
    --cream: #f5f0e8;
    --ink: #1a1410;
    --rust: #b85c2b; 
    --soft: #e8e0d0;
    --muted: #6b5f52;
    --border: rgba(201, 162, 39, 0.25);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.14);
    --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--off-white);
}

/* ═══════════════════════════════
TOP BAR
═══════════════════════════════ */
.top-bar {
    background: var(--darker);
    border-bottom: 2px solid var(--gold-dark);
    padding: 0;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 12px;
    flex-wrap: wrap;
}

/* Contact buttons */
.top-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-phone {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
    border: none;
}

.btn-phone:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--darker);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.btn-email {
    background: linear-gradient(135deg, var(--maroon), #8B0000);
    color: #fff;
    border: none;
}

.btn-email:hover {
    background: linear-gradient(135deg, #8B0000, var(--maroon));
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 15, 26, 0.45);
}

.top-contact-btn i {
    font-size: 0.95rem;
}

/* Top bar dividers */
.top-divider {
    width: 1px;
    height: 28px;
    background: rgba(201, 162, 39, 0.3);
    flex-shrink: 0;
}

/* Search bar */
.top-search-wrap {
    flex: 1;
    max-width: 420px;
    min-width: 180px;
    position: relative;
}

.top-search-wrap input {
    width: 100%;
    height: 38px;
    border: 1.5px solid rgba(201, 162, 39, 0.45);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    padding: 0 44px 0 14px;
    font-size: 0.85rem;
    font-family: 'Nunito', sans-serif;
    outline: none;
    transition: border 0.2s, background 0.2s;
}

.top-search-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.top-search-wrap input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.top-search-wrap .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 0 6px 6px 0;
    color: var(--darker);
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-search-wrap .search-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* Right contacts group */
.top-right-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ═══════════════════════════════
MAIN HEADER
═══════════════════════════════ */
.main-header {
    background: #f8f6f0;
    /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); */
    border-bottom: 3px solid var(--gold);
    position: relative;
    z-index: 999;
    border-radius: 50px;
}

.main-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 80px;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-logo img {
    height: 90px;
    width: auto;
    transition: transform 0.3s;
}

.brand-logo:hover img {
    transform: scale(1.04);
}

.brand-text {
    line-height: 1.15;
}

.brand-name {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 1px;
}

.brand-name span {
    color: var(--gold-dark);
}

.brand-tagline {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--maroon);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Desktop Nav */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-wrap {
    position: relative;
}

.nav-link-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 28px 14px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
    position: relative;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    height: 3px;
    background: var(--gold);
    transition: left 0.25s, right 0.25s;
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--gold-dark);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
    left: 0;
    right: 0;
}

.nav-link-item i {
    font-size: 0.75rem;
    color: var(--gold-dark);
}

/* Home icon nav item */
.nav-home-icon {
    padding: 20px 14px;
}

.nav-home-icon .home-icon-wrap {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker);
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.nav-home-icon .home-icon-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

/* ── Dropdown ── */
.dropdown-nav {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-top: 3px solid var(--gold);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 1000;
    padding: 8px 0;
}

.nav-item-wrap:hover .dropdown-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.dropdown-nav a i {
    color: var(--gold-dark);
    font-size: 0.88rem;
    width: 18px;
    text-align: center;
}

.dropdown-nav a:hover {
    background: var(--gray-light);
    color: var(--gold-dark);
    padding-left: 24px;
}

.dropdown-nav .drop-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 12px;
}

/* Gold divider under home icon */
.home-underline {
    display: block;
    width: 32px;
    height: 3px;
    background: var(--gold);
    margin: 4px auto 0;
    border-radius: 2px;
}

/* ═══════════════════════════════
MOBILE MENU TOGGLE
═══════════════════════════════ */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-lines span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--gold-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger active state */
.mobile-menu-btn.open .hamburger-lines span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open .hamburger-lines span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.open .hamburger-lines span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════
OFF-CANVAS SLIDE MENU (MOBILE)
═══════════════════════════════ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--darker);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.open {
    transform: translateX(0);
}

.sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 2px solid var(--gold-dark);
    background: var(--dark);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo img {
    height: 44px;
}

.sidebar-logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.sidebar-logo-text small {
    display: block;
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    font-weight: 600;
}

.sidebar-close-btn {
    width: 34px;
    height: 34px;
    background: rgba(201, 162, 39, 0.15);
    border: 1.5px solid var(--gold-dark);
    border-radius: 6px;
    color: var(--gold);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar-close-btn:hover {
    background: rgba(201, 162, 39, 0.3);
}

/* Sidebar nav */
.sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    flex: 1;
}

.sidebar-nav>li>a,
.sidebar-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    text-align: left;
}

.sidebar-nav>li>a:hover,
.sidebar-nav-toggle:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
}

.sidebar-nav>li>a .s-icon,
.sidebar-nav-toggle .s-icon {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-nav>li>a i,
.sidebar-nav-toggle i.s-left {
    color: var(--gold);
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.s-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    transition: transform 0.25s;
}

.sidebar-nav-toggle.open .s-arrow {
    transform: rotate(90deg);
}

/* Sidebar sub-menu */
.sidebar-submenu {
    display: none;
    background: rgba(0, 0, 0, 0.25);
    border-left: 3px solid var(--gold-dark);
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-submenu.open {
    display: block;
}

.sidebar-submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 30px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.07);
    transition: color 0.2s, background 0.2s;
}

.sidebar-submenu li a:hover {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.07);
}

.sidebar-submenu li a i {
    color: var(--gold-dark);
    font-size: 0.8rem;
    width: 16px;
}

/* Sidebar contacts */
.sidebar-contacts {
    padding: 16px 18px;
    border-top: 2px solid rgba(201, 162, 39, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.sidebar-contact-item:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
}

.sidebar-contact-item i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sidebar-contact-item.wa i {
    background: #25D366;
    color: #fff;
}

.sidebar-contact-item.ph i {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
}

.sidebar-contact-item.em i {
    background: var(--maroon);
    color: #fff;
}

/* ═══════════════════════════════
STICKY HEADER BEHAVIOUR
═══════════════════════════════ */
/* NEW */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 997;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.top-bar {
  overflow: hidden;
  will-change: transform, opacity;
  transform: translateY(0) translateZ(0);
  opacity: 1;
  max-height: 90px;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
              opacity 0.28s ease,
              max-height 0.32s cubic-bezier(0.4,0,0.2,1);
}
.site-header.scrolled .top-bar {
  transform: translateY(-100%) translateZ(0);
  opacity: 0;
  max-height: 0;
  pointer-events: none;
}
.main-header {
  will-change: box-shadow;
  transform: translateZ(0);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled .main-header {
  box-shadow: 0 6px 32px rgba(0,0,0,0.22);
}

/* ═══════════════════════════════
RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
    .nav-link-item {
        padding: 28px 10px;
        font-size: 0.82rem;
    }
}

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .top-bar-inner {
        gap: 8px;
        flex-direction: column;
        padding: 10px 0;
        align-items: stretch;
    }

    .top-search-wrap {
        max-width: 100%;
        order: -1;
    }

    .top-right-group {
        justify-content: space-between;
    }

    .top-divider {
        display: none;
    }

    .top-contact-btn {
        padding: 7px 12px;
        font-size: 0.78rem;
        flex: 1;
        justify-content: center;
    }

    .brand-logo img {
        height: 52px;
    }

    .brand-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .brand-tagline {
        display: none;
    }

    .brand-name {
        font-size: 1.1rem;
    }
}

/* about-us-section  */
.about_one {
    max-width: 1300px;
    width: 100%;
    margin: auto;
    background: #F8F6F0;
    padding: 72px 0px;
    position: relative; 
    overflow: hidden;
}

.about_one::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .4;
}

.about_one__body {
    position: relative;
}

.about_one__body::after {
    content: '';
    display: table;
    clear: both;
}

.about_one__img_wrap {
    float: right;
    width: 42%;
    margin: 6px 0 32px 48px;
    position: relative;
    shape-outside: margin-box;
}

@media only screen and (max-width: 600px) {
    .about_one__img_wrap {
        float: right;
        width: 100%;
        margin: 6px 0 32px 48px;
        position: relative;
        shape-outside: margin-box;
    }
    .about_one__stat{ 
        padding: 0 10px !important; 
    }
}

.about_one__img_wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: grayscale(18%) contrast(1.06);
}

.about_one__img_wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    border-top: 2px solid var(--rust);
    border-right: 2px solid var(--rust);
}

.about_one__img_wrap::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 60%;
    height: 60%;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.about_two__img_wrap {
    float: left;
    width: 42%;
    margin: 6px 48px 32px 0px;
    position: relative;
    shape-outside: margin-box;
}

.about_two__img_wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    filter: grayscale(18%) contrast(1.06);
}

.about_two__img_wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 60%;
    height: 60%;
    border-top: 2px solid var(--rust);
    border-right: 2px solid var(--rust);
}

.about_two__img_wrap::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 60%;
    height: 60%;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.about_one__badge {
    position: absolute;
    bottom: 28px;
    left: -28px;
    background: var(--ink);
    color: var(--cream);
    padding: 22px 26px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .22);
    animation: floatBadge 3.6s ease-in-out infinite;
}

@keyframes floatBadge {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.about_one__badge_number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    font-weight: 600;
    color: var(--gold);
    display: block;
}

.about_one__badge_label {
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.about_one__eyebrow {
    font-size: 3rem;
    letter-spacing: .05em; 
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 18px;
    font-weight: 700;
    font-family: 'Courier New', Courier, monospace;
}

.about_one__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 28px;
}

.about_one__title em {
    color: var(--rust);
}

.about_one__lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 22px;
}

.about_one__body p {
    font-size: .97rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about_one__rule {
    border-top: 1px solid var(--soft);
    margin: 30px 0;
}

.about_one__stats {
    display: flex;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--soft);
}

.about_one__stat {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--soft);
}

.about_one__stat:last-child {
    border-right: none;
}

.about_one__stat_num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--rust);
}

.about_one__stat_label {
    font-size: .72rem;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.about_one__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 14px 30px;
    background: var(--ink);
    color: var(--cream);
    text-decoration: none;
}

.about_one__cta:hover {
    background: var(--rust);
}


/* ═══════════════════════════════
SECTION WRAPPER
═══════════════════════════════ */
.about-section {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: var(--white);
}

/* Subtle radial glow in bg */
.about-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(107, 15, 26, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ═══════════════════════════════
SECTION TITLE BLOCK (top)
═══════════════════════════════ */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 18px;
}

.sec-label::before,
.sec-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.sec-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.sec-main-title span {
    color: var(--gold-dark);
}

/* ═══════════════════════════════
IMAGE COLUMN
═══════════════════════════════ */
.img-col-outer {
    position: relative;
}

/* Small portrait image (left/top) */
.img-portrait {
    position: relative;
    border-radius: 12px;
    overflow: hidden; 
}

.img-portrait img {
    width: 100%;
    height: 315px;
    object-fit: contain;
    display: block;
    transition: transform 0.6s ease;
}

.img-portrait:hover img {
    transform: scale(1.04);
}

/* Gold frame accent on portrait */
.img-landscape::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), transparent 60%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: 2;
    pointer-events: none;
}

    

/* Large landscape image (right/main) */
.img-landscape {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
    position: relative;
}

.img-landscape img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.img-landscape:hover img {
    transform: scale(1.03);
}

/* Gold corner lines decoration */
.img-landscape::after {
    content: '';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 0 0 6px 0;
    pointer-events: none;
}

/* Learn more button */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.35);
    transition: box-shadow 0.3s;
}

.learn-more-btn:hover {
    box-shadow: 0 8px 28px rgba(201, 162, 39, 0.5);
}

.btn-label {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
    padding: 13px 26px;
    transition: background 0.3s;
}

.learn-more-btn:hover .btn-label {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-arrow {
    background: var(--dark);
    color: var(--gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.learn-more-btn:hover .btn-arrow {
    background: var(--darker);
    transform: rotate(45deg);
}

/* ═══════════════════════════════
CONTENT COLUMN
═══════════════════════════════ */
.content-outer {
    padding-left: 10px;
}

/* Vision / Mission blocks */
.feature-block {
    position: relative;
    padding: 22px 0 22px 22px;
    border-left: 3px solid var(--gold);
    margin-bottom: 28px;
    transition: border-color 0.3s;
}

.feature-block::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--maroon);
    transition: height 0.4s ease;
}

.feature-block:hover::before {
    height: 100%;
}

.feature-block-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--dark);
    text-transform: capitalize;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-block-title i {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.feature-block-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── Stat Cards ── */
.stat-cards-row {
    gap: 16px;
}

.stat-card {
    background: var(--card-dark);
    border-radius: 14px;
    padding: 22px 20px 18px;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* Subtle glow */
.stat-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}

.stat-card-icon {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.18);
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

/* Gold divider line */
.stat-card-line {
    height: 1.5px;
    width: 40px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 14px;
    border-radius: 2px;
}

.stat-card-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 2px;
}

.stat-card-number .counter {
    display: inline-block;
}

.stat-card-number sup {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 6px;
}

.stat-card-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════
FLOATING DECORATIONS
═══════════════════════════════ */
.deco-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.deco-dot-1 {
    top: 12%;
    left: 48%;
    width: 12px;
    height: 12px;
    background: var(--gold);
    opacity: 0.35;
    animation: pulse-dot 3s ease-in-out infinite;
}

.deco-dot-2 {
    bottom: 18%;
    right: 12%;
    width: 8px;
    height: 8px;
    background: var(--maroon);
    opacity: 0.4;
    animation: pulse-dot 2.5s ease-in-out infinite 0.8s;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.8);
        opacity: 0.12;
    }
}

/* ═══════════════════════════════
RESPONSIVE
═══════════════════════════════ */
@media (max-width: 991px) {
    .content-outer {
        padding-left: 0;
        margin-top: 60px;
    }

    .img-landscape img {
        height: 320px;
    }

    .img-portrait img {
        height: 220px;
    }

    .sec-main-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }

    .stat-cards-row {
        flex-direction: column;
    }

    .stat-card {
        min-height: unset;
    }        
}


/* ═══════════════════════════════
SECTION WRAPPER
═══════════════════════════════ */
.products-section {
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Decorative BG diamond pattern */
.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(201, 162, 39, 0.04) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(201, 162, 39, 0.04) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(201, 162, 39, 0.04) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(201, 162, 39, 0.04) 75%);
    background-size: 28px 28px;
    background-position: 0 0, 0 14px, 14px -14px, -14px 0px;
    pointer-events: none;
    z-index: 0;
}

/* Large faint bg text */
.bg-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(80px, 16vw, 200px);
    font-weight: 700;
    color: rgba(201, 162, 39, 0.04);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 12px;
    z-index: 0;
    user-select: none;
}

.products-section .container {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════
SECTION HEAD
═══════════════════════════════ */
.section-head {
    margin-bottom: 52px;
}

.sec-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.sec-kicker i {
    font-size: 0.85rem;
}

.sec-kicker::before,
.sec-kicker::after {
    content: '';
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    display: block;
}

.sec-title-main {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.sec-title-main span {
    color: var(--gold-dark);
}

.sec-subtitle {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 640px;
    margin-top: 12px;
}



/* ═══════════════════════════════
PRODUCT GRID
═══════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════
PRODUCT CARD
═══════════════════════════════ */
.product-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    border: 1px solid rgba(201, 162, 39, 0.08);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201, 162, 39, 0.25);
}

/* ── Card Image ── */
.card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #fefefe;
    display: block;
    /* anchor tag */
    text-decoration: none;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-img-wrap img {
    transform: scale(1.08);
}

/* Gold shimmer overlay on hover */
.card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(201, 162, 39, 0) 0%,
            rgba(201, 162, 39, 0.12) 50%,
            rgba(201, 162, 39, 0) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.product-card:hover .card-img-wrap::after {
    opacity: 1;
}

/* Category badge on image */
.card-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
    pointer-events: none;
}

/* "New" ribbon */
.card-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--maroon);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-bottom-left-radius: 10px;
    z-index: 4;
    pointer-events: none;
}

/* ── Card Body ── */
.card-body-wrap {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

/* Product title — anchor */
.card-title-link {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 6px;
    transition: color var(--transition);
}

.card-title-link:hover {
    color: var(--gold-dark);
}

/* Short desc */
.card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
}

/* Stars */
.card-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 12px;
}

.card-stars i {
    font-size: 0.72rem;
    color: var(--gold);
}

.card-stars span {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-left: 4px;
    font-weight: 600;
}

/* Tags */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.card-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

/* CTA row */
.card-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.cta-enquire {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
}

.cta-enquire:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--darker);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.38);
}

.cta-whatsapp {
    width: 38px;
    height: 38px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform 0.2s;
    flex-shrink: 0;
}

.cta-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.08);
}


/* ═══════════════════════════════
ANIMATE.CSS OVERRIDE
═══════════════════════════════ */
.animate__animated {
    --animate-duration: 0.5s;
}

/* ═══════════════════════════════
RESPONSIVE TWEAKS
═══════════════════════════════ */
@media (max-width: 767px) {
    .products-section {
        padding: 60px 0 70px;
    }

    .section-head {
        margin-bottom: 36px;
    }
}



/* SECTION */
.testi-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
    padding-bottom: 80px;
}

/* TOP SPLIT */
.testi-top-zone {
    display: flex;
    width: 100%;
    min-height: 320px;
}

/* LEFT PANEL */
.testi-left {
    position: relative;
    width: 38%;
    flex-shrink: 0;
    background: var(--white);
    padding: 52px 40px 52px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.q-deco {
    position: absolute;
    top: 0;
    left: 44px;
    display: flex;
    gap: 20px;
    pointer-events: none;
    z-index: 0;
}

.q-block {
    width: 118px;
    height: 220px;
    background: rgba(201, 162, 39, 0.08);
    border-radius: 10px 10px 0 0;
    position: relative;
    flex-shrink: 0;
}

.q-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 48px;
    background: var(--white);
    border-radius: 6px 6px 0 0;
}

.testi-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.18;
    letter-spacing: .3px;
    position: relative;
    z-index: 1;
}

.testi-title span {
    color: var(--gold-dark);
}

/* RIGHT PANEL */
.testi-right {
    flex: 1;
    background: linear-gradient(135deg, var(--darker) 0%, #221500 100%);
    position: relative;
    overflow: hidden;
}

.testi-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 162, 39, 0.22) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
}

.testi-right .panel-trophy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: rgba(201, 162, 39, 0.10);
    pointer-events: none;
}

.panel-ticks {
    position: absolute;
    top: 28px;
    right: 42px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    pointer-events: none;
}

.panel-ticks span {
    display: block;
    height: 3px;
    background: rgba(201, 162, 39, 0.38);
    border-radius: 2px;
}

.panel-ticks span:nth-child(1) {
    width: 26px;
}

.panel-ticks span:nth-child(2) {
    width: 16px;
}

.panel-ticks span:nth-child(3) {
    width: 22px;
}

.panel-ticks span:nth-child(4) {
    width: 12px;
}

/* CAROUSEL ZONE */
.testi-carousel-zone {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    padding-left: 32%;
    padding-right: 20px;
}

/* OWL OVERRIDES — overflow MUST be hidden */
.owl-carousel .owl-stage-outer {
    overflow: hidden !important;
}

.owl-dots {
    margin-top: 28px !important;
    text-align: center;
}

.owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: rgba(201, 162, 39, 0.25) !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
    transition: all .28s !important;
    display: block;
}

.owl-dot.active span {
    width: 28px !important;
    border-radius: 4px !important;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark)) !important;
}

.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    margin: 0 !important;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    pointer-events: all;
    width: 44px !important;
    height: 44px !important;
    background: var(--white) !important;
    border: 2px solid rgba(201, 162, 39, 0.3) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0 !important;
    transition: all var(--transition) !important;
    position: relative;
    margin: 0 -6px !important;
}

.owl-nav button::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .85rem;
    color: var(--gold-dark);
}

.owl-nav button.owl-prev::before {
    content: '\f053';
}

.owl-nav button.owl-next::before {
    content: '\f054';
}

.owl-nav button:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    border-color: transparent !important;
}

.owl-nav button:hover::before {
    color: var(--darker);
}

.owl-nav button.disabled {
    opacity: .3;
}

/* CARD */
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(201, 162, 39, 0.09);
    padding: 26px 24px 22px;
    margin: 0 10px 8px;
    display: flex !important;
    flex-direction: column;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201, 162, 39, 0.22);
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px 3px 0 0;
    transition: right var(--transition);
}

.testi-card:hover::before {
    right: 0;
}

.testi-card::after {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 2rem;
    color: rgba(201, 162, 39, 0.09);
    pointer-events: none;
}

/* Badge */
.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-faint);
    border: 1px solid rgba(201, 162, 39, 0.20);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 16px;
    width: fit-content;
}

/* Author */
.card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

/* FIXED AVATAR: square wrapper clips to circle, img fills it */
.card-avatar-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 2.5px solid var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    background: var(--off-white);
}

.card-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.card-author-text {
    flex: 1;
    min-width: 0;
}

.card-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-location {
    font-size: .76rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.card-location i {
    color: var(--gold-dark);
    font-size: .7rem;
}

/* Review */
.card-review {
    font-size: .86rem;
    color: var(--text-mid);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 20px;
}

/* Stars */
.card-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    padding-top: 16px;
    border-top: 1px solid rgba(201, 162, 39, 0.12);
    margin-top: auto;
}

.card-stars i {
    font-size: .88rem;
    color: var(--gold);
    transition: transform .15s;
}

.card-stars i:hover {
    transform: scale(1.3);
}

.card-stars .star-meta {
    font-family: 'Rajdhani', sans-serif;
    font-size: .76rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-left: 7px;
}

/* RESPONSIVE */
@media(max-width:991px) {
    .testi-left {
        width: 40%;
        padding: 40px 28px 40px 36px;
    }

    .testi-carousel-zone {
        padding-left: 28%;
    }
}

@media(max-width:767px) {
    .testi-top-zone {
        flex-direction: column;
        min-height: auto;
    }

    .testi-left {
        width: 100%;
        padding: 36px 24px 36px 28px;
        min-height: 200px;
    }

    .q-deco {
        left: 20px;
    }

    .q-block {
        width: 80px;
        height: 150px;
    }

    .q-block::after {
        width: 32px;
        height: 34px;
    }

    .testi-right {
        min-height: 130px;
    }

    .testi-carousel-zone {
        padding-left: 16px;
        padding-right: 16px;
        margin-top: -50px;
    }

    .testi-card {
        min-height: auto;
    }
}

@media(max-width:480px) {
    .testi-title {
        font-size: 1.75rem;
    }

    .testi-card {
        padding: 22px 18px 18px;
    }
}


/* ═══════════════════════════════════
    SECTION
═══════════════════════════════════ */
.faq-section {
    position: relative;
    padding: 100px 0 110px;
    background: var(--off-white);
    overflow: hidden;
}

/* Large diagonal BG stripe */
.faq-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 650px;
    height: 650px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.07), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(107, 15, 26, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

/* Watermark text */
.faq-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(80px, 18vw, 220px);
    font-weight: 700;
    letter-spacing: 14px;
    color: rgba(201, 162, 39, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════
LEFT COLUMN — sticky info panel
═══════════════════════════════════ */
.faq-info-col {
    position: sticky;
    top: 100px;
}

/* Kicker */
.sec-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.sec-kicker::before,
.sec-kicker::after {
    content: '';
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    display: block;
}

/* Section title */
.faq-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
}

.faq-main-title span {
    color: var(--gold-dark);
}

.faq-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 36px;
    max-width: 380px;
}

/* Contact CTA card */
.faq-contact-card {
    background: linear-gradient(135deg, var(--darker) 0%, #2a1800 100%);
    border-radius: var(--radius);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.faq-contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 162, 39, 0.15) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.5;
}

.faq-contact-card .card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--darker);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.faq-contact-card .card-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.faq-contact-card .card-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.68;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}

.faq-cta-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
    color: var(--darker);
}

/* Stats row under CTA */
.faq-stats {
    display: flex;
    gap: 0;
    margin-top: 28px;
}

.faq-stat {
    flex: 1;
    text-align: center;
    padding: 18px 10px;
    border-top: 2px solid var(--border);
    position: relative;
}

.faq-stat+.faq-stat {
    border-left: 1px solid var(--border);
}

.faq-stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1px;
}

.faq-stat-num sup {
    font-size: 0.85rem;
    margin-top: 4px;
}

.faq-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
}



/* ═══════════════════════════════════
FAQ ACCORDION ITEMS
═══════════════════════════════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid rgba(201, 162, 39, 0.10);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--border);
    transform: translateX(4px);
}

.faq-item.open {
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 8px 36px rgba(201, 162, 39, 0.12);
    transform: translateX(0);
}

/* Question row */
.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    cursor: pointer;
    user-select: none;
    position: relative;
}

/* Number badge */
.faq-num {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold-faint);
    border: 1.5px solid rgba(201, 162, 39, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-dark);
    transition: background var(--transition), color var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-num {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
    border-color: transparent;
}

/* Category icon */
.faq-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--gold-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: background var(--transition), color var(--transition);
}

.faq-item.open .faq-cat-icon {
    background: rgba(26, 20, 16, 0.07);
}

/* Question text */
.faq-q-text {
    flex: 1;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.3px;
    line-height: 1.35;
    transition: color var(--transition);
}

.faq-item.open .faq-q-text {
    color: var(--gold-dark);
}

/* Toggle icon */
.faq-toggle-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--gold-dark);
    transition: all var(--transition);
}

.faq-item.open .faq-toggle-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
    border-color: transparent;
    transform: rotate(45deg);
}

/* Gold left indicator bar */
.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    border-radius: 0 3px 3px 0;
    opacity: 0;
    transition: opacity var(--transition);
}

.faq-item.open .faq-question::before {
    opacity: 1;
}

/* Answer panel */
.faq-answer {
    display: none;
    border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.faq-answer-inner {
    padding: 20px 24px 24px 90px;
    /* aligns with question text */
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.82;
}

/* Helpful links inside answer */
.answer-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-faint);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 12px;
    margin-right: 6px;
    cursor: default;
}

/* Hidden faq items for "show more" */
.faq-item.faq-hidden {
    display: none;
}

/* ═══════════════════════════════════
SHOW MORE BUTTON
═══════════════════════════════════ */
.show-more-wrap {
    text-align: center;
    margin-top: 32px;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 36px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold-dark);
    border-radius: 50px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.show-more-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: -1;
}

.show-more-btn:hover {
    color: var(--darker);
    border-color: transparent;
    box-shadow: 0 6px 22px rgba(201, 162, 39, 0.38);
}

.show-more-btn:hover::before {
    transform: scaleX(1);
}

/* ═══════════════════════════════════
FLOATING DECORATIVE DOTS
═══════════════════════════════════ */
.deco-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.dd-1 {
    top: 14%;
    left: 6%;
    width: 10px;
    height: 10px;
    background: var(--gold);
    opacity: .25;
    animation: pulse 3s ease-in-out infinite;
}

.dd-2 {
    bottom: 22%;
    right: 5%;
    width: 7px;
    height: 7px;
    background: var(--maroon);
    opacity: .3;
    animation: pulse 2.6s ease-in-out infinite .9s;
}

.dd-3 {
    top: 55%;
    left: 1.5%;
    width: 5px;
    height: 5px;
    background: var(--gold-dark);
    opacity: .2;
    animation: pulse 3.4s ease-in-out infinite .4s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .28;
    }

    50% {
        transform: scale(2.2);
        opacity: .08;
    }
}

/* ═══════════════════════════════════
RESPONSIVE
═══════════════════════════════════ */
@media(max-width:991px) {
    .faq-info-col {
        position: static;
        margin-bottom: 50px;
    }

    .faq-subtitle {
        max-width: 100%;
    }

    .faq-section {
        padding: 70px 0 80px;
    }
}

@media(max-width:767px) {
    .faq-section {
        padding: 55px 0 65px;
    }

    .faq-answer-inner {
        padding-left: 24px;
    }

    .faq-stats {
        flex-wrap: wrap;
    }

    .faq-stat {
        min-width: 50%;
    }

    .faq-stat+.faq-stat {
        border-left: none;
        border-top: 1px solid var(--border);
    }
}

@media(max-width:480px) {
    .faq-question {
        padding: 18px 16px;
        gap: 12px;
    }

    .faq-answer-inner {
        padding: 16px;
    }

    .faq-main-title {
        font-size: 1.9rem;
    }
}

 
/* ─────────────────────────────────────────
FOOTER — fixed at bottom, always behind
───────────────────────────────────────── */
.site-footer { 
    z-index: 1;
    background: linear-gradient(160deg, #0f0a00 0%, #1a1200 60%, #111 100%);
    color: var(--muted);
    overflow: hidden;
}

/* BG dot layer — shifts on parallax */
.f-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201, 162, 39, 0.18) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
    will-change: transform;
}

/* Watermark — shifts faster for depth */
.f-wm {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(60px, 14vw, 180px);
    font-weight: 700;
    letter-spacing: 14px;
    color: rgba(201, 162, 39, 0.04);
    white-space: nowrap;
    pointer-events: none;
    will-change: transform;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

/* Gold top line */
.f-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-dark), var(--gold), transparent);
}

/* ─── FOOTER BODY ─── */
.f-body {
    padding: 70px 0 40px;
}

.col-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.col-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-dark), transparent);
    opacity: .4;
}

/* Brand */
.site-footer .brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 14px;
}

.site-footer .brand-logo img {
    height: 125px;
}

.b-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.b-name span {
    color: var(--gold);
}

.b-tag {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
}

.b-desc {
    font-size: 0.81rem;
    color: #ffd09c;
    line-height: 1.72;
    margin-bottom: 18px;
}

.socials {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.soc {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: #ffd09c;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .28s;
}

.soc:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent;
    color: #111;
    transform: translateY(-3px);
}

.soc.wa:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

/* Links */
.f-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.f-links a {
    font-size: 0.82rem;
    color: #ffd09c;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
}

.f-links a i {
    font-size: 0.65rem;
    color: var(--gold-dark);
    width: 12px;
}

.f-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

/* Contact */
.c-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 13px;
    text-decoration: none;
    transition: transform .25s;
}

.c-item:hover {
    transform: translateX(4px);
}

.c-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.c-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #111;
}

.c-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.c-mail {
    background: linear-gradient(135deg, var(--maroon), #8B0000);
    color: #fff;
}

.c-lbl {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    display: block;
}

.c-val {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.62);
    display: block;
    transition: color .25s;
}

.c-item:hover .c-val {
    color: var(--gold);
}

/* Bottom bar */
.f-bottom {
    border-top: 1px solid rgba(201, 162, 39, 0.10);
    padding: 16px 0;
}

.f-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.f-copy {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.22);
}

.f-copy span {
    color: var(--gold);
}

.f-bot-links {
    display: flex;
    gap: 16px;
}

.f-bot-links a {
    font-size:15px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color .2s;
}

.f-bot-links a:hover {
    color: var(--gold);
}

.f-bot-links span {
    color: var(--gold);
}



/* Back to top */
#btt {
    position: fixed;
    bottom: 26px;
    right: 22px;
    z-index: 9999;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #111;
    font-size: 0.88rem;
    box-shadow: 0 5px 18px rgba(201, 162, 39, .40);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}



#btt.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

#btt:hover {
    transform: translateY(-3px) scale(1.08);
}


.whats-btt {
    position: fixed;
    bottom: 26px;
    left: 22px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    border-radius: 50%; 
    color: #fff ;
    background: #00bf00;
    text-align: center;
    cursor: pointer;
    transform: translateY(3px);
    transition: opacity .3s, transform .3s; 
    
}


.whats-btt i{
    padding: 7px;
    font-size: 40px;
    align-items: center;
}

.whats-btt:hover {
    transform: translateY(-3px) scale(1.03);
}

@media(max-width:767px) {
    .f-body {
        padding: 34px 0 22px;
    }

    .f-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ══════════════════════════════
    SECTION
══════════════════════════════ */
.cta-section {
    position: relative;
    padding: 100px 0 110px;
    background: var(--off-white);
    overflow: hidden;
}

/* Split BG: left light, right dark */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(160deg, var(--darker) 0%, #1a1000 60%, #0f0a00 100%);
    z-index: 0;
}

/* Dot grid on dark side */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(201, 162, 39, 0.16) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

/* Gold top line */
.cta-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* Watermark */
.cta-wm {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(80px, 16vw, 200px);
    font-weight: 700;
    letter-spacing: 12px;
    color: rgba(201, 162, 39, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

/* ══════════════════════════════
LEFT COLUMN — info panel
══════════════════════════════ */
.info-col {
    padding-right: 40px;
}

/* Kicker */
.sec-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.sec-kicker::before,
.sec-kicker::after {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    display: block;
}

/* Title */
.info-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
}

.info-title span {
    color: var(--gold-dark);
}

.info-rule {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 2px;
    margin-bottom: 18px;
}

.info-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 36px;
    max-width: 360px;
}

/* Contact cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

/* Left sweep bar */
.c-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition);
}

.c-card:hover {
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: var(--shadow-hover);
    transform: translateX(5px);
    color: inherit;
}

.c-card:hover::before {
    transform: scaleY(1);
}

/* Static address card */
.c-card-static {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
}

/* Icon */
.ci {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
    transition: all var(--transition);
}

.ci-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--darker);
}

.ci-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.ci-mail {
    background: linear-gradient(135deg, var(--maroon), #8B0000);
    color: #fff;
}

.ci-loc {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
}

.c-card:hover .ci {
    transform: scale(1.1) rotate(-4deg);
}

.c-lbl {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: block;
    margin-bottom: 3px;
}

.c-val {
    font-size: 0.83rem;
    font-weight: 700;
    color: #ffd09c;
    display: block;
    line-height: 1.55;
    transition: color var(--transition);
}

.c-card:hover .c-val {
    color: var(--gold-dark);
}

/* ══════════════════════════════
RIGHT COLUMN — form (dark)
══════════════════════════════ */
.form-col {
    padding-left: 40px;
}

.form-wrap {
    background: rgba(26, 16, 0, 0.60);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: var(--radius);
    padding: clamp(28px, 5%, 48px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Gold top accent */
.form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* Corner glow */
.form-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at bottom right, rgba(201, 162, 39, 0.08), transparent 70%);
    pointer-events: none;
}

/* Form header */
.form-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.form-kicker {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.form-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}

.form-title span {
    color: var(--gold);
}

/* ── Field Group ── */
.fg {
    position: relative;
    margin-bottom: 18px;
}

.f-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(201, 162, 39, 0.75);
    display: block;
    margin-bottom: 7px;
}

.f-label .req {
    color: var(--gold-light);
    margin-left: 2px;
}

.f-input,
.f-select,
.f-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(201, 162, 39, 0.22);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Nunito', sans-serif;
    font-size: 0.84rem;
    padding: 12px 15px;
    outline: none;
    transition: border-color 0.28s, background 0.28s, box-shadow 0.28s;
    -webkit-appearance: none;
    appearance: none;
}

.f-input::placeholder,
.f-textarea::placeholder {
    color: rgba(255, 255, 255, 0.22);
}

.f-input:focus,
.f-select:focus,
.f-textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 162, 39, 0.07);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
    color: var(--white);
}

/* Gold sweep underline */
.f-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.35s ease;
    pointer-events: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.f-input:focus~.f-line,
.f-select:focus~.f-line,
.f-textarea:focus~.f-line {
    width: 100%;
}

/* Select */
.sel-wrap {
    position: relative;
}

.sel-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gold-dark);
    font-size: 0.7rem;
}

.f-select {
    padding-right: 38px;
    cursor: pointer;
}

.f-select option {
    background: var(--darker);
    color: var(--white);
}

/* Textarea */
.f-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.65;
}

/* Two-col row */
.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media(max-width:480px) {
    .f-row {
        grid-template-columns: 1fr;
    }
}

/* Error */
.f-input.err,
.f-select.err,
.f-textarea.err {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.10) !important;
}

.err-msg {
    font-size: 0.65rem;
    color: #e74c3c;
    margin-top: 4px;
    display: none;
}

.has-err .err-msg {
    display: block;
}

/* ── Submit ── */
.f-submit {
    width: 100%;
    padding: 15px 28px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold) 50%, var(--gold-light));
    background-size: 200% 200%;
    background-position: 0% 50%;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--darker);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    box-shadow: 0 6px 24px rgba(201, 162, 39, 0.35);
    transition: background-position 0.5s, box-shadow 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.f-submit:hover {
    background-position: 100% 50%;
    box-shadow: 0 10px 34px rgba(201, 162, 39, 0.50);
    transform: translateY(-2px);
}

.f-submit:active {
    transform: translateY(0);
}

.f-submit .arrow {
    transition: transform 0.3s;
}

.f-submit:hover .arrow {
    transform: translateX(5px);
}

.privacy-note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

.privacy-note i {
    color: var(--gold-dark);
    font-size: 0.68rem;
}

/* ══════════════════════════════
STATS STRIP
══════════════════════════════ */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 32px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.stat-item {
    text-align: center;
    padding: 18px 12px;
    position: relative;
}

.stat-item+.stat-item {
    border-left: 1px solid var(--border);
}

.stat-item i {
    font-size: 1.1rem;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1px;
}

.stat-num sup {
    font-size: 0.7rem;
    margin-top: 3px;
    color: var(--gold-dark);
}

.stat-lbl {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ══════════════════════════════
TOAST
══════════════════════════════ */
.toast-wrap {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(.34, 1.56, .64, 1);
    pointer-events: none;
}

.toast-wrap.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-inner {
    background: var(--darker);
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.30);
}

.toast-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-ico i {
    color: var(--gold);
    font-size: 0.78rem;
}

.toast-msg {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
}

/* ══════════════════════════════
RESPONSIVE
══════════════════════════════ */
@media(max-width:991px) {

    .cta-section::before,
    .cta-section::after {
        width: 100%;
    }

    .cta-section::before {
        opacity: 0.9;
    }

    .info-col {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .form-col {
        padding-left: 0;
    }

    .info-title {
        color: var(--white);
    }

    .info-desc {
        color: rgba(255, 255, 255, 0.55);
    }

    .sec-kicker {
        color: var(--gold-light);
    }

    .info-rule {
        background: linear-gradient(90deg, var(--gold-light), transparent);
    }

    .c-card,
    .c-card-static {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(201, 162, 39, 0.20);
    }

    .c-lbl {
        color: var(--gold);
    }

    .c-val {
        color: rgba(255, 255, 255, 0.70);
    }

    .c-card:hover .c-val {
        color: var(--gold-light);
    }
}

@media(max-width:767px) {
    .cta-section {
        padding: 70px 0 80px;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stats-strip .stat-item:last-child {
        border-top: 1px solid var(--border);
        border-left: none;
        grid-column: span 2;
    }
}

.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 #d59e06;
    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: #d59e06;
    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: #d59e06;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #d59e06;
}

.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;
    }
}


@media (max-width: 991px) {
    .cta-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .row.g-5 {
        --bs-gutter-x: 0;
    }

    .info-col,
    .form-col {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 991px) {
    .cta-section::before,
    .cta-section::after {
        width: 100%;
        left: 0;
        right: 0;
    }
}

@media (max-width: 767px) {
    .stats-strip {
        grid-template-columns: repeat(3, 1fr);
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .stats-strip .stat-item:last-child {
        grid-column: auto;
        border-left: 1px solid var(--border);
        border-top: none;
    }
}