/* Custom site CSS for Africa Oud Supply */

/* Global border-radius override to make everything square except the bottom-right WhatsApp float */
*:not(.whatsapp-float):not(.whatsapp-float i) {
    border-radius: 0px !important;
}

/* Restyle primary-btn (Gold background, white text by default) */
.primary-btn {
    background-color: #c5a059 !important;
    border: 1px solid #c5a059 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 15px 35px !important;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}
.primary-btn:hover {
    background-color: #0b332a !important;
    border-color: #0b332a !important;
    color: #ffffff !important;
}

/* Restyle theme-btn (Dark Green background, white text) */
.theme-btn {
    background-color: #0b332a !important;
    border: 1px solid #0b332a !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 15px 35px !important;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}
.theme-btn:hover {
    background-color: #c5a059 !important;
    border-color: #c5a059 !important;
    color: #ffffff !important;
}

/* Restyle bordered-btn (Transparent background, white border and text) */
.bordered-btn {
    background-color: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 13px 35px !important;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}
.bordered-btn:hover {
    background-color: #c5a059 !important;
    border-color: #c5a059 !important;
    color: #ffffff !important;
}

/* Restyle white-btn (Solid white background, dark green text) */
.white-btn {
    background-color: #ffffff !important;
    border: 1px solid #ffffff !important;
    color: #0b332a !important;
    font-weight: 600 !important;
    padding: 15px 35px !important;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}
.white-btn:hover {
    background-color: #c5a059 !important;
    border-color: #c5a059 !important;
    color: #ffffff !important;
}

/* Mobile: stack hero buttons neatly */
@media (max-width: 576px) {
    .hero-area-banner .bordered-btn,
    .hero-area-banner .white-btn {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px 20px !important;
        font-size: 12px !important;
        margin-right: 0 !important;
        box-sizing: border-box;
    }
    .hero-area-banner .service-info {
        padding-right: 0 !important;
    }
}

/* Float WhatsApp Widget Button (Circular design as requested) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50% !important; /* Circular floating button */
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.whatsapp-float i {
    line-height: 60px;
}

/* Top WhatsApp simple link format */
.top-whatsapp-link {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
}
.top-whatsapp-link:hover {
    color: #c5a059 !important;
}

/* Header Top Language Switcher */
.language-switcher {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    margin-right: 20px;
    display: inline-block;
}
.lang-link {
    color: #cccccc !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin: 0 4px;
}
.lang-link.active {
    color: #c5a059 !important; /* Muted gold active color */
}
.lang-link:hover {
    color: #ffffff !important;
}

/* Logo Sizing Improvement */
.logo img {
    height: 80px !important;
    max-height: 85px !important;
    width: auto !important;
    object-fit: contain;
}

/* Absolute Transparent Header Controls */
/* By default, we let style.css handle the absolute layout, but we override white text colors on transparent bg */
.header-area.absolute-header {
    background: transparent !important;
    box-shadow: none !important;
}
.header-area.absolute-header .navigation {
    background: transparent !important;
}
/* Only color the top level menu links white */
.header-area.absolute-header .main-menu > ul > li > a {
    color: #ffffff !important;
}
.header-area.absolute-header .main-menu > ul > li > a:hover {
    color: #c5a059 !important;
}

/* Dropdown menu list items (Always dark text with gold hover, never white-on-white) */
.main-menu ul.sub-menu {
    background-color: #ffffff !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}
.main-menu ul.sub-menu li a {
    color: #0b332a !important;
    font-weight: 500 !important;
}
.main-menu ul.sub-menu li a:hover {
    color: #c5a059 !important;
    background-color: #FAF6EE !important;
}

/* Sticky scrolled header controls */
.header-sticky {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
}
/* Specifically override absolute transparent menu link colors when sticky class is active */
.header-area.absolute-header #header-sticky.header-sticky .main-menu > ul > li > a {
    color: #0b332a !important;
}
.header-area.absolute-header #header-sticky.header-sticky .main-menu > ul > li > a:hover {
    color: #c5a059 !important;
}
/* Also fix hamburger icon color in sticky scrolled state */
.header-area.absolute-header #header-sticky.header-sticky #hamburger i {
    color: #0b332a !important;
}
/* Non-absolute sticky menus fallback */
.header-sticky .main-menu > ul > li > a {
    color: #0b332a !important;
}
.header-sticky .main-menu > ul > li > a:hover {
    color: #c5a059 !important;
}

/* Header style for inner pages (No absolute overlay) */
.header-area:not(.absolute-header) {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}
.header-area:not(.absolute-header) .main-menu > ul > li > a {
    color: #0b332a !important;
}
.header-area:not(.absolute-header) .main-menu > ul > li > a:hover {
    color: #c5a059 !important;
}

/* Premium Charcoal Footer Styling */
.footer-charcoal {
    background: #111111 !important;
    color: #eeeeee;
}
.footer-charcoal h5 {
    color: #c5a059 !important; /* Gold headings */
    font-weight: 600;
}
.footer-charcoal p, .footer-charcoal a {
    color: #cccccc !important;
}
.footer-charcoal a:hover {
    color: #c5a059 !important;
}
.footer-bottom.charcoal-bottom {
    background: #090909 !important;
    border-top: 1px solid #222;
}

/* Premium Ivory background and colors */
.bg-ivory {
    background-color: #FAF6EE !important;
}
.bg-dark-green {
    background-color: #0b332a !important;
}
.text-gold {
    color: #c5a059 !important;
}
.text-dark-green {
    color: #0b332a !important;
}

/* Regulated botanical banner */
.regulated-badge {
    border: 1px solid #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    padding: 5px 12px;
    border-radius: 0px !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
}

/* Quote form block container */
.quote-form-container {
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border-top: 4px solid #c5a059;
}

/* Hero area layout and height adjustments to reduce the vertical gap */
.hero-area-banner {
    height: 650px !important; /* Increased by 50px to show buttons fully */
    display: flex !important;
    align-items: center !important; /* Center content vertically */
    padding-top: 130px !important; /* Offset for absolute header spacing */
}
@media (max-width: 991px) {
    .hero-area-banner {
        height: 600px !important;
        padding-top: 100px !important;
    }
}
@media (max-width: 767px) {
    .hero-area-banner {
        height: auto !important;          /* Let height grow with content */
        min-height: 560px !important;
        padding-top: 110px !important;    /* Clear the fixed navbar */
        padding-bottom: 40px !important;
        align-items: flex-start !important;
    }
}
@media (max-width: 576px) {
    .hero-area-banner {
        padding-top: 100px !important;
        min-height: 520px !important;
    }
}
.hero-area-banner .hero-area-content {
    padding-bottom: 0px !important; /* Remove large bottom spacing */
    padding-left: 0px !important; /* Align content with standard bootstrap grid alignment */
    width: 100% !important;
}

/* Responsive typography sizes for the hero banner */
.hero-area-banner h1 {
    font-size: 52px !important; /* Clean, modern, smaller title font */
    line-height: 62px !important;
}
@media (max-width: 991px) {
    .hero-area-banner h1 {
        font-size: 42px !important;
        line-height: 50px !important;
    }
}
@media (max-width: 767px) {
    .hero-area-banner h1 {
        font-size: 28px !important;
        line-height: 36px !important;
    }
}
@media (max-width: 576px) {
    .hero-area-banner h1 {
        font-size: 24px !important;
        line-height: 32px !important;
    }
}

.hero-area-banner p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-top: 15px !important;
    margin-bottom: 25px !important;
    max-width: 720px !important;
}
@media (max-width: 767px) {
    .hero-area-banner p {
        font-size: 13px !important;
        margin-top: 8px !important;
        margin-bottom: 16px !important;
        line-height: 1.55 !important;
    }
}
@media (max-width: 576px) {
    .hero-area-banner p {
        font-size: 12.5px !important;
        margin-bottom: 14px !important;
    }
}

/* Visible green color for the hero subtitle h6 */
.hero-area-banner h6 {
    color: #2e7d32 !important; /* Rich leafy green */
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    background-color: rgba(255, 255, 255, 0.8) !important; /* Highlight block behind text */
    display: inline-block !important;
    padding: 4px 10px !important;
    margin-bottom: 12px !important;
}
@media (max-width: 767px) {
    .hero-area-banner h6 {
        font-size: 10px !important;
        letter-spacing: 1px !important;
        padding: 4px 8px !important;
        white-space: normal !important;   /* Allow wrapping instead of overflow */
        max-width: 100% !important;
        margin-bottom: 10px !important;
    }
}
@media (max-width: 576px) {
    .hero-area-banner h6 {
        font-size: 9px !important;
        letter-spacing: 0.8px !important;
    }
}

/* Modern Feature Cards Restyle (Icon-free B2B style) */
.single-feature-item {
    text-align: left !important;
    background: #ffffff !important;
    border: 1px solid #eaeaea !important;
    border-top: 4px solid #eaeaea !important;
    padding: 35px 30px !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.single-feature-item.active,
.single-feature-item:hover {
    border-color: #eaeaea !important;
    border-top-color: #c5a059 !important;
    box-shadow: 0 15px 35px rgba(11, 51, 42, 0.08) !important;
    transform: translateY(-5px) !important;
}

/* Number badge top right */
.single-feature-item::before {
    content: attr(data-number);
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 32px;
    font-weight: 300;
    color: rgba(197, 160, 89, 0.15);
    font-family: "Manrope", sans-serif;
    line-height: 1;
}

.single-feature-item .feature-content h4 {
    font-size: 19px !important;
    font-weight: 600 !important;
    color: #0b332a !important;
    margin: 0 0 15px 0 !important;
    padding-right: 40px;
}

.single-feature-item .feature-content p {
    font-size: 14px !important;
    color: #555555 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* About Section Checklist UI */
.about-points-list .point-item {
    background: #fdfcf9 !important;
    border: 1px solid #f2edd8 !important;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.about-points-list .point-item:hover {
    border-color: #c5a059 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(11, 51, 42, 0.05);
}

.about-points-list .point-text {
    font-size: 14px !important;
    color: #333333 !important;
    font-weight: 500 !important;
}

.about-points-list .point-text strong {
    color: #c5a059 !important;
    margin-right: 5px;
}

.about-points-list i {
    font-size: 16px !important;
}

/* ============================================================
   PROFESSIONAL FOOTER STYLES
   ============================================================ */

.footer-area-pro {
    background-color: #0d1f1a;
    color: #c8c0b0;
    font-family: "Manrope", "Inter", sans-serif;
}

/* --- Accent Bar (top strip) --- */
.footer-accent-bar {
    background-color: #c5a059;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-cta-text {
    color: #0b332a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-cta-text i {
    color: #0b332a;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b332a;
    color: #f0ebe0 !important;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.footer-cta-btn:hover {
    background: #071f18;
    transform: translateY(-2px);
    color: #c5a059 !important;
}

/* --- Footer Main Body --- */
.footer-main {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* --- Brand Column --- */
.footer-logo-img {
    max-height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand-desc {
    font-size: 15px;
    color: #b0a898;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-social-pill.whatsapp-pill {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366 !important;
    border-color: rgba(37, 211, 102, 0.25);
}

.footer-social-pill.whatsapp-pill:hover {
    background: #25d366;
    color: #ffffff !important;
    border-color: #25d366;
}

.footer-social-pill.email-pill {
    background: rgba(197, 160, 89, 0.12);
    color: #c5a059 !important;
    border-color: rgba(197, 160, 89, 0.25);
}

.footer-social-pill.email-pill:hover {
    background: #c5a059;
    color: #ffffff !important;
    border-color: #c5a059;
}

/* --- Widget Columns (Nav + Products) --- */
.footer-widget-title {
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin-bottom: 26px !important;
    padding-bottom: 14px !important;
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #c5a059;
}

.footer-links-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links-list li {
    margin-bottom: 12px !important;
}

.footer-links-list li a {
    font-size: 15px !important;
    color: #b0a898 !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links-list li a i {
    color: #c5a059;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.footer-links-list li a:hover {
    color: #c5a059 !important;
    padding-left: 5px;
}

.footer-links-list li a:hover i {
    transform: translateX(3px);
}

/* --- Contact Column --- */
.footer-contact-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #b0a898;
    line-height: 1.6;
}

.footer-contact-list li a {
    color: #b0a898 !important;
    text-decoration: none !important;
    transition: color 0.25s ease;
    word-break: break-word;
    font-size: 15px;
}

.footer-contact-list li a:hover {
    color: #c5a059 !important;
}

.footer-contact-list li small {
    display: block;
    font-size: 13px;
    color: #7a7268;
    margin-top: 2px;
}

/* Contact icon — clean inline gold, NO box */
.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    background: none;
    border: none;
}

.contact-icon i {
    color: #c5a059;
    font-size: 19px;
    line-height: 1;
}

/* --- Footer Bottom Bar --- */
.footer-bottom-pro {
    padding: 22px 0;
    background-color: #080f0d;
}

.footer-copyright {
    font-size: 14px;
    color: #8a8278;
}

.footer-copyright strong {
    color: #c8c0b0;
}

.footer-tagline {
    font-size: 14px;
    color: #8a8278;
    letter-spacing: 0.02em;
}

.footer-tagline i {
    color: #c5a059;
}

/* Mobile footer adjustments */
@media (max-width: 767px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    .footer-accent-bar .row {
        text-align: center;
    }
    .footer-cta-btn {
        margin-top: 10px;
        display: block;
        text-align: center;
    }
    .footer-widget-title {
        margin-top: 10px !important;
    }
    .footer-bottom-pro {
        text-align: center;
    }
    .footer-bottom-pro .text-md-end {
        text-align: center !important;
    }
}

/* =====================================================
   DUAL-PRODUCT SHOWCASE SECTION
   ===================================================== */
.product-showcase-card {
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(11,51,42,0.10);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 56px rgba(11,51,42,0.18);
}
.product-showcase-card .product-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}
.product-showcase-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-showcase-card:hover .product-img img {
    transform: scale(1.06);
}
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c5a059;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
}
.iboga-badge {
    background: #0b332a;
}
.product-showcase-content {
    padding: 32px 32px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-showcase-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0b332a;
    margin-bottom: 14px;
}
.product-showcase-content p {
    color: #666;
    line-height: 1.75;
    font-size: 15px;
    flex: 1;
}
.product-features-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
}
.product-features-list li {
    font-size: 14px;
    color: #444;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-features-list li i {
    color: #c5a059;
    font-size: 16px;
    flex-shrink: 0;
}
.iboga-btn {
    background-color: #0b332a !important;
    border-color: #0b332a !important;
}
.iboga-btn:hover {
    background-color: #c5a059 !important;
    border-color: #c5a059 !important;
}

/* =====================================================
   IBOGA PAGE — BOTANICAL GALLERY & SECTIONS
   ===================================================== */
.iboga-hero-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    height: 380px;
    overflow: hidden;
}
.iboga-hero-strip .strip-img {
    overflow: hidden;
}
.iboga-hero-strip .strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.iboga-hero-strip .strip-img:hover img {
    transform: scale(1.07);
}
.iboga-hero-strip .strip-img.large {
    grid-row: span 2;
}

/* Image mosaic gallery */
.iboga-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 8px;
}
.iboga-gallery-grid .gallery-item {
    overflow: hidden;
    position: relative;
}
.iboga-gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}
.iboga-gallery-grid .gallery-item:hover img {
    transform: scale(1.08);
}
.iboga-gallery-grid .gallery-item.wide {
    grid-column: span 2;
}

/* Botanical info cards */
.botanical-card {
    background: #fff;
    border-left: 4px solid #c5a059;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    height: 100%;
    transition: box-shadow 0.3s ease;
}
.botanical-card:hover {
    box-shadow: 0 8px 32px rgba(11,51,42,0.12);
}
.botanical-card .botanical-icon {
    font-size: 32px;
    color: #c5a059;
    margin-bottom: 14px;
    display: block;
}
.botanical-card h5 {
    color: #0b332a;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}
.botanical-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.botanical-card.green-border {
    border-left-color: #0b332a;
}

/* Regulated badge */
.regulated-badge {
    display: inline-block;
    background-color: #D9534F;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
}

/* =====================================================
   LANGUAGE SWITCHER ACTIVE STATE
   ===================================================== */
.lang-link.active {
    color: #c5a059 !important;
    font-weight: 700;
}

/* =====================================================
   DUAL-FEATURE BADGES ON HOME FEATURES
   ===================================================== */
.feature-category-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 10px;
}
.feature-category-tag.oud-tag   { background: #c5a059; color: #fff; }
.feature-category-tag.iboga-tag { background: #0b332a; color: #c5a059; }

@media (max-width: 767px) {
    .iboga-hero-strip {
        grid-template-columns: 1fr 1fr;
        height: 260px;
    }
    .iboga-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .iboga-gallery-grid .gallery-item.wide {
        grid-column: span 2;
    }
    .product-showcase-card .product-img {
        height: 220px;
    }
}

/* =====================================================
   PROFESSIONAL ABOUT SECTION — HOMEPAGE
   ===================================================== */
.about-section-pro {
    background: #ffffff;
    padding: 80px 0 90px;
}

/* Eyebrow label with gold rule */
.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.about-eyebrow .gold-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: #c5a059;
    flex-shrink: 0;
}
.about-eyebrow .eyebrow-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c5a059;
}

/* Headline */
.about-headline {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: #0b332a;
    margin-bottom: 22px;
}

/* Lead paragraph — left gold border */
.about-lead {
    font-size: 15.5px;
    color: #666;
    line-height: 1.85;
    margin-bottom: 32px;
    border-left: 3px solid #c5a059;
    padding-left: 20px;
}

/* Numbered achievement rows */
.about-achievements {
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}
.achievement-row {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 18px 0;
    border-bottom: 1px solid #f0ece4;
    transition: background 0.2s ease;
}
.achievement-row:first-child  { padding-top: 0; }
.achievement-row:last-child   { border-bottom: none; }
.achievement-row:hover .achievement-num {
    color: #c5a059;
}
.achievement-num {
    font-size: 30px;
    font-weight: 800;
    color: #ede8df;
    min-width: 50px;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.25s ease;
    font-family: Georgia, serif;
    letter-spacing: -1px;
}
.achievement-content strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #0b332a;
    margin-bottom: 4px;
}
.achievement-content p {
    font-size: 13.5px;
    color: #888;
    margin: 0;
    line-height: 1.65;
}

/* Image column */
.about-img-pro {
    position: relative;
    padding-bottom: 24px;
    padding-right: 24px;
}
.about-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* Gold corner accent frame (bottom-right) */
.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 65%;
    border: 4px solid #c5a059;
    z-index: 0;
    pointer-events: none;
}

/* Floating dark stat card */
.about-stat-card {
    position: absolute;
    bottom: 48px;
    left: -24px;
    background: #0b332a;
    color: #fff;
    padding: 22px 30px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(11, 51, 42, 0.30);
    z-index: 2;
}
.about-stat-card .stat-num {
    display: block;
    font-size: 42px;
    font-weight: 900;
    color: #c5a059;
    line-height: 1;
}
.about-stat-card .stat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 6px;
    color: #c4b89a;
}

/* Responsive */
@media (max-width: 991px) {
    .about-section-pro { padding: 60px 0 70px; }
    .about-headline { font-size: 26px; }
    .about-img-pro  { padding-bottom: 16px; padding-right: 16px; margin-top: 20px; }
    .about-main-img { height: 360px; }
    .about-stat-card { left: 16px; bottom: 32px; }
}
@media (max-width: 575px) {
    .about-section-pro { padding: 50px 0 60px; }
    .about-headline { font-size: 22px; }
    .about-main-img { height: 280px; }
    .about-stat-card { display: none; }
}

/* =====================================================
   PREMIUM CTA SPLIT SECTION — HOMEPAGE
   ===================================================== */
.cta-split-section {
    overflow: hidden;
}

/* ---- Photo side ---- */
.cta-photo-side {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
}
.cta-photo-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.cta-photo-side:hover img {
    transform: scale(1.05);
}

/* Gradient overlay at bottom of photo */
.cta-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11,51,42,0.92) 0%, rgba(11,51,42,0.4) 60%, transparent 100%);
    padding: 50px 36px 36px;
}

/* Product pills in overlay */
.cta-product-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}
.cta-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
}
.cta-pill.gold  {
    background: #c5a059;
    color: #fff;
}
.cta-pill.glass {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
}
.cta-photo-caption {
    color: rgba(255,255,255,0.80);
    font-size: 13.5px;
    margin: 0;
    line-height: 1.6;
}

/* ---- Content side ---- */
.cta-content-side {
    background: #0b332a;
    padding: 72px 60px;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.cta-eyebrow {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c5a059;
    margin-bottom: 22px;
}
.cta-headline {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}
.cta-lead {
    font-size: 15px;
    color: rgba(255,255,255,0.68);
    line-height: 1.85;
    margin-bottom: 32px;
}

/* Contact info strip */
.cta-info-strip {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 22px 24px;
    background: rgba(255,255,255,0.06);
    border-left: 3px solid #c5a059;
    margin-bottom: 36px;
}
.cta-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.80);
    font-size: 14px;
}
.cta-info-item i {
    color: #c5a059;
    font-size: 17px;
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}

/* Action buttons */
.cta-btn-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cta-btn-primary,
.cta-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 17px 28px;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.cta-btn-primary {
    background: #c5a059;
    color: #fff;
}
.cta-btn-primary:hover {
    background: #fff;
    color: #0b332a;
}
.cta-btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.cta-btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
}
.cta-btn-primary i,
.cta-btn-whatsapp i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-content-side {
        padding: 56px 36px;
        min-height: auto;
    }
    .cta-headline { font-size: 28px; }
}
@media (max-width: 575px) {
    .cta-content-side { padding: 48px 24px; }
    .cta-headline { font-size: 24px; }
    .cta-info-strip { padding: 18px; }
}