/* ============================================================
   Bakriya - WhatsApp Popup & Float Button Styles + Brand Overrides
   ============================================================ */

/* ── Brand colour tokens ──────────────────────────────────────
   Logo palette: gold #C9A84C on near-black #111111
   Replace template orange with Bakriya gold everywhere.        */
:root {
    --accent-color:          #C9A84C;   /* Bakriya gold  */
    --brand-gold:            #C9A84C;
    --brand-gold-dark:       #A8882A;   /* hover / pressed */
    --brand-dark:            #111111;   /* logo background */
    --bs-breadcrumb-divider: "/";
}

/* Override inline --color-primary fallbacks used in pages */
:root {
    --color-primary: #C9A84C;
}

/* ── Preloader ────────────────────────────────────────────── */
.preloader {
    background: #111111 !important;
}
.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}
.preloader-logo {
    width: 200px;
    max-width: 70vw;
    height: auto;
    animation: preloader-logo-in 0.6s ease both;
    filter: drop-shadow(0 4px 24px rgba(201,168,76,0.25));
}
@keyframes preloader-logo-in {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.preloader-spinner .loading-container {
    margin: 0 auto;
    width: 52px !important;
    height: 52px !important;
}
.preloader-spinner .loading {
    width: 52px !important;
    height: 52px !important;
    border-width: 2px !important;
    border-color: transparent #C9A84C transparent #C9A84C !important;
}
/* override for old icon-based spinner (now unused) */
.loading {
    border-color: transparent #C9A84C transparent #C9A84C !important;
}

/* ── Main navigation – dark card to match logo ────────────── */
header.main-header .header-sticky {
    background: #111111 !important;
    border: 1px solid rgba(201,168,76,.18) !important;
    box-shadow: 0 4px 24px rgba(0,0,0,.45) !important;
}

/* Nav links: white text, gold on active / hover */
header.main-header .navbar-nav .nav-link {
    color: rgba(255,255,255,.82) !important;
}
header.main-header .navbar-nav .nav-item.active .nav-link,
header.main-header .navbar-nav .nav-link:hover {
    color: #C9A84C !important;
}

/* "Get A Quote" button – gold fill, dark text */
header.main-header .btn-default {
    background: #C9A84C !important;
    color: #111111 !important;
    font-weight: 700;
}
header.main-header .btn-default:hover {
    background: #A8882A !important;
    color: #fff !important;
}
header.main-header .btn-default::before {
    background: #A8882A !important;
}

/* Logo sizing */
.navbar-brand img {
    height: 46px;
    width: auto;
    border-radius: 0;
}
.footer-logo img {
    height: 52px;
    width: auto;
    border-radius: 0;
    opacity: 0.95;
}

/* Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9998;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
    color: #fff;
}

@keyframes whatsapp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Popup */
.whatsapp-popup {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    overflow: hidden;
    animation: slideInUp 0.4s ease;
    font-family: inherit;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.whatsapp-popup-header {
    background: #075E54;
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.whatsapp-popup-avatar {
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.whatsapp-popup-info h4 {
    margin: 0 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.whatsapp-popup-info span {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.whatsapp-popup-close:hover { color: #fff; }

.whatsapp-popup-body {
    background: #ECE5DD;
    padding: 16px;
}

.whatsapp-popup-body p {
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    border-top-left-radius: 0;
    font-size: 14px;
    color: #333;
    margin: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    line-height: 1.5;
}

.whatsapp-popup-footer {
    padding: 12px 16px;
    background: #f8f9fa;
}

.whatsapp-popup-btn {
    display: block;
    background: #25D366;
    color: #fff !important;
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.whatsapp-popup-btn:hover {
    background: #1da851;
    color: #fff;
}

.whatsapp-popup-btn i {
    margin-right: 6px;
    font-size: 16px;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-popup { right: 10px; left: 10px; width: auto; bottom: 95px; }
}

/* ── Footer – force email addresses to lowercase ──────────── */
.footer-contact-links ul li a[href^="mailto"] {
    text-transform: lowercase !important;
}

/* ── Documents page ─────────────────────────────────────── */
.docs-page-section { padding: 70px 0 60px; }

/* Intro */
.docs-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.docs-intro-text { flex: 1; min-width: 280px; }
.docs-intro-text h2 { font-size: clamp(22px,2.8vw,32px); font-weight:800; color:#111; margin:8px 0 14px; }
.docs-intro-text p  { color:#666; font-size:15px; line-height:1.7; margin:0; }
.docs-intro-stats {
    display: flex;
    gap: 0;
    background: #f8f9fa;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    flex-shrink: 0;
}
.dis-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 22px 32px;
    border-right: 1px solid #eee;
}
.dis-item:last-child { border-right: 0; }
.dis-num { font-size: 30px; font-weight: 800; color: #C9A84C; line-height:1; }
.dis-lbl { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-top: 5px; }

/* Filter bar */
.docs-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 44px;
}
.dfb-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 100px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.dfb-btn i { font-size: 12px; }
.dfb-btn:hover { border-color: #C9A84C; color: #C9A84C; }
.dfb-btn.active { background: #C9A84C; border-color: #C9A84C; color: #111; }
.dfb-count {
    background: rgba(0,0,0,0.1);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
    min-width: 22px;
    text-align: center;
}
.dfb-btn.active .dfb-count { background: rgba(0,0,0,0.2); }

/* Featured strip */
.docs-featured { margin-bottom: 52px; }
.docs-featured-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; color: #f39c12;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 16px;
}
.docs-featured-label i { font-size: 14px; }
.docs-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}
.dfc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 2px solid #f5c518;
    border-radius: 14px;
    padding: 18px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.dfc-card:hover { box-shadow: 0 8px 30px rgba(201,168,76,0.18); transform: translateY(-2px); }
.dfc-icon {
    width: 58px; height: 58px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dfc-body { flex: 1; min-width: 0; }
.dfc-body h4 { font-size: 14px; font-weight: 700; color: #111; margin: 0 0 4px; line-height: 1.3; }
.dfc-body p  { font-size: 12px; color: #888; margin: 0 0 8px; }
.dfc-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.dfc-cat  { font-size: 11px; font-weight: 600; color: #666; }
.dfc-size { font-size: 11px; color: #aaa; }
.dfc-download {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px;
    background: #C9A84C; color: #111; border-radius: 10px;
    padding: 10px 14px; text-decoration: none;
    font-size: 11px; font-weight: 700;
    transition: background 0.2s; flex-shrink: 0;
}
.dfc-download i { font-size: 16px; }
.dfc-download:hover { background: #A8882A; color: #fff; text-decoration: none; }

/* Category blocks */
.docs-category-block { margin-bottom: 48px; }
.dcb-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f0f0f0;
}
.dcb-icon {
    width: 42px; height: 42px;
    background: #111; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dcb-icon i { color: #C9A84C; font-size: 18px; }
.dcb-header h3 { font-size: 20px; font-weight: 700; color: #111; margin: 0; flex: 1; }
.dcb-count { font-size: 12px; color: #aaa; white-space: nowrap; }

/* Document cards grid */
.dcb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.doc-card {
    display: flex;
    gap: 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 18px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.doc-card:hover {
    border-color: #C9A84C;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.doc-card-icon {
    width: 50px; height: 50px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.doc-card-icon i { font-size: 22px; }
.doc-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.doc-card-body h5 { font-size: 14px; font-weight: 700; color: #111; margin: 0; line-height: 1.3; }
.doc-card-desc { font-size: 12px; color: #888; margin: 0; line-height: 1.5; }
.doc-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; margin-top: auto; flex-wrap: wrap;
}
.doc-card-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.doc-ext {
    background: #f0f0f0; color: #555;
    font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
    padding: 2px 8px; border-radius: 4px;
}
.doc-size, .doc-dl-count { font-size: 11px; color: #aaa; }
.doc-dl-count i { font-size: 10px; }
.doc-download-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #111; color: #fff;
    font-size: 12px; font-weight: 600;
    padding: 7px 14px; border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.doc-download-btn i { font-size: 11px; }
.doc-download-btn:hover { background: #C9A84C; color: #111; text-decoration: none; }

/* Empty state */
.docs-empty {
    text-align: center;
    padding: 100px 20px;
    color: #bbb;
}
.docs-empty i  { font-size: 64px; display: block; margin-bottom: 20px; color: #ddd; }
.docs-empty h3 { font-size: 22px; color: #999; margin-bottom: 10px; }
.docs-empty p  { color: #bbb; font-size: 14px; }

/* CTA */
.docs-cta-section {
    padding: 60px 0;
    background: #111;
}
.docs-cta-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 28px; flex-wrap: wrap;
}
.docs-cta-inner h3 { font-size: 24px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.docs-cta-inner p  { color: rgba(255,255,255,0.6); margin: 0; font-size: 14px; max-width: 480px; }

/* Responsive */
@media (max-width: 767px) {
    .docs-intro { flex-direction: column; }
    .docs-intro-stats { width: 100%; justify-content: center; }
    .dis-item { padding: 18px 22px; }
    .dcb-grid, .docs-featured-grid { grid-template-columns: 1fr; }
    .docs-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 479px) {
    .dfb-btn { font-size: 12px; padding: 8px 14px; }
    .doc-card { flex-direction: column; }
    .doc-card-icon { width: 44px; height: 44px; }
}

/* ── Clients page ───────────────────────────────────────── */

/* Stats bar */
.clients-stats-bar {
    background: #111;
    padding: 36px 0;
}
.csb-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.csb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 48px;
    text-align: center;
}
.csb-number {
    font-size: 38px;
    font-weight: 800;
    color: #C9A84C;
    line-height: 1;
    margin-bottom: 6px;
}
.csb-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}
.csb-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}

/* Main section */
.clients-page-section {
    padding: 80px 0 60px;
}

/* Filter pills */
.clients-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}
.cf-pill {
    padding: 8px 22px;
    border-radius: 100px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.cf-pill:hover {
    border-color: #C9A84C;
    color: #C9A84C;
}
.cf-pill.active {
    background: #C9A84C;
    border-color: #C9A84C;
    color: #111;
}

/* Clients grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.client-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.10);
    border-color: #C9A84C;
}
.cc-logo-wrap {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: #f9f9f9;
    border-bottom: 1px solid #f0f0f0;
}
.cc-logo-wrap img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s;
}
.client-card:hover .cc-logo-wrap img {
    filter: grayscale(0%);
}
.cc-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A84C, #A8882A);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc-logo-placeholder span {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}
.cc-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cc-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}
.cc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
}
.cc-tag {
    background: #f0f4f8;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.cc-country {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}
.cc-country i { color: #C9A84C; font-size: 10px; }
.cc-link {
    margin-top: auto;
    font-size: 12px;
    font-weight: 600;
    color: #1a6fbd;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    padding-top: 4px;
}
.cc-link:hover { color: #C9A84C; }
.cc-link i { font-size: 10px; }

@keyframes fadeCardIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* CTA strip */
.clients-cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
    position: relative;
    overflow: hidden;
}
.clients-cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.clients-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.cta-text p {
    color: rgba(255,255,255,0.65);
    margin: 0;
    font-size: 15px;
    max-width: 480px;
}
.cta-actions { flex-shrink: 0; }

/* Responsive */
@media (max-width: 1199px) {
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .csb-item { padding: 10px 24px; }
    .csb-number { font-size: 28px; }
    .clients-cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
    .cta-actions .btn-default { margin-left: 0 !important; }
}
@media (max-width: 479px) {
    .clients-grid { grid-template-columns: 1fr; }
    .csb-divider { width: 80px; height: 1px; }
    .csb-inner { flex-direction: column; }
}

/* ── Contact page – Team section ────────────────────────── */
.contact-team-section {
    margin-bottom: 60px;
}
.contact-team-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}
.contact-team-heading h2 {
    font-size: clamp(20px, 2.8vw, 30px);
    font-weight: 700;
    color: #111;
    line-height: 1.35;
    margin-bottom: 12px;
}
.contact-team-heading p {
    font-size: 16px;
    color: #777;
    margin: 0;
}
.contact-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.contact-team-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e8e8e8;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.contact-team-card:first-child { border-radius: 12px 0 0 12px; }
.contact-team-card:last-child  { border-radius: 0 12px 12px 0; }
.contact-team-card + .contact-team-card { border-left: 0; }
.contact-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 1;
}
.ctc-photo {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ddd;
    position: relative;
}
.ctc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s;
}
.contact-team-card:hover .ctc-photo img {
    filter: grayscale(0%);
}
.ctc-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
}
.ctc-photo-placeholder i {
    font-size: 72px;
    color: rgba(0,0,0,0.2);
}
.ctc-info {
    padding: 24px 28px;
    background: #f0f4f8;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ctc-info h4 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #111;
}
.ctc-designation {
    margin: 0;
    font-size: 13px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ctc-phones {
    margin: 4px 0 0;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.ctc-phones a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.ctc-phones a:hover { color: #C9A84C; }
.ctc-sep {
    color: #bbb;
    font-weight: 300;
}
.ctc-email {
    font-size: 14px;
    font-weight: 600;
    color: #1a6fbd;
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 2px;
    display: inline-block;
}
.ctc-email:hover { color: #C9A84C; text-decoration: underline; }

@media (max-width: 767px) {
    .contact-team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .contact-team-card,
    .contact-team-card:first-child,
    .contact-team-card:last-child { border-radius: 12px; border: 1px solid #e8e8e8; }
    .contact-team-card + .contact-team-card { border-left: 1px solid #e8e8e8; }
    .ctc-photo { aspect-ratio: 16/9; }
    .ctc-info { padding: 20px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .contact-team-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .contact-team-card:nth-child(2) { border-radius: 0 12px 12px 0; }
    .contact-team-card:nth-child(3) {
        border-radius: 0 0 0 12px;
        border-top: 0;
        border-left: 1px solid #e8e8e8;
    }
    .contact-team-card:last-child:nth-child(3) { border-radius: 0 0 12px 12px; }
}

/* ── Contact page – Google Map card ─────────────────────── */
.contact-map-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
}
.contact-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 28px;
    background: #111111;
}
.contact-map-title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #C9A84C;
}
.contact-map-title i { margin-right: 8px; }
.contact-map-address {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}
.contact-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #C9A84C;
    color: #111 !important;
    font-weight: 700;
    font-size: 13px;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s;
}
.contact-map-directions:hover {
    background: #A8882A;
    color: #fff !important;
    transform: translateY(-1px);
    text-decoration: none;
}
.contact-map-embed { line-height: 0; }
.contact-map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

@media (max-width: 575px) {
    .contact-map-header { padding: 16px 18px; }
    .contact-map-embed iframe { height: 280px; }
}

/* ===== TRUSTED PARTNERS SECTION ===================================== */
.trusted-partners-section {
    padding: 80px 0 0;
    background: #fff;
    overflow: hidden;
}
.trusted-partners-section .section-title {
    margin-bottom: 44px;
}
.trusted-partners-section .section-title p {
    color: #666;
    font-size: 15px;
    max-width: 600px;
    margin: 14px auto 0;
    line-height: 1.7;
}

/* Slider wrap — fade edges */
.tps-slider-wrap {
    overflow: hidden;
    padding: 10px 0 70px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

/* Logo cards */
.tps-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 110px;
    background: #fff;
    border: 1.5px solid #ebebeb;
    border-radius: 14px;
    padding: 18px 20px 14px;
    transition: border-color 0.25s, box-shadow 0.25s;
    cursor: default;
}
.tps-logo-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.tps-logo-card:hover {
    border-color: #C9A84C;
    box-shadow: 0 6px 28px rgba(201, 168, 76, 0.14);
}
.tps-logo-card img {
    max-width: 100%;
    max-height: 52px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.3s;
}
.tps-logo-card:hover img {
    filter: grayscale(0%) opacity(1);
}
.tps-logo-name {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.25s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.tps-logo-card:hover .tps-logo-name { color: #C9A84C; }

/* Swiper overrides — continuous scroll */
.tps-swiper {
    overflow: visible !important;
}
.tps-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}
.tps-swiper .swiper-slide {
    width: 180px !important;
}

@media (max-width: 767px) {
    .trusted-partners-section { padding-top: 60px; }
    .tps-swiper .swiper-slide { width: 150px !important; }
    .tps-logo-card { height: 90px; padding: 12px 14px 10px; }
    .tps-logo-card img { max-height: 42px; }
}

/* ===== HERO SLIDER ====================================================== */

.hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #111;
}

.hero-swiper {
    width: 100%;
}

.hero-swiper .swiper-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 220px 0 120px;
    overflow: hidden;
}

/* dark overlay matching original hero */
.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.38) 70%, rgba(0,0,0,0.10) 100%);
    z-index: 1;
}

.hero-swiper .swiper-slide .container {
    position: relative;
    z-index: 2;
}

/* make hero text colours work without .dark-section wrapper */
.hero-swiper .section-sub-title {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}

.hero-swiper .section-title h1,
.hero-swiper .section-title p {
    color: #fff;
}

/* --- Navigation arrows -------------------------------------------------- */
.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    border: 2px solid #C9A84C;
    color: #C9A84C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, transform 0.25s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-nav-prev { left: 32px; }
.hero-nav-next { right: 32px; }

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: #C9A84C;
    color: #111;
    transform: translateY(-50%) scale(1.08);
}

.hero-nav-prev.swiper-button-disabled,
.hero-nav-next.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}

/* --- Pagination dots ----------------------------------------------------- */
.hero-swiper-pagination {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 20;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 5px;
    opacity: 1;
    transition: width 0.35s, background 0.35s;
    cursor: pointer;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #C9A84C;
    width: 32px;
}

/* --- Slide counter badge (top-right) ------------------------------------ */
.hero-slide-counter {
    position: absolute;
    bottom: 36px;
    right: 40px;
    z-index: 20;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    pointer-events: none;
}

.hero-slide-counter .current {
    color: #C9A84C;
    font-size: 20px;
    font-weight: 700;
}

/* --- Progress bar (auto-play timer) ------------------------------------- */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.15);
    width: 100%;
    z-index: 20;
    overflow: hidden;
}

.hero-progress-bar .hero-progress-fill {
    height: 100%;
    background: #C9A84C;
    width: 0%;
    transition: width linear;
}

/* --- Mobile ------------------------------------------------------------ */
@media (max-width: 991px) {
    .hero-swiper .swiper-slide {
        padding: 160px 0 80px;
        min-height: 80vh;
    }
    .hero-nav-prev { left: 14px; }
    .hero-nav-next { right: 14px; }
    .hero-nav-prev,
    .hero-nav-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .hero-swiper-pagination { bottom: 22px; }
    .hero-slide-counter { display: none; }
}

@media (max-width: 575px) {
    .hero-swiper .swiper-slide {
        padding: 130px 0 70px;
        min-height: 75vh;
    }
    .hero-nav-prev,
    .hero-nav-next { display: none; }
}

/* ============================================================
   Nav Dropdown — Products mega/sub menu
   ============================================================ */
.nav-dropdown { position: relative; }

.nav-caret {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.25s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown.open .nav-caret {
    transform: rotate(180deg);
}

/* Submenu panel */
.nav-submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 230px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    transform: translateX(-50%) translateY(6px);
    z-index: 9999;
    border-top: 3px solid #C9A84C;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-submenu li { display: block; }

.nav-submenu li a {
    display: flex;
    align-items: center;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    white-space: nowrap;
}

.nav-submenu li a:hover {
    background: #fdf6e8;
    color: #C9A84C;
    padding-left: 26px;
}

/* First item (All Products) — visually distinct */
.nav-submenu li:first-child a {
    font-weight: 700;
    color: #111;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 4px;
}

.nav-submenu li:first-child a:hover {
    background: #C9A84C;
    color: #fff;
    padding-left: 20px;
}

/* ── Mobile / responsive nav ── */
@media (max-width: 991px) {
    .nav-submenu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        border-left: 3px solid #C9A84C;
        background: #f9f6ef;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        margin: 4px 0 8px 16px;
        padding: 4px 0;
    }
    .nav-dropdown.open .nav-submenu {
        display: block;
    }
    .nav-dropdown:hover .nav-submenu {
        display: block;
    }
    .nav-submenu li a {
        padding: 8px 14px;
        font-size: 13px;
    }
    .nav-submenu li:first-child a {
        border-bottom: none;
        margin-bottom: 0;
    }
}

/* ============================================================
   Leadership Message sections — About page
   ============================================================ */

/* Photo */
.leader-photo-wrap {
    display: inline-block;
    text-align: center;
}

.leader-photo {
    width: 240px;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
    border: 4px solid #fff;
    display: block;
    margin: 0 auto;
}

.leader-photo-placeholder {
    width: 240px;
    height: 300px;
    border-radius: 14px;
    background: #e8e4da;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.leader-photo-placeholder i { font-size: 72px; color: #bbb; }

.leader-name-card {
    margin-top: 16px;
    background: #111;
    color: #fff;
    border-radius: 10px;
    padding: 12px 20px;
    display: inline-block;
    text-align: center;
    min-width: 200px;
}
.leader-name-card strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.leader-name-card span {
    display: block;
    font-size: 12px;
    color: #C9A84C;
    font-weight: 600;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Message box */
.leader-message-box {
    background: #fff;
    border-radius: 14px;
    padding: 36px 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border-left: 4px solid #C9A84C;
    position: relative;
}

.leader-quote-icon {
    font-size: 48px;
    color: #C9A84C;
    opacity: 0.18;
    line-height: 1;
    margin-bottom: 8px;
}

.leader-message-body {
    font-size: 15.5px;
    line-height: 1.85;
    color: #444;
}
.leader-message-body p { margin-bottom: 14px; }
.leader-message-body p:last-child { margin-bottom: 0; }

.leader-signature {
    margin-top: 24px;
    font-style: italic;
    color: #C9A84C;
    font-weight: 600;
    font-size: 15px;
    border-top: 1px dashed #e0d8c8;
    padding-top: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .leader-photo { width: 180px; height: 220px; }
    .leader-photo-placeholder { width: 180px; height: 220px; }
    .leader-message-box { padding: 24px 22px; }
    .leader-message-body { font-size: 14.5px; }
}

@media (max-width: 575px) {
    .leader-photo { width: 140px; height: 175px; }
    .leader-photo-placeholder { width: 140px; height: 175px; }
    .leader-name-card { min-width: 160px; }
    .leader-message-box { padding: 20px 18px; border-left-width: 3px; }
}

/* ============================================================
   Product Specification Tables — product-single.php
   ============================================================ */
.spec-table-block { }

.spec-table-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    padding: 10px 16px;
    background: #f4f0e8;
    border-left: 4px solid #C9A84C;
    border-radius: 6px 6px 0 0;
    margin-bottom: -2px;
}

.spec-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: #fff;
}

.spec-data-table thead tr {
    background: #111;
}

.spec-data-table thead th {
    padding: 12px 16px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}
.spec-data-table thead th:first-child { text-align: left; }
.spec-data-table thead th:last-child { border-right: none; }

.spec-data-table tbody tr:nth-child(even) { background: #f9f7f2; }
.spec-data-table tbody tr:hover { background: #fdf6e8; }

.spec-data-table tbody td {
    padding: 10px 16px;
    border-right: 1px solid #ece8de;
    border-bottom: 1px solid #ece8de;
    text-align: center;
    color: #444;
}
.spec-data-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #222;
    background: rgba(201,168,76,0.06);
    border-right: 2px solid #C9A84C;
}
.spec-data-table tbody td:last-child { border-right: none; }

/* N/A cells */
.spec-data-table tbody td:not(:first-child) {
    font-variant-numeric: tabular-nums;
}

@media (max-width: 575px) {
    .spec-data-table thead th,
    .spec-data-table tbody td { padding: 8px 10px; font-size: 12px; }
    .spec-table-title { font-size: 14px; }
}
