/* ============================================
   GLOBAL LAYOUT RESET
   ============================================ */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

/* ============================================
   HERO SECTION - BACKGROUND IMAGE WITH OVERLAY
   ============================================ */

.hero-section {
    background: linear-gradient(90deg, 
        rgba(18, 18, 18, 0.95) 0%, 
        rgba(18, 18, 18, 0.85) 30%,
        rgba(18, 18, 18, 0.60) 55%,
        rgba(18, 18, 18, 0.30) 75%,
        rgba(18, 18, 18, 0.10) 100%
    ),
    url('../images/hero-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #707A3E;
}

/* ===== PATTERN OVERLAY ===== */
.hero-section .pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✦</text></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

/* ===== CONTENT WRAPPER ===== */
.hero-section .hero-content {
    position: relative;
    z-index: 2;
}

/* ===== TRUST BADGE ===== */
.hero-section .trust-badge {
    display: inline-block;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(112, 122, 62, 0.2);
}

.hero-section .trust-badge i {
    margin-right: 8px;
}

/* ===== HEADINGS ===== */
.hero-section h1 {
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-section h1 span {
    color: #A7AD7B;
}

/* ===== SUBHEADING ===== */
.hero-section .subheading {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 90%;
}

.hero-section .subheading span {
    color: #A7AD7B;
    font-weight: 500;
}

/* ===== DESCRIPTION ===== */
.hero-section .description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 85%;
}

/* ===== CTA BUTTONS ===== */
.hero-section .btn-group-custom {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-section .btn-primary-custom {
    display: inline-block;
    background: #707A3E;
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(112, 122, 62, 0.4);
    border: 2px solid #707A3E;
}

.hero-section .btn-primary-custom:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
}

.hero-section .btn-primary-custom i {
    margin-right: 10px;
}

.hero-section .btn-secondary-custom {
    display: inline-block;
    background: transparent;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-section .btn-secondary-custom:hover {
    border-color: #A7AD7B;
    background: rgba(167, 173, 123, 0.1);
}

.hero-section .btn-secondary-custom i {
    margin-right: 8px;
}

/* ===== CONTACT INFO ===== */
.hero-section .hero-contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-section .hero-contact i {
    color: #707A3E;
    margin-right: 8px;
}

.hero-section .hero-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
}

.hero-section .hero-contact a:hover {
    color: #FFFFFF;
}

/* ===== HERO IMAGE CARD ===== */
.hero-section .hero-image-card {
    background: linear-gradient(145deg, #1E2118, #2a2f24);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(112, 122, 62, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-section .hero-image-card .glow-effect {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(112, 122, 62, 0.1), transparent 70%);
    border-radius: 50%;
}

.hero-section .hero-image-card .content {
    position: relative;
    z-index: 2;
}

.hero-section .hero-image-card .icon-main {
    font-size: 80px;
    color: #707A3E;
    margin-bottom: 20px;
    display: block;
}

.hero-section .hero-image-card h3 {
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-section .hero-image-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* ===== STATS ===== */
.hero-section .stats-group {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-section .stats-group .stat-number {
    color: #A7AD7B;
    font-size: 28px;
    font-weight: 700;
}

.hero-section .stats-group .stat-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-section {
        padding: 60px 0 70px;
        background: linear-gradient(180deg, 
            rgba(18, 18, 18, 0.95) 0%, 
            rgba(18, 18, 18, 0.80) 50%,
            rgba(18, 18, 18, 0.60) 100%
        ),
        url('../images/hero-bg.PNG');
        background-size: cover;
        background-position: center;
    }

    .hero-section h1 {
        font-size: 38px;
    }

    .hero-section .subheading {
        font-size: 18px;
        max-width: 100%;
    }

    .hero-section .description {
        max-width: 100%;
    }

    .hero-section .hero-image-card {
        margin-top: 30px;
        padding: 30px 20px;
    }

    .hero-section .hero-image-card .icon-main {
        font-size: 56px;
    }

    .hero-section .stats-group .stat-number {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 50px;
        background: url('../images/hero-bg-mobile.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

   .hero-section .pattern-overlay {
    background: rgba(18, 18, 18, 0.45);  /* 0.4 → 0.45 (slight increase) */
    background-image: none;
}

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section .subheading {
        font-size: 16px;
    }

    .hero-section .btn-primary-custom,
    .hero-section .btn-secondary-custom {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .hero-section .btn-group-custom {
        flex-direction: column;
    }

    .hero-section .hero-contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-section .stats-group {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-section .stats-group .stat-number {
        font-size: 20px;
    }
}
/* ============================================
   HEADER - COMPLETE STYLING
   ============================================ */

/* ===== TOP BAR ===== */
.top-bar {
    background: #121212;
    color: #FFFFFF;
    padding: 8px 0;
    border-bottom: 2px solid #707A3E;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link:hover {
    color: #FFFFFF;
}

.top-bar-link i {
    color: #707A3E;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.top-bar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
}

.top-bar-btn.primary {
    background: #707A3E;
    color: #FFFFFF;
}

.top-bar-btn.primary:hover {
    background: #59622F;
    transform: translateY(-2px);
}

.top-bar-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #444;
}

.top-bar-btn.secondary:hover {
    border-color: #707A3E;
    background: rgba(112, 122, 62, 0.1);
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: #F0F0ED;
    border-bottom: 1px solid #E5E5DD;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* ===== LOGO ===== */
.nav-logo {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 45px;
    width: auto;
}

/* ===== NAV LINKS ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: #383838;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links > li > a:hover {
    color: #707A3E;
    background: rgba(112, 122, 62, 0.08);
}

.nav-links > li > a.active {
    color: #707A3E;
    background: rgba(112, 122, 62, 0.12);
}

.nav-links .nav-cta {
    background: #707A3E;
    color: #FFFFFF !important;
    padding: 8px 22px !important;
    border-radius: 8px;
    font-weight: 600;
}

.nav-links .nav-cta:hover {
    background: #59622F !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(112, 122, 62, 0.3);
}

.nav-links .nav-cta.active {
    background: #59622F !important;
    color: #FFFFFF !important;
}

/* ===== DROPDOWN ===== */
.nav-links .dropdown-toggle i {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-links .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E5DD;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown.open .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #383838;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(112, 122, 62, 0.08);
    color: #707A3E;
}

.dropdown-menu .view-all {
    color: #707A3E;
    font-weight: 600;
}

.dropdown-menu .view-all:hover {
    background: rgba(112, 122, 62, 0.12);
}

.dropdown-divider {
    height: 1px;
    background: #E5E5DD;
    margin: 6px 16px;
    border: none;
}

/* ===== HAMBURGER ===== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #383838;
    border-radius: 4px;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .nav-inner {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .nav-logo {
        position: relative;
        left: auto;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        flex-basis: 100%;
        width: 100%;
        padding: 20px 0 30px;
        gap: 4px;
        background: #F0F0ED;
        border-top: 1px solid #E5E5DD;
        margin-top: 12px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links > li {
        width: 100%;
    }

    .nav-links > li > a {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
        border-radius: 6px;
    }

    .nav-links .nav-cta {
        text-align: center;
        justify-content: center;
    }

    /* ===== MOBILE DROPDOWN ===== */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background: rgba(255, 255, 255, 0.7);
        border-left: 3px solid #707A3E;
        border-radius: 0 8px 8px 0;
        margin: 2px 20px 8px;
        overflow: hidden;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
        transform: none;
    }

    .nav-links .dropdown.open > .dropdown-toggle {
        color: #707A3E;
        background: rgba(112, 122, 62, 0.12);
    }

    .nav-links .dropdown-toggle i {
        margin-left: auto;
    }

    .nav-links .dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 10px 16px;
        font-size: 14px;
        border-bottom: 1px solid rgba(229, 229, 221, 0.8);
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    .dropdown-menu .dropdown-divider {
        margin: 4px 20px;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .top-bar-left {
        justify-content: center;
    }

    .top-bar-right {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .top-bar-left {
        flex-direction: column;
        gap: 4px;
    }

    .top-bar-right {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    .top-bar-btn {
        width: 100%;
        justify-content: center;
        padding: 6px 0;
    }

    .nav-links > li > a {
        font-size: 14px;
        padding: 10px 16px;
    }

    .nav-logo img {
        height: 35px;
    }
}

/* ============================================
   FOOTER - COMPLETE STYLING
   ============================================ */

/* ===== MAIN FOOTER ===== */
.site-footer {
    background: #121212;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
    margin-top: 60px;
    border-top: 3px solid #707A3E;
}

/* ===== FOOTER TOP ===== */
.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== FOOTER COLUMNS ===== */
.footer-col {
    margin-bottom: 30px;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo span {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.footer-logo span .highlight {
    color: #707A3E;
}

/* ===== FOOTER DESCRIPTION ===== */
.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 90%;
}

/* ===== FOOTER CONTACT ===== */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-contact li i {
    width: 18px;
    color: #707A3E;
    font-size: 14px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #FFFFFF;
}

/* ===== FOOTER HEADINGS ===== */
.footer-heading {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #707A3E;
    border-radius: 2px;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 5px 0;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a::before {
    content: '›';
    color: #707A3E;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-links li a:hover::before {
    transform: rotate(0deg);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    margin: 0;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #FFFFFF;
}

/* ===== DEVELOPER CREDIT ===== */
.footer-credit {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-credit .heart {
    color: #707A3E;
    font-size: 14px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-credit a:hover {
    color: #707A3E;
}

/* ===== FOOTER SOCIAL ICONS ===== */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-social a:hover {
    background: #707A3E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(112, 122, 62, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .footer-top {
        padding-bottom: 20px;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-desc {
        max-width: 100%;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 40px 0 0;
        margin-top: 40px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-logo span {
        font-size: 18px;
    }
    
    .footer-heading {
        font-size: 15px;
    }
    
    .footer-contact li {
        font-size: 13px;
    }
    
    .footer-credit {
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ============================================
   ABOUT US SECTION - HOME PAGE
   ============================================ */

.about-section {
    padding: 80px 0;
    background: #F7F7F2;
    position: relative;
    overflow: hidden;
}

/* ===== BACKGROUND PATTERN ===== */
.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 122, 62, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-section::after {
    content: '✦';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 120px;
    color: rgba(112, 122, 62, 0.04);
    pointer-events: none;
}

/* ===== WRAPPER ===== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== LEFT - CONTENT ===== */
.about-content {
    padding-right: 20px;
}

/* ===== TAG ===== */
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(112, 122, 62, 0.1);
    color: #707A3E;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.15);
}

.about-tag i {
    font-size: 12px;
}

/* ===== TITLE ===== */
.about-title {
    color: #161616;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-title span {
    color: #707A3E;
}

/* ===== DIVIDER ===== */
.about-divider {
    width: 50px;
    height: 3px;
    background: #707A3E;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* ===== TEXT ===== */
.about-text {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ===== FEATURES GRID ===== */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E5DD;
    transition: all 0.3s ease;
}

.about-feature:hover {
    border-color: #707A3E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(112, 122, 62, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #707A3E;
    font-size: 16px;
}

.about-feature h4 {
    color: #161616;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 2px;
}

.about-feature p {
    color: #777777;
    font-size: 12px;
    margin: 0;
}

/* ===== CTA BUTTONS ===== */
.about-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.about-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
}

.about-btn-primary:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
    color: #FFFFFF;
}

.about-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #383838;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #E5E5DD;
}

.about-btn-secondary:hover {
    border-color: #707A3E;
    color: #707A3E;
    transform: translateY(-3px);
}

/* ===== RIGHT - IMAGE ===== */
.about-image-wrapper {
    position: relative;
}

.about-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-card:hover .about-image {
    transform: scale(1.02);
}

/* ===== FLOATING BADGE ===== */
.about-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #E5E5DD;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-badge-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #707A3E;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 20px;
}

.about-badge-number {
    display: block;
    color: #161616;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    display: block;
    color: #777777;
    font-size: 12px;
    font-weight: 500;
}

/* ===== EXPERIENCE RING ===== */
.about-ring {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #FFFFFF;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #707A3E;
    animation: floatRing 4s ease-in-out infinite;
}

@keyframes floatRing {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.about-ring-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #F7F7F2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-ring-circle span:first-child {
    color: #707A3E;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.about-ring-circle span:last-child {
    color: #555555;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 60px;
    margin-top: 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
        order: 1;
    }

    .about-image-wrapper {
        order: 2;
    }

    .about-title {
        font-size: 32px;
    }

    .about-image {
        height: 350px;
    }

    .about-badge {
        top: -15px;
        right: -15px;
        padding: 12px 16px;
    }

    .about-ring {
        bottom: -15px;
        left: -15px;
    }

    .about-ring-circle {
        width: 70px;
        height: 70px;
    }

    .about-ring-circle span:first-child {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-feature {
        padding: 10px 12px;
    }

    .about-content {
        text-align: center;
    }

    .about-cta-group {
        flex-direction: column;
    }

    .about-btn-primary,
    .about-btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .about-title {
        font-size: 28px;
        text-align: center;
    }

    .about-image {
        height: 280px;
    }

    .about-badge {
        display: none;
    }

    .about-ring {
        display: none;
    }
}

@media (max-width: 576px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content {
        text-align: center;
    }

    .about-title {
        font-size: 24px;
        text-align: center;
    }

    .about-image {
        height: 350px;
    }
}

/* ============================================
   SERVICES SECTION - 6 CARDS WITH IMAGES
   ============================================ */

.services-section {
    background: #EFEDE4;
    padding: 80px 0 70px;
}

/* ===== HEADER ===== */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.1);
    color: #707A3E;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.15);
}

.services-tag i {
    margin-right: 6px;
}

.services-title {
    color: #161616;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.services-divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.services-subtitle {
    color: #777777;
    font-size: 18px;
}

/* ===== GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== SERVICE CARD ===== */
.service-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 380px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ===== CARD IMAGE ===== */
.service-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image {
    transform: scale(1.05);
}

/* ===== GRADIENT OVERLAY (Bottom only) ===== */
.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75%;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, 0.92) 0%,
        rgba(18, 18, 18, 0.70) 40%,
        rgba(18, 18, 18, 0.40) 65%,
        rgba(18, 18, 18, 0.10) 85%,
        transparent 100%
    );
    pointer-events: none;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-overlay {
    height: 85%;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, 0.95) 0%,
        rgba(18, 18, 18, 0.80) 40%,
        rgba(18, 18, 18, 0.50) 65%,
        rgba(18, 18, 18, 0.15) 85%,
        transparent 100%
    );
}

/* ===== CARD CONTENT ===== */
.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 28px 28px;
    color: #FFFFFF;
    z-index: 2;
}

/* ===== SERVICE NUMBER ===== */
.service-card-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #A7AD7B;
    background: rgba(167, 173, 123, 0.15);
    padding: 2px 14px;
    border-radius: 20px;
    border: 1px solid rgba(167, 173, 123, 0.2);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* ===== CARD TITLE ===== */
.service-card-title {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* ===== CARD DESCRIPTION ===== */
.service-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
    max-width: 95%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== CARD LINK ===== */
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #A7AD7B;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #A7AD7B;
    transition: width 0.3s ease;
}

.service-card-link:hover {
    color: #FFFFFF;
    gap: 14px;
}

.service-card-link:hover::after {
    width: 100%;
}

.service-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-title {
        font-size: 34px;
    }

    .service-card {
        height: 320px;
    }

    .service-card-content {
        padding: 24px 20px 22px;
    }

    .service-card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 50px 0 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .services-title {
        font-size: 28px;
    }

    .services-subtitle {
        font-size: 16px;
    }

    .service-card {
        height: 280px;
    }

    .service-card-content {
        padding: 20px 18px 18px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-desc {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .service-card-number {
        font-size: 12px;
        padding: 2px 12px;
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .service-card {
        height: 240px;
    }

    .service-card-content {
        padding: 16px 16px 14px;
    }

    .service-card-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .service-card-desc {
        font-size: 12px;
        margin-bottom: 10px;
        -webkit-line-clamp: 2;
    }

    .service-card-link {
        font-size: 12px;
    }

    .service-card-number {
        font-size: 10px;
        padding: 1px 10px;
        margin-bottom: 4px;
    }

    .services-title {
        font-size: 24px;
    }

    .services-subtitle {
        font-size: 14px;
    }

    .services-header {
        margin-bottom: 30px;
    }
}

/* ============================================
   SERVICE AREAS SECTION - 6 CARDS WITH IMAGES
   ============================================ */

.areas-section {
    background: #F7F7F2;
    padding: 70px 0 60px;
}

/* ===== HEADER ===== */
.areas-header {
    text-align: center;
    margin-bottom: 45px;
}

.areas-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.1);
    color: #707A3E;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.15);
}

.areas-tag i {
    margin-right: 6px;
}

.areas-title {
    color: #161616;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.areas-title span {
    color: #707A3E;
}

.areas-divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto;
    border-radius: 4px;
}

/* ===== GRID ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== AREA CARD ===== */
.area-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 260px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    display: block;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ===== CARD IMAGE ===== */
.area-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.area-card:hover .area-card-image {
    transform: scale(1.05);
}

/* ===== GRADIENT OVERLAY (Bottom only) ===== */
.area-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, 0.85) 0%,
        rgba(18, 18, 18, 0.60) 40%,
        rgba(18, 18, 18, 0.30) 65%,
        rgba(18, 18, 18, 0.10) 85%,
        transparent 100%
    );
    pointer-events: none;
    transition: all 0.4s ease;
}

.area-card:hover .area-card-overlay {
    height: 80%;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, 0.92) 0%,
        rgba(18, 18, 18, 0.70) 40%,
        rgba(18, 18, 18, 0.40) 65%,
        rgba(18, 18, 18, 0.15) 85%,
        transparent 100%
    );
}

/* ===== CARD CONTENT ===== */
.area-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px 24px;
    color: #FFFFFF;
    z-index: 2;
    text-align: center;
}

.area-card-content i {
    font-size: 22px;
    color: #A7AD7B;
    display: block;
    margin-bottom: 6px;
}

/* ===== CITY NAME ===== */
.area-card-name {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

/* ===== VIEW LINK ===== */
.area-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
}

.area-card:hover .area-card-link {
    opacity: 1;
    transform: translateY(0);
    color: #A7AD7B;
}

.area-card-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
    display: inline;
    margin: 0;
    color: inherit;
}

.area-card:hover .area-card-link i {
    transform: translateX(4px);
}

/* ===== FOOTER ===== */
.areas-footer {
    text-align: center;
    margin-top: 40px;
}

.areas-footer p {
    color: #777777;
    font-size: 16px;
    margin-bottom: 12px;
}

.areas-footer p a {
    color: #707A3E;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.areas-footer p a:hover {
    color: #59622F;
}

.areas-view-all {
    display: inline-block;
    color: #707A3E;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #707A3E;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.areas-view-all:hover {
    color: #59622F;
    border-color: #59622F;
}

.areas-view-all i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.areas-view-all:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .areas-title {
        font-size: 34px;
    }

    .area-card {
        height: 220px;
    }

    .area-card-content {
        padding: 20px 18px 18px;
    }

    .area-card-name {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .areas-section {
        padding: 50px 0 40px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 500px;
        margin: 0 auto;
    }

    .areas-title {
        font-size: 28px;
    }

    .area-card {
        height: 180px;
    }

    .area-card-content {
        padding: 16px 14px 14px;
    }

    .area-card-content i {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .area-card-name {
        font-size: 17px;
    }

    .area-card-link {
        font-size: 11px;
        opacity: 1;
        transform: none;
        color: rgba(255, 255, 255, 0.7);
    }

    .area-card-link i {
        font-size: 10px;
    }

    .areas-footer p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .area-card {
        height: 140px;
    }

    .area-card-content {
        padding: 12px 10px 10px;
    }

    .area-card-content i {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .area-card-name {
        font-size: 14px;
    }

    .area-card-link {
        font-size: 10px;
        opacity: 1;
        transform: none;
        color: rgba(255, 255, 255, 0.6);
    }

    .areas-title {
        font-size: 22px;
    }

    .areas-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .areas-header {
        margin-bottom: 30px;
    }

    .areas-footer {
        margin-top: 30px;
    }

    .areas-footer p {
        font-size: 13px;
    }

    .areas-view-all {
        font-size: 14px;
    }
}

/* ============================================
   PROCESS SECTION - HOW WE WORK
   ============================================ */

.process-section {
    background: #121212;
    padding: 80px 0 70px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* ===== BACKGROUND PATTERN ===== */
.process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(112, 122, 62, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== HEADER ===== */
.process-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.process-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.15);
}

.process-tag i {
    margin-right: 6px;
}

.process-title {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.process-divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.process-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

/* ===== STEPS WRAPPER ===== */
.process-steps-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px 0 10px;
}

/* ===== STEPS CONTAINER ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

/* ===== SINGLE STEP ===== */
.process-step {
    text-align: center;
    padding: 10px 8px;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}

.process-step:hover {
    transform: translateY(-5px);
}

/* ===== STEP NUMBER ===== */
.process-step-number {
    font-size: 28px;
    font-weight: 900;
    color: rgba(112, 122, 62, 0.25);
    letter-spacing: -1px;
    margin-bottom: 4px;
    transition: color 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.process-step:hover .process-step-number {
    color: rgba(112, 122, 62, 0.5);
}

/* ===== STEP ICON ===== */
.process-step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: rgba(112, 122, 62, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #707A3E;
    transition: all 0.4s ease;
    border: 2px solid rgba(112, 122, 62, 0.1);
    position: relative;
}

/* Icon Glow Ring */
.process-step-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(112, 122, 62, 0.15);
    opacity: 0;
    transition: all 0.4s ease;
    transform: scale(0.8);
}

.process-step:hover .process-step-icon::after {
    opacity: 1;
    transform: scale(1);
}

.process-step:hover .process-step-icon {
    background: rgba(112, 122, 62, 0.15);
    border-color: rgba(112, 122, 62, 0.3);
    color: #A7AD7B;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(112, 122, 62, 0.1);
}

/* ===== STEP TITLE ===== */
.process-step-title {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

/* ===== STEP DESCRIPTION ===== */
.process-step-desc {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HORIZONTAL LINE (Behind Steps) ===== */
.process-line {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(112, 122, 62, 0.15) 10%,
        rgba(112, 122, 62, 0.25) 30%,
        rgba(112, 122, 62, 0.25) 70%,
        rgba(112, 122, 62, 0.15) 90%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .process-section {
        padding: 60px 0 50px;
    }

    .process-title {
        font-size: 32px;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }

    .process-line {
        display: none;
    }

    .process-step-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 50px 0 40px;
    }

    .process-title {
        font-size: 28px;
    }

    .process-subtitle {
        font-size: 16px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }

    .process-step-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 10px;
    }

    .process-step-number {
        font-size: 22px;
    }

    .process-step-title {
        font-size: 13px;
    }

    .process-step-desc {
        font-size: 11px;
        max-width: 100%;
    }

    .process-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 40px 0 30px;
    }

    .process-title {
        font-size: 24px;
    }

    .process-subtitle {
        font-size: 14px;
    }

    .process-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }

    .process-step {
        padding: 8px 4px;
    }

    .process-step-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 8px;
    }

    .process-step-number {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .process-step-title {
        font-size: 12px;
    }

    .process-step-desc {
        font-size: 10px;
        max-width: 100%;
        display: none;
    }

    .process-line {
        display: none;
    }
}

/* ============================================
   ABOUT US PAGE - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. ABOUT HERO SECTION
   ============================================ */

.about-hero-section {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #707A3E;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✦</text></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.about-hero-section h1 {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-hero-section .lead {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto 28px;
}

.about-hero-section .hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.about-hero-section .hero-buttons .btn-primary {
    background: #707A3E;
    border: 2px solid #707A3E;
    color: #FFFFFF;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-hero-section .hero-buttons .btn-primary:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.35);
}

.about-hero-section .hero-buttons .btn-outline-primary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-hero-section .hero-buttons .btn-outline-primary:hover {
    border-color: #A7AD7B;
    background: rgba(167, 173, 123, 0.08);
    transform: translateY(-3px);
}

.about-hero-section .hero-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.about-hero-section .hero-contact i {
    color: #707A3E;
    margin-right: 6px;
}

/* ============================================
   2. OUR STORY SECTION
   ============================================ */

.story-section {
    background: #F7F7F2;
    padding: 80px 0 70px;
}

.story-section .divider {
    width: 50px;
    height: 3px;
    background: #707A3E;
    border-radius: 4px;
    margin: 16px 0 20px;
}

.story-section h2 {
    color: #161616;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.story-section p {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.story-section img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    width: 100%;
}

.story-section img:hover {
    transform: scale(1.02);
}

/* ============================================
   3. WHAT WE STAND FOR / VALUES SECTION
   ============================================ */

.values-section {
    background: #EFEDE4;
    padding: 70px 0 60px;
}

.values-section .divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.values-section h2 {
    color: #161616;
    font-size: 40px;
    font-weight: 800;
}

.values-section .text-muted {
    color: #777777 !important;
    font-size: 18px;
}

.value-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 28px 16px 22px;
    border: 1px solid #E5E5DD;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    border-color: #707A3E;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.value-card .value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(112, 122, 62, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #707A3E;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #707A3E;
    color: #FFFFFF;
}

.value-card h6 {
    color: #161616;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.value-card p {
    color: #777777;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

/* ============================================
   4. WHY WE MANUFACTURE SECTION
   ============================================ */

.manufacture-section {
    background: #F7F7F2;
    padding: 80px 0 70px;
}

.manufacture-section .divider {
    width: 50px;
    height: 3px;
    background: #707A3E;
    border-radius: 4px;
    margin: 16px 0 20px;
}

.manufacture-section h2 {
    color: #161616;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.manufacture-section .fs-5 {
    color: #383838;
    font-size: 18px !important;
    font-weight: 500;
}

.manufacture-section p {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}

.manufacture-section ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
}

.manufacture-section ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #555555;
    font-size: 15px;
}

.manufacture-section ul li i {
    color: #707A3E;
    font-size: 16px;
    width: 20px;
}

.manufacture-section .bg-primary {
    background: #707A3E !important;
    border-radius: 12px;
    padding: 16px 24px;
}

.manufacture-section .bg-primary h4 {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

.manufacture-section img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    width: 100%;
}

.manufacture-section img:hover {
    transform: scale(1.02);
}

/* ============================================
   5. WHY FAMILY-OWNED SECTION
   ============================================ */

.family-section {
    background: #EFEDE4;
    padding: 70px 0 60px;
}

.family-section .divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.family-section h2 {
    color: #161616;
    font-size: 40px;
    font-weight: 800;
}

.family-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px 28px;
    text-align: center;
    border: 1px solid #E5E5DD;
    transition: all 0.3s ease;
    height: 100%;
}

.family-card:hover {
    border-color: #707A3E;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.family-card .family-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    background: rgba(112, 122, 62, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #707A3E;
    transition: all 0.3s ease;
}

.family-card:hover .family-icon {
    background: #707A3E;
    color: #FFFFFF;
}

.family-card h5 {
    color: #161616;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.family-card p {
    color: #777777;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   6. EXPERTISE SECTION
   ============================================ */

.expertise-section {
    background: #F7F7F2;
    padding: 70px 0 60px;
}

.expertise-section .divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.expertise-section h2 {
    color: #161616;
    font-size: 40px;
    font-weight: 800;
}

.expertise-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px 32px 32px;
    border: 1px solid #E5E5DD;
    transition: all 0.3s ease;
    height: 100%;
}

.expertise-card:hover {
    border-color: #707A3E;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.expertise-card .text-primary {
    color: #707A3E !important;
}

.expertise-card h3 {
    color: #161616;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.expertise-card h3 i {
    margin-right: 10px;
    font-size: 22px;
}

.expertise-card > p {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.expertise-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.expertise-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    color: #555555;
    font-size: 14px;
}

.expertise-card ul li i {
    color: #707A3E;
    font-size: 14px;
    width: 18px;
}

.expertise-card .bg-light {
    background: #F7F7F2 !important;
    padding: 16px 20px;
    border-radius: 10px;
    border-left: 3px solid #707A3E;
    margin-top: 8px;
}

.expertise-card .bg-light p {
    margin: 0;
    color: #555555;
    font-size: 14px;
}

/* ============================================
   7. ECO-FRIENDLY PHILOSOPHY SECTION
   ============================================ */

.eco-section {
    background: #EFEDE4;
    padding: 70px 0 60px;
}

.eco-section .divider {
    width: 50px;
    height: 3px;
    background: #707A3E;
    border-radius: 4px;
    margin: 16px 0 20px;
}

.eco-section h2 {
    color: #161616;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.eco-section p {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}

.eco-section p strong {
    color: #383838;
}

.eco-icon {
    font-size: 100px;
    color: #707A3E;
    opacity: 0.6;
    animation: floatLeaf 4s ease-in-out infinite;
    display: inline-block;
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* ============================================
   8. QUALITY SECTION
   ============================================ */

.quality-section {
    background: #F7F7F2;
    padding: 70px 0 60px;
}

.quality-section .divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 20px;
    border-radius: 4px;
}

.quality-section h2 {
    color: #161616;
    font-size: 40px;
    font-weight: 800;
}

.quality-section .fs-5 {
    color: #555555;
    font-size: 18px !important;
    line-height: 1.7;
}

.quality-section p {
    color: #777777;
    font-size: 16px;
}

/* ============================================
   9. PROCESS SECTION
   ============================================ */

.process-section {
    background: #FFFFFF;
    padding: 70px 0 60px;
}

.process-section .divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.process-section h2 {
    color: #161616;
    font-size: 40px;
    font-weight: 800;
}

.process-step .step-number {
    width: 48px;
    height: 48px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 12px;
}

.process-step .step-icon {
    font-size: 28px;
    color: #707A3E;
    margin-bottom: 8px;
}

.process-step h6 {
    color: #161616;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.process-step p {
    color: #777777;
    font-size: 12px;
    margin: 0;
}

/* ============================================
   10. SERVICE AREAS SECTION (About Page)
   ============================================ */

.areas-section {
    background: #FFFFFF;
    padding: 70px 0 60px;
}

.areas-section .divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.areas-section h2 {
    color: #161616;
    font-size: 40px;
    font-weight: 800;
}

.area-badge {
    background: #F7F7F2 !important;
    border: 1px solid #E5E5DD;
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #383838;
    transition: all 0.3s ease;
}

.area-badge:hover {
    border-color: #707A3E;
    background: #707A3E !important;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.15);
}

.areas-section .text-center p {
    color: #777777;
    font-size: 16px;
}

.areas-section .text-center p a {
    color: #707A3E;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.areas-section .text-center p a:hover {
    color: #59622F;
}

.areas-section .btn-outline-primary {
    border: 2px solid #707A3E;
    color: #707A3E;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.areas-section .btn-outline-primary:hover {
    background: #707A3E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.25);
}

/* ============================================
   11. FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    padding: 70px 0 60px;
    border-top: 4px solid #707A3E;
    border-bottom: 4px solid #707A3E;
}

.final-cta-section h2 {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.final-cta-section .fs-5 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px !important;
    line-height: 1.7;
    margin-bottom: 32px;
}

.final-cta-section .btn-light {
    background: #FFFFFF;
    color: #707A3E;
    border: 2px solid #FFFFFF;
    border-radius: 12px;
    padding: 16px 36px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.final-cta-section .btn-light:hover {
    background: #F0F0ED;
    border-color: #F0F0ED;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.final-cta-section .btn-outline-light {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.final-cta-section .btn-outline-light:hover {
    border-color: #A7AD7B;
    background: rgba(167, 173, 123, 0.08);
    transform: translateY(-3px);
}

.final-cta-section .mt-3 p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .about-hero-section h1 {
        font-size: 36px;
    }

    .about-hero-section .lead {
        font-size: 18px;
        max-width: 100%;
    }

    .story-section h2 {
        font-size: 32px;
    }

    .values-section h2 {
        font-size: 32px;
    }

    .manufacture-section h2 {
        font-size: 32px;
    }

    .family-section h2 {
        font-size: 32px;
    }

    .expertise-section h2 {
        font-size: 32px;
    }

    .eco-section h2 {
        font-size: 32px;
    }

    .quality-section h2 {
        font-size: 32px;
    }

    .process-section h2 {
        font-size: 32px;
    }

    .areas-section h2 {
        font-size: 32px;
    }

    .final-cta-section h2 {
        font-size: 34px;
    }

    .manufacture-section .order-lg-2 {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 50px 0 60px;
    }

    .about-hero-section h1 {
        font-size: 28px;
    }

    .about-hero-section .lead {
        font-size: 16px;
    }

    .about-hero-section .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-hero-section .hero-buttons .btn-primary,
    .about-hero-section .hero-buttons .btn-outline-primary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .about-hero-section .hero-contact {
        flex-direction: column;
        gap: 8px;
    }

    .about-hero-section .hero-contact .mx-3 {
        display: none;
    }

    .story-section {
        padding: 50px 0 40px;
    }

    .story-section h2 {
        font-size: 28px;
    }

    .story-section p {
        font-size: 14px;
    }

    .values-section {
        padding: 50px 0 40px;
    }

    .values-section h2 {
        font-size: 28px;
    }

    .values-section .text-muted {
        font-size: 16px;
    }

    .value-card {
        padding: 20px 12px 16px;
    }

    .value-card .value-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .value-card h6 {
        font-size: 13px;
    }

    .value-card p {
        font-size: 11px;
    }

    .manufacture-section {
        padding: 50px 0 40px;
    }

    .manufacture-section h2 {
        font-size: 28px;
    }

    .manufacture-section .fs-5 {
        font-size: 16px !important;
    }

    .manufacture-section p {
        font-size: 14px;
    }

    .manufacture-section ul li {
        font-size: 14px;
    }

    .manufacture-section .bg-primary h4 {
        font-size: 17px;
    }

    .family-section {
        padding: 50px 0 40px;
    }

    .family-section h2 {
        font-size: 28px;
    }

    .family-card {
        padding: 24px 16px 20px;
    }

    .family-card .family-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .family-card h5 {
        font-size: 15px;
    }

    .family-card p {
        font-size: 13px;
    }

    .expertise-section {
        padding: 50px 0 40px;
    }

    .expertise-section h2 {
        font-size: 28px;
    }

    .expertise-card {
        padding: 24px 20px 20px;
    }

    .expertise-card h3 {
        font-size: 19px;
    }

    .expertise-card p {
        font-size: 14px;
    }

    .expertise-card ul li {
        font-size: 13px;
    }

    .eco-section {
        padding: 50px 0 40px;
    }

    .eco-section h2 {
        font-size: 28px;
    }

    .eco-section p {
        font-size: 14px;
    }

    .eco-icon {
        font-size: 60px;
        margin-top: 20px;
    }

    .quality-section {
        padding: 50px 0 40px;
    }

    .quality-section h2 {
        font-size: 28px;
    }

    .quality-section .fs-5 {
        font-size: 16px !important;
    }

    .quality-section p {
        font-size: 14px;
    }

    .process-section {
        padding: 50px 0 40px;
    }

    .process-section h2 {
        font-size: 28px;
    }

    .areas-section {
        padding: 50px 0 40px;
    }

    .areas-section h2 {
        font-size: 28px;
    }

    .area-badge {
        padding: 8px 14px;
        font-size: 12px;
    }

    .areas-section .text-center p {
        font-size: 14px;
    }

    .final-cta-section {
        padding: 50px 0 40px;
    }

    .final-cta-section h2 {
        font-size: 28px;
    }

    .final-cta-section .fs-5 {
        font-size: 16px !important;
    }

    .final-cta-section .btn-light,
    .final-cta-section .btn-outline-light {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    .final-cta-section .mt-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .final-cta-section .mt-4 .me-3 {
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .about-hero-section h1 {
        font-size: 24px;
    }

    .about-hero-section .lead {
        font-size: 15px;
    }

    .story-section h2 {
        font-size: 24px;
    }

    .values-section h2 {
        font-size: 24px;
    }

    .manufacture-section h2 {
        font-size: 24px;
    }

    .family-section h2 {
        font-size: 24px;
    }

    .expertise-section h2 {
        font-size: 24px;
    }

    .eco-section h2 {
        font-size: 24px;
    }

    .quality-section h2 {
        font-size: 24px;
    }

    .process-section h2 {
        font-size: 24px;
    }

    .areas-section h2 {
        font-size: 24px;
    }

    .final-cta-section h2 {
        font-size: 22px;
    }

    .value-card {
        padding: 16px 10px 12px;
    }

    .value-card .value-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .value-card h6 {
        font-size: 12px;
    }

    .value-card p {
        font-size: 10px;
    }

    .family-card {
        padding: 18px 12px 16px;
    }

    .family-card .family-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .family-card h5 {
        font-size: 13px;
    }

    .family-card p {
        font-size: 12px;
    }

    .expertise-card h3 {
        font-size: 17px;
    }

    .expertise-card ul li {
        font-size: 12px;
    }

    .area-badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .about-hero-section .hero-buttons .btn-primary,
    .about-hero-section .hero-buttons .btn-outline-primary {
        font-size: 13px;
        padding: 10px 16px;
    }
}
/* ============================================
   SERVICE AREAS SECTION - ABOUT PAGE
   ============================================ */

.areas-section-about {
    background: #FFFFFF;
    padding: 70px 0 60px;
}

.areas-header-about {
    text-align: center;
    margin-bottom: 40px;
}

.areas-title-about {
    color: #161616;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.areas-divider-about {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto;
    border-radius: 4px;
}

.areas-grid-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.area-item-about {
    display: inline-block;
    background: #F7F7F2;
    border: 1px solid #E5E5DD;
    padding: 10px 24px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #383838;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 100px;
}

.area-item-about:hover {
    border-color: #707A3E;
    background: #707A3E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.15);
}

.areas-footer-about {
    text-align: center;
    margin-top: 10px;
}

.areas-footer-about p {
    color: #777777;
    font-size: 16px;
    margin-bottom: 10px;
}

.areas-footer-about p a {
    color: #707A3E;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.areas-footer-about p a:hover {
    color: #59622F;
}

.areas-view-all-about {
    display: inline-block;
    color: #707A3E;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #707A3E;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.areas-view-all-about:hover {
    color: #59622F;
    border-color: #59622F;
}

.areas-view-all-about i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.areas-view-all-about:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .areas-section-about {
        padding: 50px 0 40px;
    }

    .areas-title-about {
        font-size: 32px;
    }

    .area-item-about {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 80px;
    }

    .areas-grid-about {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .areas-section-about {
        padding: 40px 0 30px;
    }

    .areas-title-about {
        font-size: 26px;
    }

    .area-item-about {
        padding: 6px 14px;
        font-size: 12px;
        min-width: 70px;
        border-radius: 8px;
    }

    .areas-grid-about {
        gap: 8px;
    }

    .areas-footer-about p {
        font-size: 14px;
    }

    .areas-view-all-about {
        font-size: 14px;
    }
}
/* ============================================
   GALLERY PAGE - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. GALLERY HERO
   ============================================ */

.gallery-hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #707A3E;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✦</text></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.gallery-hero-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.2);
}

.gallery-hero-tag i {
    margin-right: 6px;
}

.gallery-hero-title {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.gallery-hero-title span {
    color: #A7AD7B;
}

.gallery-hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.gallery-hero-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.gallery-hero-contact i {
    color: #707A3E;
    margin-right: 6px;
}

.gallery-hero-contact .divider {
    color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   2. GALLERY FILTER
   ============================================ */

.gallery-filter-section {
    background: #F7F7F2;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5DD;
    position: sticky;
    top: 68px;
    z-index: 50;
}

.gallery-filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gallery-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gallery-filter-tab {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
    color: #777777;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.gallery-filter-tab:hover {
    color: #707A3E;
    background: rgba(112, 122, 62, 0.06);
}

.gallery-filter-tab.active {
    color: #FFFFFF;
    background: #707A3E;
    border-color: #707A3E;
    box-shadow: 0 4px 15px rgba(112, 122, 62, 0.25);
}

.gallery-filter-count {
    color: #777777;
    font-size: 13px;
    font-weight: 500;
    background: #EFEDE4;
    padding: 4px 14px;
    border-radius: 20px;
}

/* ============================================
   3. GALLERY GRID
   ============================================ */

.gallery-grid-section {
    background: #FFFFFF;
    padding: 50px 0 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== GALLERY ITEM ===== */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 300px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.gallery-item-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-item-image {
    transform: scale(1.05);
}

/* ===== OVERLAY ===== */
.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, 0.9) 0%,
        rgba(18, 18, 18, 0.6) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 24px 22px 22px;
    opacity: 1;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    height: 80%;
}

.gallery-item-info {
    color: #FFFFFF;
    width: 100%;
}

.gallery-item-title {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-item-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-item-category {
    display: inline-block;
    background: rgba(112, 122, 62, 0.2);
    color: #A7AD7B;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 12px;
    border-radius: 20px;
    border: 1px solid rgba(167, 173, 123, 0.15);
}

.gallery-item-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover .gallery-item-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-item-zoom:hover {
    background: #707A3E;
    border-color: #707A3E;
}

/* ===== PLACEHOLDER ===== */
.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    background: #F7F7F2;
    border: 2px dashed #E5E5DD;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
}

.gallery-item-placeholder i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ccc;
}

.gallery-item-placeholder h5 {
    color: #777;
    font-weight: 600;
    font-size: 14px;
}

/* ============================================
   4. GALLERY EMPTY STATE
   ============================================ */

.gallery-empty {
    text-align: center;
    padding: 60px 20px;
    color: #777777;
}

.gallery-empty i {
    font-size: 56px;
    color: #E5E5DD;
    margin-bottom: 16px;
    display: block;
}

.gallery-empty h3 {
    color: #383838;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-empty p {
    margin-bottom: 20px;
}

.gallery-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
}

.gallery-empty-btn:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
    color: #FFFFFF;
}

/* ============================================
   5. GALLERY CTA
   ============================================ */

.gallery-cta {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    padding: 50px 0;
    border-top: 3px solid #707A3E;
    border-bottom: 3px solid #707A3E;
}

.gallery-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.gallery-cta-content {
    flex: 1;
}

.gallery-cta-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-cta-title span {
    color: #A7AD7B;
}

.gallery-cta-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin: 0;
}

.gallery-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
    white-space: nowrap;
}

.gallery-cta-btn:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
    color: #FFFFFF;
}

/* ============================================
   6. LIGHTBOX
   ============================================ */

.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: lightboxFade 0.3s ease;
}

@keyframes lightboxFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.gallery-lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 24px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 32px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-lightbox-close:hover {
    opacity: 1;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: #707A3E;
    border-color: #707A3E;
}

.gallery-lightbox-prev {
    left: 20px;
}

.gallery-lightbox-next {
    right: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-hero-title {
        font-size: 36px;
    }

    .gallery-cta-title {
        font-size: 28px;
    }

    .gallery-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .gallery-filter-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .gallery-filter-tabs {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 40px 0 50px;
    }

    .gallery-hero-title {
        font-size: 30px;
    }

    .gallery-hero-desc {
        font-size: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-item-overlay {
        padding: 16px 14px 14px;
    }

    .gallery-item-title {
        font-size: 14px;
    }

    .gallery-item-desc {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }

    .gallery-item-zoom {
        width: 30px;
        height: 30px;
        font-size: 11px;
        top: 10px;
        right: 10px;
    }

    .gallery-filter-section {
        padding: 14px 0;
        top: 60px;
    }

    .gallery-filter-tab {
        padding: 6px 14px;
        font-size: 12px;
    }

    .gallery-filter-count {
        font-size: 12px;
    }

    .gallery-cta {
        padding: 40px 0;
    }

    .gallery-cta-title {
        font-size: 24px;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 16px;
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .gallery-item {
        height: 170px;
    }

    .gallery-item-overlay {
        padding: 12px 10px 10px;
        height: 65%;
    }

    .gallery-item-title {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .gallery-item-desc {
        font-size: 10px;
        -webkit-line-clamp: 1;
        margin-bottom: 4px;
    }

    .gallery-item-category {
        font-size: 8px;
        padding: 1px 8px;
    }

    .gallery-item-zoom {
        width: 24px;
        height: 24px;
        font-size: 9px;
        top: 6px;
        right: 6px;
    }

    .gallery-hero-title {
        font-size: 24px;
    }

    .gallery-hero-desc {
        font-size: 14px;
    }

    .gallery-hero-contact {
        font-size: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .gallery-hero-contact .divider {
        display: none;
    }

    .gallery-filter-tab {
        padding: 4px 12px;
        font-size: 11px;
    }

    .gallery-cta-title {
        font-size: 20px;
    }

    .gallery-cta-desc {
        font-size: 14px;
    }

    .gallery-cta-btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .gallery-empty i {
        font-size: 40px;
    }

    .gallery-empty h3 {
        font-size: 18px;
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox-image {
        max-width: 98%;
        max-height: 70vh;
    }

    .gallery-lightbox-caption {
        font-size: 11px;
        padding: 4px 14px;
        bottom: 16px;
    }

    .gallery-filter-tabs {
        gap: 4px;
    }
}
/* ============================================
   FAQS PAGE - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. FAQS HERO
   ============================================ */

.faqs-hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #707A3E;
}

.faqs-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✦</text></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.faqs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.faqs-hero-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.2);
}

.faqs-hero-tag i {
    margin-right: 6px;
}

.faqs-hero-title {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.faqs-hero-title span {
    color: #A7AD7B;
}

.faqs-hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.faqs-hero-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.faqs-hero-contact i {
    color: #707A3E;
    margin-right: 6px;
}

.faqs-hero-contact .divider {
    color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   2. FAQS FILTER
   ============================================ */

.faqs-filter-section {
    background: #F7F7F2;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5DD;
    position: sticky;
    top: 68px;
    z-index: 50;
}

.faqs-filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.faqs-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.faqs-filter-tab {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
    color: #777777;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.faqs-filter-tab:hover {
    color: #707A3E;
    background: rgba(112, 122, 62, 0.06);
}

.faqs-filter-tab.active {
    color: #FFFFFF;
    background: #707A3E;
    border-color: #707A3E;
    box-shadow: 0 4px 15px rgba(112, 122, 62, 0.25);
}

.faqs-filter-count {
    color: #777777;
    font-size: 13px;
    font-weight: 500;
    background: #EFEDE4;
    padding: 4px 14px;
    border-radius: 20px;
}

/* ============================================
   3. FAQS ACCORDION
   ============================================ */

.faqs-accordion-section {
    background: #FFFFFF;
    padding: 60px 0 70px;
}

.faqs-accordion-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.faqs-accordion-item {
    background: #FFFFFF;
    border: 1px solid #E5E5DD;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faqs-accordion-item:hover {
    border-color: #707A3E;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faqs-accordion-item.active {
    border-color: #707A3E;
    box-shadow: 0 4px 25px rgba(112, 122, 62, 0.08);
}

.faqs-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    font-family: inherit;
    flex-wrap: wrap;
}

.faqs-accordion-trigger:hover {
    background: rgba(112, 122, 62, 0.03);
}

.faqs-accordion-question {
    color: #161616;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.faqs-accordion-question i {
    color: #707A3E;
    font-size: 16px;
    flex-shrink: 0;
}

.faqs-accordion-badge {
    display: inline-block;
    background: rgba(112, 122, 62, 0.08);
    color: #707A3E;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 20px;
    border: 1px solid rgba(112, 122, 62, 0.1);
    flex-shrink: 0;
}

.faqs-accordion-icon {
    color: #777777;
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faqs-accordion-item.active .faqs-accordion-icon {
    transform: rotate(180deg);
    color: #707A3E;
}

/* ===== ACCORDION CONTENT ===== */
.faqs-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faqs-accordion-item.active .faqs-accordion-content {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faqs-accordion-answer {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    padding-top: 4px;
    border-top: 1px solid #F0F0ED;
    padding-top: 16px;
    display: flex;
    gap: 12px;
}

.faqs-accordion-answer i {
    color: #707A3E;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* ============================================
   4. FAQS EMPTY STATE
   ============================================ */

.faqs-empty {
    text-align: center;
    padding: 60px 20px;
    color: #777777;
}

.faqs-empty i {
    font-size: 56px;
    color: #E5E5DD;
    margin-bottom: 16px;
    display: block;
}

.faqs-empty h3 {
    color: #383838;
    font-weight: 700;
    margin-bottom: 8px;
}

.faqs-empty p {
    margin-bottom: 20px;
}

.faqs-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
}

.faqs-empty-btn:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
    color: #FFFFFF;
}

/* ============================================
   5. FAQS CTA
   ============================================ */

.faqs-cta {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    padding: 60px 0;
    border-top: 3px solid #707A3E;
    border-bottom: 3px solid #707A3E;
}

.faqs-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.faqs-cta-content {
    flex: 1;
}

.faqs-cta-title {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faqs-cta-title span {
    color: #A7AD7B;
}

.faqs-cta-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin: 0;
}

.faqs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
    white-space: nowrap;
}

.faqs-cta-btn:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
    color: #FFFFFF;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .faqs-hero-title {
        font-size: 36px;
    }

    .faqs-hero-desc {
        font-size: 16px;
    }

    .faqs-cta-title {
        font-size: 28px;
    }

    .faqs-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .faqs-filter-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .faqs-filter-tabs {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .faqs-hero {
        padding: 50px 0 60px;
    }

    .faqs-hero-title {
        font-size: 30px;
    }

    .faqs-hero-desc {
        font-size: 15px;
    }

    .faqs-accordion-section {
        padding: 40px 0 50px;
    }

    .faqs-accordion-trigger {
        padding: 14px 18px;
    }

    .faqs-accordion-question {
        font-size: 14px;
        gap: 8px;
    }

    .faqs-accordion-badge {
        font-size: 10px;
        padding: 2px 10px;
    }

    .faqs-accordion-content {
        padding: 0 18px;
    }

    .faqs-accordion-item.active .faqs-accordion-content {
        padding: 0 18px 16px;
    }

    .faqs-accordion-answer {
        font-size: 14px;
        gap: 10px;
    }

    .faqs-accordion-answer i {
        font-size: 12px;
    }

    .faqs-filter-section {
        padding: 14px 0;
        top: 60px;
    }

    .faqs-filter-tab {
        padding: 6px 14px;
        font-size: 12px;
    }

    .faqs-filter-count {
        font-size: 12px;
    }

    .faqs-cta {
        padding: 40px 0;
    }

    .faqs-cta-title {
        font-size: 24px;
    }

    .faqs-cta-desc {
        font-size: 14px;
    }

    .faqs-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .faqs-hero-contact {
        font-size: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .faqs-hero-contact .divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .faqs-hero {
        padding: 40px 0 50px;
    }

    .faqs-hero-title {
        font-size: 24px;
    }

    .faqs-hero-desc {
        font-size: 14px;
    }

    .faqs-hero-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .faqs-accordion-trigger {
        padding: 12px 14px;
    }

    .faqs-accordion-question {
        font-size: 13px;
        gap: 6px;
    }

    .faqs-accordion-question i {
        font-size: 13px;
    }

    .faqs-accordion-badge {
        font-size: 9px;
        padding: 1px 8px;
    }

    .faqs-accordion-icon {
        font-size: 12px;
    }

    .faqs-accordion-content {
        padding: 0 14px;
    }

    .faqs-accordion-item.active .faqs-accordion-content {
        padding: 0 14px 12px;
    }

    .faqs-accordion-answer {
        font-size: 13px;
        padding-top: 12px;
        gap: 8px;
    }

    .faqs-filter-tab {
        padding: 4px 12px;
        font-size: 11px;
    }

    .faqs-filter-tabs {
        gap: 4px;
    }

    .faqs-cta-title {
        font-size: 20px;
    }

    .faqs-cta-desc {
        font-size: 13px;
    }

    .faqs-cta-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .faqs-empty i {
        font-size: 40px;
    }

    .faqs-empty h3 {
        font-size: 18px;
    }

    .faqs-empty-btn {
        font-size: 13px;
        padding: 12px 20px;
    }
}
/* ============================================
   CONTACT PAGE - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. CONTACT HERO
   ============================================ */

.contact-hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #707A3E;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✦</text></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.contact-hero-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.2);
}

.contact-hero-tag i {
    margin-right: 6px;
}

.contact-hero-title {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.contact-hero-title span {
    color: #A7AD7B;
}

.contact-hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-hero-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.contact-hero-contact i {
    color: #707A3E;
    margin-right: 6px;
}

.contact-hero-contact .divider {
    color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   2. CONTACT FORM SECTION
   ============================================ */

.contact-form-section {
    background: #F7F7F2;
    padding: 70px 0 60px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ===== LEFT - FORM ===== */
.contact-form-wrapper {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 44px 40px 40px;
    border: 1px solid #E5E5DD;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-title {
    color: #161616;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-desc {
    color: #777777;
    font-size: 15px;
    margin: 0;
}

/* ===== SUCCESS MESSAGE ===== */
.contact-success {
    text-align: center;
    padding: 20px 0;
}

.contact-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(112, 122, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #707A3E;
    margin: 0 auto 16px;
}

.contact-success-title {
    color: #161616;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-success-desc {
    color: #555555;
    font-size: 15px;
    margin-bottom: 16px;
}

.contact-success-divider {
    width: 40px;
    height: 2px;
    background: #E5E5DD;
    margin: 0 auto 16px;
}

.contact-success-phone {
    color: #777777;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-success-phone strong {
    color: #161616;
}

.contact-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
}

.contact-success-btn:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
    color: #FFFFFF;
}

/* ===== ERROR MESSAGE ===== */
.contact-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #DC2626;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-error i {
    font-size: 18px;
}

/* ===== FORM ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-form-label {
    color: #383838;
    font-weight: 600;
    font-size: 13px;
}

.contact-form-label .required {
    color: #DC2626;
}

.contact-form-control {
    padding: 12px 16px;
    border: 2px solid #E5E5DD;
    border-radius: 10px;
    font-size: 14px;
    color: #161616;
    background: #F7F7F2;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
}

.contact-form-control:focus {
    border-color: #707A3E;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(112, 122, 62, 0.08);
    outline: none;
}

.contact-form-control::placeholder {
    color: #AAAAAA;
}

.contact-form-control textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-control select {
    appearance: none;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: #707A3E;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 4px;
}

.contact-form-submit:hover {
    background: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
}

.contact-form-submit i:last-child {
    transition: transform 0.3s ease;
}

.contact-form-submit:hover i:last-child {
    transform: translateX(4px);
}

.contact-form-note {
    color: #999999;
    font-size: 12px;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.contact-form-note i {
    color: #707A3E;
}

/* ============================================
   3. RIGHT - CONTACT INFO
   ============================================ */

.contact-info-wrapper {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px 30px 32px;
    border: 1px solid #E5E5DD;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-info-title {
    color: #161616;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-desc {
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-info-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    background: #F7F7F2;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(112, 122, 62, 0.06);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(112, 122, 62, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #707A3E;
    font-size: 16px;
}

.contact-info-label {
    color: #777777;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 2px;
}

.contact-info-value {
    color: #161616;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: block;
}

.contact-info-value:hover {
    color: #707A3E;
}

/* ===== CONSULTATION INCLUDES ===== */
.contact-info-consultation {
    background: #F7F7F2;
    border-radius: 12px;
    padding: 18px 20px;
    border-left: 3px solid #707A3E;
}

.contact-info-consultation-title {
    color: #161616;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info-consultation-title i {
    color: #707A3E;
}

.contact-info-consultation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-consultation-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    color: #555555;
    font-size: 13px;
}

.contact-info-consultation-list li i {
    color: #707A3E;
    font-size: 13px;
}

/* ============================================
   4. CONTACT CTA
   ============================================ */

.contact-cta {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    padding: 50px 0;
    border-top: 3px solid #707A3E;
    border-bottom: 3px solid #707A3E;
}

.contact-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-cta-content {
    flex: 1;
}

.contact-cta-title {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-cta-title span {
    color: #A7AD7B;
}

.contact-cta-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin: 0;
}

.contact-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-cta-btn.primary {
    background: #707A3E;
    color: #FFFFFF;
    border: 2px solid #707A3E;
}

.contact-cta-btn.primary:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
}

.contact-cta-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-cta-btn.secondary:hover {
    border-color: #A7AD7B;
    background: rgba(167, 173, 123, 0.08);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-wrapper {
        position: static;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-desc {
        font-size: 16px;
    }

    .contact-cta-title {
        font-size: 28px;
    }

    .contact-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .contact-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 0 50px;
    }

    .contact-hero-title {
        font-size: 30px;
    }

    .contact-hero-desc {
        font-size: 15px;
    }

    .contact-form-section {
        padding: 50px 0 40px;
    }

    .contact-form-wrapper {
        padding: 28px 20px 24px;
    }

    .contact-form-title {
        font-size: 24px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-form-submit {
        font-size: 15px;
        padding: 14px 24px;
    }

    .contact-info-card {
        padding: 28px 20px 24px;
    }

    .contact-info-title {
        font-size: 20px;
    }

    .contact-cta {
        padding: 40px 0;
    }

    .contact-cta-title {
        font-size: 24px;
    }

    .contact-cta-desc {
        font-size: 14px;
    }

    .contact-cta-btn {
        padding: 12px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .contact-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .contact-hero-contact {
        font-size: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .contact-hero-contact .divider {
        display: none;
    }

    .contact-success-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .contact-success-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 30px 0 40px;
    }

    .contact-hero-title {
        font-size: 24px;
    }

    .contact-hero-desc {
        font-size: 14px;
    }

    .contact-hero-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .contact-form-wrapper {
        padding: 20px 16px 18px;
    }

    .contact-form-title {
        font-size: 20px;
    }

    .contact-form-desc {
        font-size: 14px;
    }

    .contact-form-control {
        padding: 10px 14px;
        font-size: 13px;
    }

    .contact-form-submit {
        font-size: 14px;
        padding: 12px 20px;
    }

    .contact-info-title {
        font-size: 18px;
    }

    .contact-info-desc {
        font-size: 13px;
    }

    .contact-info-item {
        padding: 10px 12px;
    }

    .contact-info-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 14px;
    }

    .contact-info-value {
        font-size: 13px;
    }

    .contact-info-consultation {
        padding: 14px 16px;
    }

    .contact-info-consultation-list li {
        font-size: 12px;
    }

    .contact-cta-title {
        font-size: 20px;
    }

    .contact-cta-desc {
        font-size: 13px;
    }

    .contact-success-title {
        font-size: 18px;
    }

    .contact-success-desc {
        font-size: 14px;
    }

    .contact-success-btn {
        font-size: 13px;
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SERVICE PAGE - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. SERVICE HERO - WITH BACKGROUND IMAGE
   ============================================ */

.service-hero {
    position: relative;
    padding: 80px 0 90px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(18, 18, 18, 0.92) 0%,
        rgba(18, 18, 18, 0.75) 40%,
        rgba(18, 18, 18, 0.50) 70%,
        rgba(18, 18, 18, 0.20) 100%
    );
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.service-hero-badge {
    display: inline-block;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.2);
}

.service-hero-badge i {
    margin-right: 6px;
}

.service-hero-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.service-hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 12px;
}

.service-hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 85%;
}

.service-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.service-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-hero-btn.primary {
    background: #707A3E;
    color: #FFFFFF;
    border: 2px solid #707A3E;
}

.service-hero-btn.primary:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.35);
}

.service-hero-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-hero-btn.secondary:hover {
    border-color: #A7AD7B;
    background: rgba(167, 173, 123, 0.08);
    transform: translateY(-3px);
}

.service-hero-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 16px;
}

.service-hero-contact i {
    color: #707A3E;
    margin-right: 6px;
}

.service-hero-contact .divider {
    color: rgba(255, 255, 255, 0.1);
}

.service-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-hero-tags .tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   2. SERVICE INTRODUCTION
   ============================================ */

.service-intro {
    background: #F7F7F2;
    padding: 60px 0 50px;
}

.service-intro-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.service-intro-wrapper p {
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.service-intro-wrapper p:last-child {
    margin-bottom: 0;
}

/* ============================================
   3. SECTION HEADER (Reusable)
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.1);
    color: #707A3E;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(112, 122, 62, 0.15);
}

.section-tag i {
    margin-right: 6px;
}

.section-title {
    color: #161616;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-title span {
    color: #707A3E;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 12px;
    border-radius: 4px;
}

.section-subtitle {
    color: #777777;
    font-size: 18px;
    margin: 0;
}

/* ============================================
   4. SERVICE SUBCATEGORIES
   ============================================ */

.service-subcategories {
    background: #EFEDE4;
    padding: 70px 0 60px;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.subcategory-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 28px 28px;
    border: 1px solid #E5E5DD;
    transition: all 0.3s ease;
    height: 100%;
}

.subcategory-card:hover {
    border-color: #707A3E;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.subcategory-icon {
    width: 56px;
    height: 56px;
    background: rgba(112, 122, 62, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #707A3E;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.subcategory-card:hover .subcategory-icon {
    background: #707A3E;
    color: #FFFFFF;
}

.subcategory-name {
    color: #161616;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.subcategory-desc {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.subcategory-best {
    color: #777777;
    font-size: 13px;
    margin: 0;
}

.subcategory-best strong {
    color: #383838;
}

/* ============================================
   5. SERVICE BENEFITS
   ============================================ */

.service-benefits {
    background: #F7F7F2;
    padding: 70px 0 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    max-width: 850px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: #555555;
    font-size: 15px;
    line-height: 1.5;
}

.benefit-item i {
    color: #707A3E;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================
   6. WHY CHOOSE
   ============================================ */

.service-why-choose {
    background: #EFEDE4;
    padding: 70px 0 60px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 28px 20px 24px;
    border: 1px solid #E5E5DD;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    border-color: #707A3E;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.why-title {
    color: #161616;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-desc {
    color: #777777;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* ============================================
   7. SERVICE PROCESS
   ============================================ */

.service-process {
    background: #121212;
    padding: 70px 0 60px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.service-process .section-tag {
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    border-color: rgba(112, 122, 62, 0.2);
}

.service-process .section-title {
    color: #FFFFFF;
}

.service-process .section-title span {
    color: #A7AD7B;
}

.service-process .section-divider {
    background: #707A3E;
}

.process-steps-wrapper {
    position: relative;
    padding: 20px 0 10px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(112, 122, 62, 0.15) 10%,
        rgba(112, 122, 62, 0.25) 30%,
        rgba(112, 122, 62, 0.25) 70%,
        rgba(112, 122, 62, 0.15) 90%,
        transparent 100%
    );
    z-index: 0;
    pointer-events: none;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 10px 8px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-step-number {
    font-size: 28px;
    font-weight: 900;
    color: rgba(112, 122, 62, 0.3);
    letter-spacing: -1px;
    margin-bottom: 4px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.process-step:hover .process-step-number {
    color: rgba(112, 122, 62, 0.6);
}

.process-step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    background: rgba(112, 122, 62, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #707A3E;
    transition: all 0.4s ease;
    border: 2px solid rgba(112, 122, 62, 0.1);
}

.process-step:hover .process-step-icon {
    background: rgba(112, 122, 62, 0.15);
    border-color: rgba(112, 122, 62, 0.3);
    color: #A7AD7B;
    transform: scale(1.05);
}

.process-step-title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.process-step-desc {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.process-cta {
    text-align: center;
    margin-top: 40px;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
}

.process-cta-btn:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.35);
    color: #FFFFFF;
}

.process-cta-btn i:last-child {
    transition: transform 0.3s ease;
}

.process-cta-btn:hover i:last-child {
    transform: translateX(4px);
}

/* ============================================
   8. SERVICE BY ROOM
   ============================================ */

.service-by-room {
    background: #F7F7F2;
    padding: 70px 0 60px;
}

.by-room-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 850px;
    margin: 0 auto;
}

.by-room-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E5E5DD;
    transition: all 0.3s ease;
}

.by-room-item:hover {
    border-color: #707A3E;
    transform: translateX(4px);
}

.by-room-item i {
    color: #707A3E;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.by-room-item strong {
    color: #161616;
    font-size: 14px;
    display: block;
}

.by-room-item span {
    color: #777777;
    font-size: 13px;
    display: block;
}

/* ============================================
   9. SERVICE AREAS
   ============================================ */

.service-areas {
    background: #FFFFFF;
    padding: 70px 0 60px;
}

.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.service-area-badge {
    display: inline-block;
    background: #F7F7F2;
    border: 1px solid #E5E5DD;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #383838;
    transition: all 0.3s ease;
}

.service-area-badge:hover {
    border-color: #707A3E;
    background: #707A3E;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.service-areas-footer {
    text-align: center;
}

.service-areas-footer p {
    color: #777777;
    font-size: 16px;
    margin: 0;
}

.service-areas-footer a {
    color: #707A3E;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-areas-footer a:hover {
    color: #59622F;
}

.service-areas-footer a i {
    transition: transform 0.3s ease;
}

.service-areas-footer a:hover i {
    transform: translateX(4px);
}

/* ============================================
   10. SERVICE FAQS
   ============================================ */

.service-faqs {
    background: #EFEDE4;
    padding: 70px 0 60px;
}

.faqs-accordion {
    max-width: 850px;
    margin: 0 auto;
}

.faqs-accordion-item {
    background: #FFFFFF;
    border: 1px solid #E5E5DD;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faqs-accordion-item:hover {
    border-color: #707A3E;
}

.faqs-accordion-item.active {
    border-color: #707A3E;
    box-shadow: 0 4px 25px rgba(112, 122, 62, 0.08);
}

.faqs-accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faqs-accordion-trigger:hover {
    background: rgba(112, 122, 62, 0.03);
}

.faqs-accordion-question {
    color: #161616;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faqs-accordion-question i {
    color: #707A3E;
    font-size: 16px;
    flex-shrink: 0;
}

.faqs-accordion-icon {
    color: #777777;
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faqs-accordion-item.active .faqs-accordion-icon {
    transform: rotate(180deg);
    color: #707A3E;
}

.faqs-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faqs-accordion-item.active .faqs-accordion-content {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faqs-accordion-answer {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    padding-top: 16px;
    border-top: 1px solid #F0F0ED;
    display: flex;
    gap: 12px;
}

.faqs-accordion-answer i {
    color: #707A3E;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* ============================================
   11. SERVICE FINAL CTA
   ============================================ */

.service-final-cta {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    padding: 70px 0 60px;
    border-top: 4px solid #707A3E;
    border-bottom: 4px solid #707A3E;
}

.service-final-cta-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-final-cta-title {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-final-cta-title span {
    color: #A7AD7B;
}

.service-final-cta-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-final-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.service-final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-final-cta-btn.primary {
    background: #707A3E;
    color: #FFFFFF;
    border: 2px solid #707A3E;
}

.service-final-cta-btn.primary:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.35);
}

.service-final-cta-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-final-cta-btn.secondary:hover {
    border-color: #A7AD7B;
    background: rgba(167, 173, 123, 0.08);
    transform: translateY(-3px);
}

.service-final-cta-location {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

.service-final-cta-location i {
    color: #707A3E;
    margin-right: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .service-hero {
        padding: 60px 0 70px;
        min-height: 400px;
    }

    .service-hero-title {
        font-size: 36px;
    }

    .service-hero-subtitle {
        font-size: 18px;
    }

    .service-hero-desc {
        max-width: 100%;
    }

    .section-title {
        font-size: 32px;
    }

    .subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-line {
        display: none;
    }

    .service-final-cta-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 40px 0 50px;
        min-height: 350px;
        text-align: center;
    }

    .service-hero-title {
        font-size: 30px;
    }

    .service-hero-subtitle {
        font-size: 16px;
    }

    .service-hero-desc {
        font-size: 14px;
    }

    .service-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-hero-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .service-hero-contact {
        justify-content: center;
        font-size: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .service-hero-contact .divider {
        display: none;
    }

    .service-hero-tags {
        justify-content: center;
    }

    .service-hero-tags .tag {
        font-size: 10px;
        padding: 3px 12px;
    }

    .service-intro {
        padding: 40px 0 30px;
    }

    .service-intro-wrapper p {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .service-subcategories {
        padding: 50px 0 40px;
    }

    .subcategories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .subcategory-card {
        padding: 24px 18px 20px;
    }

    .service-benefits {
        padding: 50px 0 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .benefit-item {
        font-size: 14px;
    }

    .service-why-choose {
        padding: 50px 0 40px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .why-card {
        padding: 20px 16px 18px;
    }

    .why-title {
        font-size: 14px;
    }

    .why-desc {
        font-size: 13px;
    }

    .service-process {
        padding: 50px 0 40px;
    }

    .process-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .process-step-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .process-step-title {
        font-size: 13px;
    }

    .process-step-desc {
        font-size: 11px;
    }

    .process-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .service-by-room {
        padding: 50px 0 40px;
    }

    .by-room-grid {
        grid-template-columns: 1fr;
    }

    .by-room-item {
        padding: 14px 16px;
    }

    .service-areas {
        padding: 50px 0 40px;
    }

    .service-area-badge {
        padding: 6px 14px;
        font-size: 12px;
    }

    .service-faqs {
        padding: 50px 0 40px;
    }

    .faqs-accordion-trigger {
        padding: 14px 18px;
    }

    .faqs-accordion-question {
        font-size: 13px;
        gap: 8px;
    }

    .faqs-accordion-answer {
        font-size: 14px;
    }

    .service-final-cta {
        padding: 50px 0 40px;
    }

    .service-final-cta-title {
        font-size: 28px;
    }

    .service-final-cta-desc {
        font-size: 16px;
    }

    .service-final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .service-final-cta-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .service-hero-title {
        font-size: 24px;
    }

    .service-hero-subtitle {
        font-size: 14px;
    }

    .service-hero-desc {
        font-size: 13px;
    }

    .service-hero-btn {
        font-size: 13px;
        padding: 12px 20px;
        max-width: 100%;
    }

    .service-hero-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .subcategories-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .process-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .process-step-number {
        font-size: 22px;
    }

    .process-step-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .process-step-title {
        font-size: 12px;
    }

    .process-step-desc {
        font-size: 10px;
        display: none;
    }

    .service-final-cta-title {
        font-size: 22px;
    }

    .service-final-cta-desc {
        font-size: 14px;
    }

    .service-final-cta-btn {
        font-size: 13px;
        padding: 12px 20px;
        max-width: 100%;
    }

    .service-final-cta-location {
        font-size: 12px;
    }

    .faqs-accordion-trigger {
        padding: 12px 14px;
    }

    .faqs-accordion-question {
        font-size: 12px;
        gap: 6px;
    }

    .faqs-accordion-icon {
        font-size: 12px;
    }

    .faqs-accordion-content {
        padding: 0 14px;
    }

    .faqs-accordion-item.active .faqs-accordion-content {
        padding: 0 14px 14px;
    }

    .faqs-accordion-answer {
        font-size: 13px;
        padding-top: 12px;
        gap: 8px;
    }

    .faqs-accordion-answer i {
        font-size: 12px;
    }
}
/* ============================================
   LOCATION SPECIFIC STYLES
   ============================================ */

/* Subcategory Status Badges */
.subcategory-status {
    display: inline-block;
    padding: 2px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 8px;
}

.subcategory-status.available {
    background: rgba(112, 122, 62, 0.12);
    color: #707A3E;
}

.subcategory-status.contact {
    background: rgba(119, 119, 119, 0.1);
    color: #777777;
}

.subcategory-link {
    display: inline-block;
    margin-top: 8px;
    color: #707A3E;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.subcategory-link:hover {
    color: #59622F;
    transform: translateX(4px);
}

/* Inactive card styling */
.subcategory-card.inactive {
    opacity: 0.7;
}

.subcategory-card.inactive .subcategory-icon {
    background: rgba(119, 119, 119, 0.08);
    color: #999;
}

/* Service Areas Grid (reuse from service page) */
.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.service-area-badge {
    display: inline-block;
    background: #FFFFFF;
    border: 1px solid #E5E5DD;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #383838;
    transition: all 0.3s ease;
}

.service-area-badge:hover {
    border-color: #707A3E;
    background: #707A3E;
    color: #FFFFFF;
    transform: translateY(-3px);
}

.service-areas-footer {
    text-align: center;
}

.service-areas-footer p {
    color: #777777;
    font-size: 16px;
    margin: 0;
}

.service-areas-footer a {
    color: #707A3E;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-areas-footer a:hover {
    color: #59622F;
}

.service-areas-footer a i {
    transition: transform 0.3s ease;
}

.service-areas-footer a:hover i {
    transform: translateX(4px);
}
/* ============================================
   BLOG PAGE - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. BLOG HERO
   ============================================ */

.blog-hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #707A3E;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✦</text></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.blog-hero-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.2);
}

.blog-hero-tag i {
    margin-right: 6px;
}

.blog-hero-title {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.blog-hero-title span {
    color: #A7AD7B;
}

.blog-hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.blog-hero-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.blog-hero-contact i {
    color: #707A3E;
    margin-right: 6px;
}

.blog-hero-contact .divider {
    color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   2. BLOG FILTER
   ============================================ */

.blog-filter-section {
    background: #F7F7F2;
    padding: 18px 0;
    border-bottom: 1px solid #E5E5DD;
    position: sticky;
    top: 68px;
    z-index: 50;
}

.blog-filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
    color: #777777;
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.blog-filter-tab:hover {
    color: #707A3E;
    background: rgba(112, 122, 62, 0.06);
}

.blog-filter-tab.active {
    color: #FFFFFF;
    background: #707A3E;
    border-color: #707A3E;
    box-shadow: 0 4px 15px rgba(112, 122, 62, 0.25);
}

.blog-filter-tab i {
    font-size: 12px;
}

.blog-filter-count {
    color: #777777;
    font-size: 13px;
    font-weight: 500;
    background: #EFEDE4;
    padding: 4px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-filter-count i {
    font-size: 12px;
    color: #707A3E;
}

/* ============================================
   3. BLOG GRID
   ============================================ */

.blog-grid-section {
    background: #FFFFFF;
    padding: 50px 0 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== BLOG CARD ===== */
.blog-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5E5DD;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: #707A3E;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.blog-card-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ===== CARD IMAGE ===== */
.blog-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.blog-card-date {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 6px 12px;
    text-align: center;
    min-width: 48px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-card-day {
    display: block;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.blog-card-month {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-category {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-block;
    background: rgba(112, 122, 62, 0.85);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== CARD BODY ===== */
.blog-card-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #999999;
    margin-bottom: 10px;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-author i {
    color: #707A3E;
    font-size: 12px;
}

.blog-card-read-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-read-time i {
    color: #707A3E;
    font-size: 12px;
}

.blog-card-title {
    color: #161616;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card-link:hover .blog-card-title {
    color: #707A3E;
}

.blog-card-excerpt {
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #707A3E;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-card-readmore i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-card-link:hover .blog-card-readmore {
    gap: 12px;
}

.blog-card-link:hover .blog-card-readmore i {
    transform: translateX(4px);
}

/* ============================================
   4. PAGINATION
   ============================================ */

.blog-pagination {
    margin-top: 40px;
}

.blog-pagination-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-pagination-prev,
.blog-pagination-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #E5E5DD;
    border-radius: 10px;
    color: #383838;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-pagination-prev:hover,
.blog-pagination-next:hover {
    border-color: #707A3E;
    color: #707A3E;
    background: rgba(112, 122, 62, 0.04);
}

.blog-pagination-prev i,
.blog-pagination-next i {
    font-size: 12px;
}

.blog-pagination-pages {
    display: flex;
    gap: 4px;
}

.blog-pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 6px;
    border: 2px solid transparent;
    border-radius: 10px;
    color: #777777;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-pagination-page:hover {
    border-color: #E5E5DD;
    color: #383838;
}

.blog-pagination-page.active {
    background: #707A3E;
    border-color: #707A3E;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(112, 122, 62, 0.25);
}

/* ============================================
   5. BLOG EMPTY STATE
   ============================================ */

.blog-empty {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.blog-empty-icon {
    font-size: 56px;
    color: #E5E5DD;
    margin-bottom: 16px;
}

.blog-empty-icon i {
    display: block;
}

.blog-empty-title {
    color: #383838;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-empty-desc {
    color: #777777;
    font-size: 16px;
    margin-bottom: 24px;
}

.blog-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
}

.blog-empty-btn:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
    color: #FFFFFF;
}

/* ============================================
   6. BLOG CTA
   ============================================ */

.blog-cta {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    padding: 50px 0;
    border-top: 3px solid #707A3E;
    border-bottom: 3px solid #707A3E;
}

.blog-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.blog-cta-content {
    flex: 1;
}

.blog-cta-title {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-cta-title span {
    color: #A7AD7B;
}

.blog-cta-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin: 0;
}

.blog-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
    white-space: nowrap;
}

.blog-cta-btn:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
    color: #FFFFFF;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .blog-hero-title {
        font-size: 36px;
    }

    .blog-hero-desc {
        font-size: 16px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-cta-title {
        font-size: 28px;
    }

    .blog-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .blog-filter-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .blog-filter-tabs {
        justify-content: center;
    }

    .blog-card-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 40px 0 50px;
    }

    .blog-hero-title {
        font-size: 30px;
    }

    .blog-hero-desc {
        font-size: 15px;
    }

    .blog-grid-section {
        padding: 40px 0 50px;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .blog-card-image {
        height: 170px;
    }

    .blog-card-body {
        padding: 16px 18px 18px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .blog-card-meta {
        font-size: 11px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .blog-card-date {
        top: 10px;
        left: 10px;
        padding: 4px 10px;
        min-width: 40px;
    }

    .blog-card-day {
        font-size: 17px;
    }

    .blog-card-month {
        font-size: 9px;
    }

    .blog-card-category {
        font-size: 9px;
        padding: 3px 10px;
        top: 10px;
        right: 10px;
    }

    .blog-filter-section {
        padding: 12px 0;
        top: 60px;
    }

    .blog-filter-tab {
        padding: 6px 14px;
        font-size: 12px;
    }

    .blog-filter-count {
        font-size: 12px;
        padding: 4px 12px;
    }

    .blog-pagination-inner {
        gap: 6px;
    }

    .blog-pagination-prev,
    .blog-pagination-next {
        padding: 8px 14px;
        font-size: 13px;
    }

    .blog-pagination-page {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .blog-cta {
        padding: 40px 0;
    }

    .blog-cta-title {
        font-size: 24px;
    }

    .blog-cta-desc {
        font-size: 14px;
    }

    .blog-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .blog-hero-contact {
        font-size: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .blog-hero-contact .divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .blog-hero-title {
        font-size: 24px;
    }

    .blog-hero-desc {
        font-size: 14px;
    }

    .blog-hero-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-title {
        font-size: 17px;
    }

    .blog-pagination-inner {
        gap: 4px;
    }

    .blog-pagination-prev,
    .blog-pagination-next {
        font-size: 12px;
        padding: 6px 12px;
    }

    .blog-pagination-page {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .blog-cta-title {
        font-size: 20px;
    }

    .blog-cta-desc {
        font-size: 13px;
    }

    .blog-cta-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .blog-filter-tab {
        padding: 4px 12px;
        font-size: 11px;
    }

    .blog-filter-tabs {
        gap: 4px;
    }

    .blog-filter-count {
        font-size: 11px;
        padding: 4px 10px;
    }

    .blog-empty-title {
        font-size: 20px;
    }

    .blog-empty-desc {
        font-size: 14px;
    }

    .blog-empty-btn {
        font-size: 13px;
        padding: 12px 20px;
    }

    .blog-empty-icon {
        font-size: 40px;
    }
}

/* ============================================
   BLOG SINGLE PAGE - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. BLOG SINGLE HERO
   ============================================ */

.blog-single-hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #707A3E;
}

.blog-single-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✦</text></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.blog-single-hero-content {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.blog-single-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.blog-single-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-single-breadcrumb a:hover {
    color: #A7AD7B;
}

.blog-single-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.15);
}

.blog-single-breadcrumb .current {
    color: rgba(255, 255, 255, 0.4);
}

.blog-single-hero-text {
    max-width: 750px;
}

.blog-single-category {
    display: inline-block;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(112, 122, 62, 0.2);
}

.blog-single-title {
    color: #FFFFFF;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-single-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-single-meta-item {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-single-meta-item i {
    color: #707A3E;
    font-size: 13px;
}

/* ============================================
   2. BLOG SINGLE CONTENT
   ============================================ */

.blog-single-content {
    background: #F7F7F2;
    padding: 50px 0 60px;
}

.blog-single-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 44px 48px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #E5E5DD;
}

/* Featured Image */
.blog-single-featured-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
}

.blog-single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Excerpt */
.blog-single-excerpt {
    background: #F7F7F2;
    border-left: 4px solid #707A3E;
    padding: 18px 24px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 28px;
    font-size: 17px;
    font-weight: 500;
    color: #383838;
    line-height: 1.7;
}

.blog-single-excerpt i {
    color: #707A3E;
    margin-right: 8px;
    font-size: 18px;
}

/* Main Content */
.blog-single-body {
    color: #555555;
    font-size: 16px;
    line-height: 1.9;
}

.blog-single-body p {
    margin-bottom: 18px;
}

.blog-single-body h3 {
    color: #161616;
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}

.blog-single-body h4 {
    color: #161616;
    font-size: 20px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
}

.blog-single-body ul,
.blog-single-body ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.blog-single-body ul li,
.blog-single-body ol li {
    margin-bottom: 6px;
}

.blog-single-body a {
    color: #707A3E;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(112, 122, 62, 0.2);
    transition: all 0.3s ease;
}

.blog-single-body a:hover {
    color: #59622F;
    border-bottom-color: #59622F;
}

.blog-single-body strong {
    color: #383838;
}

.blog-single-body blockquote {
    border-left: 4px solid #707A3E;
    padding: 16px 24px;
    margin: 24px 0;
    background: #F7F7F2;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #555555;
}

.blog-single-body blockquote p {
    margin: 0;
}

.blog-single-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

/* Tags */
.blog-single-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 24px;
    margin-top: 28px;
    border-top: 1px solid #E5E5DD;
}

.blog-single-tags-label {
    color: #383838;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-single-tags-label i {
    color: #707A3E;
}

.blog-single-tag {
    display: inline-block;
    background: #F7F7F2;
    color: #555555;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #E5E5DD;
}

.blog-single-tag:hover {
    background: #707A3E;
    color: #FFFFFF;
    border-color: #707A3E;
    transform: translateY(-2px);
}

/* Share Section */
.blog-single-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #E5E5DD;
}

.blog-single-share-label {
    color: #383838;
    font-weight: 600;
    font-size: 14px;
}

.blog-single-share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #000000;
}

.share-btn.linkedin {
    background: #0A66C2;
}

.share-btn.pinterest {
    background: #E60023;
}

.share-btn.email {
    background: #707A3E;
}

.share-btn.facebook:hover {
    background: #0d65d9;
}

.share-btn.twitter:hover {
    background: #1a1a1a;
}

.share-btn.linkedin:hover {
    background: #0957a8;
}

.share-btn.pinterest:hover {
    background: #cc001f;
}

.share-btn.email:hover {
    background: #59622F;
}

/* Navigation */
.blog-single-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #E5E5DD;
}

.blog-single-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-single-nav-btn.back {
    color: #383838;
    border: 2px solid #E5E5DD;
    background: transparent;
}

.blog-single-nav-btn.back:hover {
    border-color: #707A3E;
    color: #707A3E;
    transform: translateX(-4px);
}

.blog-single-nav-btn.primary {
    background: #707A3E;
    color: #FFFFFF;
    border: 2px solid #707A3E;
}

.blog-single-nav-btn.primary:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
}

.blog-single-nav-btn.primary i:last-child {
    transition: transform 0.3s ease;
}

.blog-single-nav-btn.primary:hover i:last-child {
    transform: translateX(4px);
}

/* ============================================
   3. RELATED POSTS
   ============================================ */

.blog-single-related {
    background: #F7F7F2;
    padding: 60px 0 70px;
}

.blog-single-related-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-single-related-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.1);
    color: #707A3E;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(112, 122, 62, 0.15);
}

.blog-single-related-tag i {
    margin-right: 6px;
}

.blog-single-related-title {
    color: #161616;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}

.blog-single-related-title span {
    color: #707A3E;
}

.blog-single-related-divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto;
    border-radius: 4px;
}

.blog-single-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-single-related-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E5E5DD;
    transition: all 0.4s ease;
}

.blog-single-related-card:hover {
    transform: translateY(-6px);
    border-color: #707A3E;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.blog-single-related-link {
    text-decoration: none;
    display: block;
}

.blog-single-related-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-single-related-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.blog-single-related-body {
    padding: 18px 20px 20px;
}

.blog-single-related-title-text {
    color: #161616;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-single-related-link:hover .blog-single-related-title-text {
    color: #707A3E;
}

.blog-single-related-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #707A3E;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.blog-single-related-readmore i {
    transition: transform 0.3s ease;
}

.blog-single-related-link:hover .blog-single-related-readmore {
    gap: 10px;
}

.blog-single-related-link:hover .blog-single-related-readmore i {
    transform: translateX(4px);
}

/* ============================================
   4. BLOG SINGLE CTA
   ============================================ */

.blog-single-cta {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    padding: 60px 0;
    border-top: 3px solid #707A3E;
    border-bottom: 3px solid #707A3E;
}

.blog-single-cta-wrapper {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.blog-single-cta-title {
    color: #FFFFFF;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-single-cta-title span {
    color: #A7AD7B;
}

.blog-single-cta-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.blog-single-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-single-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-single-cta-btn.primary {
    background: #707A3E;
    color: #FFFFFF;
    border: 2px solid #707A3E;
}

.blog-single-cta-btn.primary:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
}

.blog-single-cta-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-single-cta-btn.secondary:hover {
    border-color: #A7AD7B;
    background: rgba(167, 173, 123, 0.08);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .blog-single-title {
        font-size: 34px;
    }

    .blog-single-wrapper {
        padding: 32px 28px 28px;
    }

    .blog-single-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-single-cta-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .blog-single-hero {
        padding: 30px 0 40px;
    }

    .blog-single-title {
        font-size: 28px;
    }

    .blog-single-meta {
        font-size: 13px;
        gap: 14px;
    }

    .blog-single-content {
        padding: 30px 0 40px;
    }

    .blog-single-wrapper {
        padding: 24px 18px 20px;
    }

    .blog-single-excerpt {
        font-size: 15px;
        padding: 14px 18px;
    }

    .blog-single-body {
        font-size: 15px;
    }

    .blog-single-body h3 {
        font-size: 20px;
    }

    .blog-single-body h4 {
        font-size: 17px;
    }

    .blog-single-navigation {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-single-nav-btn {
        justify-content: center;
        padding: 10px 18px;
        font-size: 13px;
    }

    .blog-single-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-single-related {
        padding: 40px 0 50px;
    }

    .blog-single-related-title {
        font-size: 28px;
    }

    .blog-single-related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .blog-single-related-image {
        height: 150px;
    }

    .blog-single-related-title-text {
        font-size: 14px;
    }

    .blog-single-cta {
        padding: 40px 0;
    }

    .blog-single-cta-title {
        font-size: 26px;
    }

    .blog-single-cta-desc {
        font-size: 15px;
    }

    .blog-single-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .blog-single-cta-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }

    .blog-single-breadcrumb {
        font-size: 12px;
        gap: 6px;
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .blog-single-hero {
        padding: 24px 0 30px;
    }

    .blog-single-title {
        font-size: 22px;
    }

    .blog-single-meta {
        font-size: 12px;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-single-wrapper {
        padding: 18px 14px 16px;
        border-radius: 12px;
    }

    .blog-single-excerpt {
        font-size: 14px;
        padding: 12px 14px;
        border-left-width: 3px;
    }

    .blog-single-body {
        font-size: 14px;
    }

    .blog-single-body h3 {
        font-size: 18px;
    }

    .blog-single-body h4 {
        font-size: 16px;
    }

    .blog-single-body ul,
    .blog-single-body ol {
        padding-left: 18px;
    }

    .blog-single-related-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .blog-single-related-image {
        height: 180px;
    }

    .blog-single-cta-title {
        font-size: 22px;
    }

    .blog-single-cta-desc {
        font-size: 14px;
    }

    .blog-single-cta-btn {
        font-size: 13px;
        padding: 10px 18px;
    }

    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .blog-single-category {
        font-size: 11px;
        padding: 2px 14px;
    }
}
/* ============================================
   CHATBOT WIDGET - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. TOGGLE BUTTON
   ============================================ */

.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #707A3E, #59622F);
    color: #FFFFFF;
    border: none;
    font-size: 28px;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(112, 122, 62, 0.45);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 12px 40px rgba(112, 122, 62, 0.6);
}

.chatbot-toggle:active {
    transform: scale(0.92);
}

.chatbot-toggle.active {
    transform: rotate(90deg);
    background: #DC2626;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

.chatbot-toggle.active:hover {
    transform: rotate(90deg) scale(1.05);
}

.chatbot-toggle-icon {
    transition: transform 0.4s ease;
}

.chatbot-toggle.active .chatbot-toggle-icon {
    transform: rotate(-90deg);
}

/* ===== BADGE ===== */
.chatbot-toggle-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #DC2626;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseBadge 2s ease-in-out infinite;
    border: 2px solid #FFFFFF;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ============================================
   2. CHAT CONTAINER
   ============================================ */

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: 92vw;
    height: 520px;
    max-height: 75vh;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(229, 229, 221, 0.3);
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom right;
}

.chatbot-container.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

/* ============================================
   3. HEADER
   ============================================ */

.chatbot-header {
    background: linear-gradient(135deg, #121212, #1a1a2e);
    color: #FFFFFF;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-bottom: 2px solid #707A3E;
}

.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(112, 122, 62, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #A7AD7B;
    border: 2px solid rgba(112, 122, 62, 0.2);
    flex-shrink: 0;
}

.chatbot-header-title {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3px;
}

.chatbot-header-status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.chatbot-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 8px;
    line-height: 1;
}

.chatbot-close:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(90deg);
}

/* ============================================
   4. MESSAGES
   ============================================ */

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px 16px 8px;
    background: #F7F7F2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #E5E5DD;
    border-radius: 10px;
}

/* ===== MESSAGE ===== */
.message {
    display: flex;
    gap: 10px;
    animation: slideUp 0.3s ease;
}

.message.user-message {
    flex-direction: row-reverse;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(112, 122, 62, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #707A3E;
    flex-shrink: 0;
    margin-top: 2px;
}

.message.user-message .message-avatar {
    background: rgba(112, 122, 62, 0.2);
    color: #707A3E;
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 78%;
}

.message.user-message .message-content {
    align-items: flex-end;
}

.message-bubble {
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: #383838;
    background: #FFFFFF;
    border: 1px solid #E5E5DD;
    border-bottom-left-radius: 4px;
    word-wrap: break-word;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.message.user-message .message-bubble {
    background: #707A3E;
    color: #FFFFFF;
    border-color: #707A3E;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 14px;
}

.message-time {
    font-size: 10px;
    color: #999999;
    padding: 0 4px;
}

.message.user-message .message-time {
    text-align: right;
}

/* ===== TYPING INDICATOR ===== */
.message.typing .message-bubble {
    background: #FFFFFF;
    border-color: #E5E5DD;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: transparent;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typingDot 1.4s infinite both;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-8px); opacity: 1; }
}

/* ============================================
   5. QUICK RESPONSES
   ============================================ */

.chatbot-quick-responses {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 8px 16px 12px;
    border-top: 1px solid #F0F0ED;
    background: #F7F7F2;
    flex-shrink: 0;
}

.quick-response-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #FFFFFF;
    border: 1px solid #E5E5DD;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #383838;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    white-space: nowrap;
}

.quick-response-btn:hover {
    background: #707A3E;
    color: #FFFFFF;
    border-color: #707A3E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112, 122, 62, 0.2);
}

.quick-response-btn:active {
    transform: scale(0.95);
}

.quick-response-btn i {
    font-size: 11px;
}

/* ============================================
   6. INPUT
   ============================================ */

.chatbot-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 14px;
    border-top: 1px solid #E5E5DD;
    background: #FFFFFF;
    flex-shrink: 0;
}

.chatbot-emoji-btn {
    background: transparent;
    border: none;
    color: #999999;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 4px 4px 0;
    transition: color 0.3s ease;
}

.chatbot-emoji-btn:hover {
    color: #707A3E;
}

.chatbot-input input {
    flex: 1;
    border: 2px solid #E5E5DD;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #F7F7F2;
    color: #161616;
}

.chatbot-input input:focus {
    border-color: #707A3E;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(112, 122, 62, 0.06);
}

.chatbot-input input::placeholder {
    color: #AAAAAA;
}

.chatbot-input input:disabled {
    opacity: 0.6;
}

.chatbot-send-btn {
    background: #707A3E;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 9px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.chatbot-send-btn:hover {
    background: #59622F;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(112, 122, 62, 0.3);
}

.chatbot-send-btn:active {
    transform: scale(0.92);
}

.chatbot-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   7. RESPONSIVE
   ============================================ */

@media (max-width: 576px) {
    .chatbot-toggle {
        width: 54px;
        height: 54px;
        font-size: 22px;
        bottom: 18px;
        right: 18px;
    }

    .chatbot-container {
        width: 95vw;
        right: 2.5vw;
        bottom: 80px;
        height: 460px;
        border-radius: 16px;
    }

    .chatbot-header {
        padding: 12px 16px;
    }

    .chatbot-header-title {
        font-size: 14px;
    }

    .chatbot-messages {
        padding: 12px;
    }

    .message-bubble {
        font-size: 13px;
        padding: 8px 14px;
    }

    .chatbot-quick-responses {
        padding: 6px 12px 10px;
        gap: 4px;
    }

    .quick-response-btn {
        font-size: 11px;
        padding: 4px 12px;
    }

    .chatbot-input {
        padding: 8px 12px 12px;
    }

    .chatbot-input input {
        font-size: 13px;
        padding: 8px 12px;
    }

    .chatbot-send-btn {
        padding: 8px 14px;
        font-size: 14px;
    }

    .chatbot-toggle-badge {
        min-width: 18px;
        height: 18px;
        font-size: 9px;
        top: -2px;
        right: -2px;
    }
}

@media (max-width: 400px) {
    .chatbot-container {
        height: 400px;
        bottom: 70px;
    }

    .quick-response-btn {
        font-size: 10px;
        padding: 3px 10px;
    }

    .chatbot-quick-responses {
        gap: 3px;
    }
}

/* ============================================
   CHATBOT TOGGLE - RIGHT ALIGN
   ============================================ */

.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;  /* ← RIGHT SIDE */
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #707A3E, #59622F);
    color: #FFFFFF;
    border: none;
    font-size: 28px;
    z-index: 9999;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(112, 122, 62, 0.45);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
}

/* ============================================
   CHATBOT CONTAINER - RIGHT ALIGN
   ============================================ */

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;  /* ← RIGHT SIDE */
    width: 380px;
    max-width: 92vw;
    height: 520px;
    max-height: 75vh;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(229, 229, 221, 0.3);
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom right;  /* ← ANIMATION FROM RIGHT */
}

.chatbot-container.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}
/* ============================================
   SERVICE AREAS PAGE - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. AREAS HERO
   ============================================ */

.areas-hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #707A3E;
}

.areas-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✦</text></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.areas-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.areas-hero-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.2);
}

.areas-hero-tag i {
    margin-right: 6px;
}

.areas-hero-title {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.areas-hero-title span {
    color: #A7AD7B;
}

.areas-hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.areas-hero-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.areas-hero-contact i {
    color: #707A3E;
    margin-right: 6px;
}

.areas-hero-contact .divider {
    color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   2. SECTION HEADER (Reusable)
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.1);
    color: #707A3E;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(112, 122, 62, 0.15);
}

.section-tag i {
    margin-right: 6px;
}

.section-title {
    color: #161616;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-title span {
    color: #707A3E;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 12px;
    border-radius: 4px;
}

.section-subtitle {
    color: #777777;
    font-size: 18px;
    margin: 0;
}

/* ============================================
   3. AREAS GRID
   ============================================ */

.areas-grid-section {
    background: #F7F7F2;
    padding: 60px 0 70px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== AREA CARD ===== */
.area-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 260px;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    display: block;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.area-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.area-card:hover .area-card-image {
    transform: scale(1.05);
}

/* ===== OVERLAY ===== */
.area-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75%;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, 0.85) 0%,
        rgba(18, 18, 18, 0.60) 40%,
        rgba(18, 18, 18, 0.30) 65%,
        rgba(18, 18, 18, 0.10) 85%,
        transparent 100%
    );
    pointer-events: none;
    transition: all 0.4s ease;
}

.area-card:hover .area-card-overlay {
    height: 85%;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, 0.92) 0%,
        rgba(18, 18, 18, 0.70) 40%,
        rgba(18, 18, 18, 0.40) 65%,
        rgba(18, 18, 18, 0.15) 85%,
        transparent 100%
    );
}

/* ===== CONTENT ===== */
.area-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px 24px;
    color: #FFFFFF;
    z-index: 2;
    text-align: center;
}

.area-card-content i {
    font-size: 22px;
    color: #A7AD7B;
    display: block;
    margin-bottom: 6px;
}

.area-card-name {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.area-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
}

.area-card:hover .area-card-link {
    opacity: 1;
    transform: translateY(0);
    color: #A7AD7B;
}

.area-card-link i {
    font-size: 11px;
    display: inline;
    margin: 0;
    color: inherit;
}

.area-card:hover .area-card-link i {
    transform: translateX(4px);
}

/* ============================================
   4. EXTENDED AREAS
   ============================================ */

.areas-extended {
    background: #FFFFFF;
    padding: 60px 0 70px;
}

.areas-extended-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto 24px;
}

.extended-badge {
    display: inline-block;
    background: #F7F7F2;
    border: 1px solid #E5E5DD;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    color: #383838;
    transition: all 0.3s ease;
}

.extended-badge:hover {
    border-color: #707A3E;
    background: #707A3E;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.12);
}

.areas-extended-footer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.areas-extended-footer p {
    color: #777777;
    font-size: 16px;
    margin-bottom: 8px;
}

.areas-extended-footer .highlight {
    color: #707A3E;
    font-weight: 600;
}

.areas-extended-footer a {
    color: #707A3E;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.areas-extended-footer a:hover {
    color: #59622F;
}

/* ============================================
   5. AREAS CTA
   ============================================ */

.areas-cta {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    padding: 50px 0;
    border-top: 3px solid #707A3E;
    border-bottom: 3px solid #707A3E;
}

.areas-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.areas-cta-content {
    flex: 1;
}

.areas-cta-title {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.areas-cta-title span {
    color: #A7AD7B;
}

.areas-cta-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin: 0;
}

.areas-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.areas-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.areas-cta-btn.primary {
    background: #707A3E;
    color: #FFFFFF;
    border: 2px solid #707A3E;
}

.areas-cta-btn.primary:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
}

.areas-cta-btn.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.areas-cta-btn.secondary:hover {
    border-color: #A7AD7B;
    background: rgba(167, 173, 123, 0.08);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .areas-hero-title {
        font-size: 36px;
    }

    .areas-hero-desc {
        font-size: 16px;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .areas-cta-title {
        font-size: 28px;
    }

    .areas-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .areas-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .areas-hero {
        padding: 40px 0 50px;
    }

    .areas-hero-title {
        font-size: 30px;
    }

    .areas-hero-desc {
        font-size: 15px;
    }

    .areas-grid-section {
        padding: 40px 0 50px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .area-card {
        height: 200px;
    }

    .area-card-content {
        padding: 20px 18px 18px;
    }

    .area-card-content i {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .area-card-name {
        font-size: 18px;
    }

    .area-card-link {
        font-size: 12px;
        opacity: 1;
        transform: none;
        color: rgba(255, 255, 255, 0.7);
    }

    .area-card-link i {
        font-size: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .areas-extended {
        padding: 40px 0 50px;
    }

    .extended-badge {
        padding: 6px 14px;
        font-size: 12px;
    }

    .areas-extended-footer p {
        font-size: 14px;
    }

    .areas-cta {
        padding: 40px 0;
    }

    .areas-cta-title {
        font-size: 24px;
    }

    .areas-cta-desc {
        font-size: 14px;
    }

    .areas-cta-btn {
        padding: 12px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .areas-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .areas-hero-contact {
        font-size: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .areas-hero-contact .divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .areas-hero-title {
        font-size: 24px;
    }

    .areas-hero-desc {
        font-size: 14px;
    }

    .areas-hero-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .area-card {
        height: 150px;
    }

    .area-card-content {
        padding: 14px 12px 12px;
    }

    .area-card-content i {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .area-card-name {
        font-size: 14px;
    }

    .area-card-link {
        font-size: 10px;
        opacity: 1;
        transform: none;
        color: rgba(255, 255, 255, 0.6);
    }

    .section-title {
        font-size: 24px;
    }

    .section-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .areas-extended-grid {
        gap: 6px;
    }

    .extended-badge {
        padding: 4px 12px;
        font-size: 11px;
        border-radius: 8px;
    }

    .areas-extended-footer p {
        font-size: 13px;
    }

    .areas-cta-title {
        font-size: 20px;
    }

    .areas-cta-desc {
        font-size: 13px;
    }

    .areas-cta-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
}
/* ============================================
   SERVICES PAGE - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. SERVICES HERO
   ============================================ */

.services-hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #707A3E;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✦</text></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.services-hero-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.2);
}

.services-hero-tag i {
    margin-right: 6px;
}

.services-hero-title {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.services-hero-title span {
    color: #A7AD7B;
}

.services-hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 24px;
}

.services-hero-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.services-hero-contact i {
    color: #707A3E;
    margin-right: 6px;
}

.services-hero-contact .divider {
    color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   2. SERVICES GRID
   ============================================ */

.services-grid-section {
    background: #F7F7F2;
    padding: 60px 0 70px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ===== SERVICE CARD ===== */
.service-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5E5DD;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #707A3E;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* ===== CARD IMAGE ===== */
.service-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.service-card-number {
    position: absolute;
    bottom: 14px;
    left: 18px;
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 800;
    opacity: 0.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

/* ===== CARD BODY ===== */
.service-card-body {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    color: #161616;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-card-desc {
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

/* ===== TAGS ===== */
.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.service-card-tag {
    display: inline-block;
    background: #F0F0ED;
    color: #383838;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.service-card-tag.more {
    background: #707A3E;
    color: #FFFFFF;
    font-weight: 600;
}

/* ===== LINK ===== */
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #707A3E;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 4px;
}

.service-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    color: #59622F;
    gap: 12px;
}

.service-card-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   3. SERVICES CTA
   ============================================ */

.services-cta {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    padding: 50px 0;
    border-top: 3px solid #707A3E;
    border-bottom: 3px solid #707A3E;
}

.services-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.services-cta-content {
    flex: 1;
}

.services-cta-title {
    color: #FFFFFF;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 8px;
}

.services-cta-title span {
    color: #A7AD7B;
}

.services-cta-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    margin: 0;
}

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
    white-space: nowrap;
}

.services-cta-btn i:last-child {
    transition: transform 0.3s ease;
}

.services-cta-btn:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 122, 62, 0.3);
    color: #FFFFFF;
}

.services-cta-btn:hover i:last-child {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .services-hero-title {
        font-size: 36px;
    }

    .services-hero-desc {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .services-cta-title {
        font-size: 28px;
    }

    .services-cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .services-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 40px 0 50px;
    }

    .services-hero-title {
        font-size: 30px;
    }

    .services-hero-desc {
        font-size: 15px;
    }

    .services-grid-section {
        padding: 40px 0 50px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .service-card-image {
        height: 160px;
    }

    .service-card-body {
        padding: 18px 18px 20px;
    }

    .service-card-title {
        font-size: 17px;
    }

    .service-card-desc {
        font-size: 13px;
    }

    .service-card-number {
        font-size: 22px;
        bottom: 10px;
        left: 14px;
    }

    .services-cta {
        padding: 40px 0;
    }

    .services-cta-title {
        font-size: 24px;
    }

    .services-cta-desc {
        font-size: 14px;
    }

    .services-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .services-hero-contact {
        font-size: 12px;
        gap: 12px;
        flex-wrap: wrap;
    }

    .services-hero-contact .divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .services-hero-title {
        font-size: 24px;
    }

    .services-hero-desc {
        font-size: 14px;
    }

    .services-hero-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .service-card-image {
        height: 180px;
    }

    .service-card-title {
        font-size: 18px;
    }

    .service-card-desc {
        font-size: 14px;
    }

    .service-card-tag {
        font-size: 10px;
        padding: 2px 10px;
    }

    .services-cta-title {
        font-size: 20px;
    }

    .services-cta-desc {
        font-size: 13px;
    }

    .services-cta-btn {
        font-size: 13px;
        padding: 10px 20px;
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 24px;
    }

    .section-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .section-subtitle {
        font-size: 14px;
    }
}



/* ============================================
   SERVICES SECTION - HOME PAGE
   ============================================ */

.services-home-section {
    background: #EFEDE4;
    padding: 80px 0 70px;
}

/* ===== HEADER ===== */
.services-home-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-home-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.1);
    color: #707A3E;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.15);
}

.services-home-tag i {
    margin-right: 6px;
}

.services-home-title {
    color: #161616;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.services-home-divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.services-home-subtitle {
    color: #777777;
    font-size: 18px;
}

/* ===== GRID ===== */
.services-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ===== SERVICE CARD ===== */
.service-home-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 380px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-home-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ===== CARD IMAGE ===== */
.service-home-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.service-home-card:hover .service-home-card-image {
    transform: scale(1.05);
}

/* ===== OVERLAY ===== */
.service-home-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75%;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, 0.92) 0%,
        rgba(18, 18, 18, 0.70) 40%,
        rgba(18, 18, 18, 0.40) 65%,
        rgba(18, 18, 18, 0.10) 85%,
        transparent 100%
    );
    pointer-events: none;
    transition: all 0.4s ease;
}

.service-home-card:hover .service-home-card-overlay {
    height: 85%;
    background: linear-gradient(
        to top,
        rgba(18, 18, 18, 0.95) 0%,
        rgba(18, 18, 18, 0.80) 40%,
        rgba(18, 18, 18, 0.50) 65%,
        rgba(18, 18, 18, 0.15) 85%,
        transparent 100%
    );
}

/* ===== CARD CONTENT ===== */
.service-home-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 28px 28px;
    color: #FFFFFF;
    z-index: 2;
}

/* ===== NUMBER ===== */
.service-home-card-number {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #A7AD7B;
    background: rgba(167, 173, 123, 0.15);
    padding: 2px 14px;
    border-radius: 20px;
    border: 1px solid rgba(167, 173, 123, 0.2);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* ===== TITLE ===== */
.service-home-card-title {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

/* ===== DESCRIPTION ===== */
.service-home-card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
    max-width: 95%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== LINK ===== */
.service-home-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #A7AD7B;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.service-home-card-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #A7AD7B;
    transition: width 0.3s ease;
}

.service-home-card-link:hover {
    color: #FFFFFF;
    gap: 14px;
}

.service-home-card-link:hover::after {
    width: 100%;
}

.service-home-card-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-home-card-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .services-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-home-title {
        font-size: 34px;
    }

    .service-home-card {
        height: 320px;
    }

    .service-home-card-content {
        padding: 24px 20px 22px;
    }

    .service-home-card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .services-home-section {
        padding: 50px 0 40px;
    }

    .services-home-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 500px;
        margin: 0 auto;
    }

    .services-home-title {
        font-size: 28px;
    }

    .services-home-subtitle {
        font-size: 16px;
    }

    .service-home-card {
        height: 260px;
    }

    .service-home-card-content {
        padding: 18px 16px 16px;
    }

    .service-home-card-title {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .service-home-card-desc {
        font-size: 12px;
        -webkit-line-clamp: 2;
        margin-bottom: 10px;
    }

    .service-home-card-number {
        font-size: 11px;
        padding: 2px 10px;
        margin-bottom: 6px;
    }

    .service-home-card-link {
        font-size: 12px;
    }

    .service-home-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .services-home-section {
        padding: 40px 0 30px;
    }

    .services-home-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 360px;
    }

    .services-home-title {
        font-size: 22px;
    }

    .services-home-subtitle {
        font-size: 14px;
    }

    .services-home-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .service-home-card {
        height: 200px;
    }

    .service-home-card-content {
        padding: 12px 12px 12px;
    }

    .service-home-card-title {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .service-home-card-desc {
        font-size: 11px;
        -webkit-line-clamp: 1;
        margin-bottom: 6px;
    }

    .service-home-card-number {
        font-size: 9px;
        padding: 1px 8px;
        margin-bottom: 4px;
    }

    .service-home-card-link {
        font-size: 10px;
        gap: 4px;
    }

    .service-home-card-link i {
        font-size: 9px;
    }

    .services-home-header {
        margin-bottom: 20px;
    }

    .services-home-divider {
        width: 40px;
        margin: 0 auto 10px;
    }
}














/* ============================================
   CERTIFICATIONS SECTION - PREMIUM STYLING
   ============================================ */

.cert-home-section {
    background: linear-gradient(180deg, #F7F7F2 0%, #EFEDE4 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}

/* ===== BACKGROUND DECORATIVE ELEMENTS ===== */
.cert-home-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(112, 122, 62, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cert-home-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(112, 122, 62, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== HEADER ===== */
.cert-home-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.cert-home-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(112, 122, 62, 0.12), rgba(167, 173, 123, 0.08));
    color: #707A3E;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.15);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.cert-home-tag:hover {
    background: linear-gradient(135deg, rgba(112, 122, 62, 0.2), rgba(167, 173, 123, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(112, 122, 62, 0.1);
}

.cert-home-tag i {
    font-size: 14px;
}

.cert-home-title {
    color: #161616;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cert-home-title span {
    color: #707A3E;
    position: relative;
}

.cert-home-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #707A3E, #A7AD7B);
    border-radius: 4px;
    opacity: 0.3;
}

.cert-home-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #707A3E, #A7AD7B, #707A3E);
    margin: 0 auto 14px;
    border-radius: 4px;
    position: relative;
}

.cert-home-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 7px;
    background: #707A3E;
    border-radius: 50%;
    opacity: 0.3;
}

.cert-home-subtitle {
    color: #888888;
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* ===== GRID ===== */
.cert-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* ===== CERTIFICATION ITEM ===== */
.cert-home-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    aspect-ratio: 1 / 0.7;
    background: transparent;
    position: relative;
    cursor: pointer;
}

/* ===== IMAGE ===== */
.cert-home-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    padding: 24px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* ===== HOVER EFFECTS ===== */
.cert-home-item:hover {
    transform: translateY(-10px) scale(1.02);
}

.cert-home-item:hover .cert-home-logo {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 60px rgba(112, 122, 62, 0.12), 
                0 8px 25px rgba(112, 122, 62, 0.06);
    border-color: rgba(112, 122, 62, 0.2);
    padding: 20px;
}

/* ===== SHIMMER EFFECT ON HOVER ===== */
.cert-home-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        rgba(167, 173, 123, 0.04) 50%,
        transparent 60%,
        transparent 100%
    );
    transform: rotate(25deg) translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.cert-home-item:hover::before {
    transform: rotate(25deg) translateX(100%);
}

/* ===== GLOW BORDER ON HOVER ===== */
.cert-home-item::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, #707A3E, #A7AD7B, #707A3E);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: none;
}

.cert-home-item:hover::after {
    opacity: 1;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== FLOATING ANIMATION (Staggered) ===== */
.cert-home-item:nth-child(1) { animation: floatItem 6s ease-in-out infinite; }
.cert-home-item:nth-child(2) { animation: floatItem 6s ease-in-out infinite 0.8s; }
.cert-home-item:nth-child(3) { animation: floatItem 6s ease-in-out infinite 1.6s; }
.cert-home-item:nth-child(4) { animation: floatItem 6s ease-in-out infinite 2.4s; }
.cert-home-item:nth-child(5) { animation: floatItem 6s ease-in-out infinite 3.2s; }
.cert-home-item:nth-child(6) { animation: floatItem 6s ease-in-out infinite 4s; }

@keyframes floatItem {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.cert-home-item:hover {
    animation-play-state: paused;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .cert-home-section {
        padding: 60px 0 50px;
    }

    .cert-home-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .cert-home-title {
        font-size: 34px;
    }

    .cert-home-item {
        aspect-ratio: 1 / 0.8;
        border-radius: 16px;
    }

    .cert-home-logo {
        padding: 18px;
        border-radius: 16px;
    }

    .cert-home-item::after {
        border-radius: 18px;
    }

    .cert-home-item::before {
        border-radius: 16px;
    }

    .cert-home-item:hover .cert-home-logo {
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .cert-home-section {
        padding: 50px 0 40px;
    }

    .cert-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cert-home-title {
        font-size: 28px;
    }

    .cert-home-subtitle {
        font-size: 15px;
    }

    .cert-home-item {
        aspect-ratio: 1 / 0.8;
        border-radius: 14px;
    }

    .cert-home-logo {
        padding: 16px;
        border-radius: 14px;
    }

    .cert-home-item::after {
        border-radius: 16px;
    }

    .cert-home-item::before {
        border-radius: 14px;
    }

    .cert-home-item:hover .cert-home-logo {
        padding: 12px;
    }

    .cert-home-item:hover {
        transform: translateY(-6px) scale(1.01);
    }

    .cert-home-tag {
        font-size: 12px;
        padding: 4px 16px;
    }

    .cert-home-divider {
        width: 50px;
    }

    /* Disable float animation on mobile for performance */
    .cert-home-item {
        animation: none !important;
    }
}

@media (max-width: 576px) {
    .cert-home-section {
        padding: 40px 0 30px;
    }

    .cert-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cert-home-title {
        font-size: 22px;
    }

    .cert-home-subtitle {
        font-size: 13px;
        max-width: 100%;
    }

    .cert-home-item {
        aspect-ratio: 1 / 0.7;
        border-radius: 12px;
    }

    .cert-home-logo {
        padding: 12px;
        border-radius: 12px;
    }

    .cert-home-item::after {
        border-radius: 14px;
    }

    .cert-home-item::before {
        border-radius: 12px;
    }

    .cert-home-item:hover .cert-home-logo {
        padding: 8px;
    }

    .cert-home-tag {
        font-size: 10px;
        padding: 3px 12px;
        gap: 4px;
    }

    .cert-home-tag i {
        font-size: 11px;
    }

    .cert-home-divider {
        width: 40px;
        height: 2px;
    }

    .cert-home-title span::after {
        height: 3px;
    }

    /* Disable shimmer on mobile */
    .cert-home-item::before {
        display: none;
    }
}
/* ============================================
   GALLERY CTA SECTION - BEFORE/AFTER SLIDER
   ============================================ */

.gallery-cta-section {
    background: linear-gradient(135deg, #1E2118 0%, #2a2f24 50%, #1E2118 100%);
    padding: 70px 0;
    border-top: 3px solid #707A3E;
    border-bottom: 3px solid #707A3E;
    position: relative;
    overflow: hidden;
}

/* ===== DECORATIVE BACKGROUND ===== */
.gallery-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 122, 62, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery-cta-section::after {
    content: '✦';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 120px;
    color: rgba(112, 122, 62, 0.03);
    pointer-events: none;
}

/* ===== WRAPPER ===== */
.gallery-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===== CONTENT ===== */
.gallery-cta-content {
    padding-right: 20px;
}

.gallery-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(112, 122, 62, 0.15);
    color: #A7AD7B;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.2);
}

.gallery-cta-tag i {
    font-size: 12px;
}

.gallery-cta-title {
    color: #FFFFFF;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.gallery-cta-title span {
    color: #A7AD7B;
}

.gallery-cta-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 90%;
}

.gallery-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #707A3E;
    box-shadow: 0 4px 20px rgba(112, 122, 62, 0.3);
}

.gallery-cta-btn:hover {
    background: #59622F;
    border-color: #59622F;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(112, 122, 62, 0.4);
    color: #FFFFFF;
}

.gallery-cta-btn i:last-child {
    transition: transform 0.3s ease;
}

.gallery-cta-btn:hover i:last-child {
    transform: translateX(4px);
}

/* ============================================
   BEFORE/AFTER SLIDER
   ============================================ */

.gallery-cta-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.before-after-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: ew-resize;
    user-select: none;
    border: 2px solid rgba(112, 122, 62, 0.2);
}

/* ===== BEFORE IMAGE (Bottom) ===== */
.before-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.before-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== AFTER IMAGE (Top - Clipped) ===== */
.after-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    clip-path: inset(0 50% 0 0);
}

.after-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== SLIDER HANDLE ===== */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #FFFFFF;
    z-index: 5;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.slider-handle:hover {
    box-shadow: 0 0 30px rgba(112, 122, 62, 0.5);
}

/* ===== HANDLE LINE ===== */
.handle-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #FFFFFF;
}

/* ===== HANDLE CIRCLE ===== */
.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: #707A3E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.slider-handle:hover .handle-circle {
    background: #59622F;
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 4px 30px rgba(112, 122, 62, 0.5);
}

.handle-circle i {
    transition: transform 0.3s ease;
}

.slider-handle:hover .handle-circle i {
    transform: rotate(90deg);
}

/* ===== HANDLE LABEL ===== */
.handle-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-handle:hover .handle-label {
    opacity: 1;
}

.handle-label span {
    font-size: 10px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

/* ===== SLIDER LABELS ===== */
.slider-label {
    position: absolute;
    bottom: 16px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

.before-label {
    left: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.7);
}

.after-label {
    right: 16px;
    background: rgba(112, 122, 62, 0.8);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   ANIMATED HANDLE PULSE
   ============================================ */

@keyframes handlePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(112, 122, 62, 0.3); }
    50% { box-shadow: 0 0 40px rgba(112, 122, 62, 0.6); }
}

.slider-handle {
    animation: handlePulse 2.5s ease-in-out infinite;
}

.slider-handle:hover {
    animation-play-state: paused;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .gallery-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-cta-content {
        padding-right: 0;
        text-align: center;
    }

    .gallery-cta-desc {
        max-width: 100%;
    }

    .gallery-cta-title {
        font-size: 32px;
    }

    .gallery-cta-slider {
        max-width: 550px;
    }

    .before-after-container {
        aspect-ratio: 4 / 3;
        border-radius: 14px;
    }
}

@media (max-width: 768px) {
    .gallery-cta-section {
        padding: 50px 0 40px;
    }

    .gallery-cta-title {
        font-size: 28px;
    }

    .gallery-cta-desc {
        font-size: 15px;
    }

    .gallery-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .gallery-cta-slider {
        max-width: 100%;
    }

    .before-after-container {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }

    .handle-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-label {
        font-size: 10px;
        padding: 3px 12px;
        bottom: 12px;
    }

    .before-label {
        left: 12px;
    }

    .after-label {
        right: 12px;
    }
}

@media (max-width: 576px) {
    .gallery-cta-section {
        padding: 40px 0 30px;
    }

    .gallery-cta-title {
        font-size: 22px;
    }

    .gallery-cta-desc {
        font-size: 14px;
    }

    .gallery-cta-tag {
        font-size: 11px;
        padding: 3px 14px;
    }

    .gallery-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .before-after-container {
        aspect-ratio: 1 / 1;
        border-radius: 10px;
    }

    .handle-circle {
        width: 34px;
        height: 34px;
        font-size: 12px;
        border-width: 2px;
    }

    .handle-label {
        display: none;
    }

    .slider-label {
        font-size: 9px;
        padding: 2px 10px;
        bottom: 8px;
    }

    .before-label {
        left: 8px;
    }

    .after-label {
        right: 8px;
    }

    .gallery-cta-slider {
        max-width: 100%;
    }

    .gallery-cta-section::before,
    .gallery-cta-section::after {
        display: none;
    }
}

/* ===== NAV BOLD & RIGHT SHIFT ===== */
.nav-links {
    padding-left: 60px;  /* Shift right */
}

.nav-links a {
    font-weight: 700 !important;  /* Bold */
}

/* ============================================
   FINANCING PAGE - COMPLETE STYLING
   ============================================ */

/* ============================================
   1. FINANCING HERO
   ============================================ */

.financing-hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 50%, #16213e 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #707A3E;
}

.financing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">✦</text></svg>');
    background-size: 80px 80px;
    pointer-events: none;
}

.financing-hero .container {
    position: relative;
    z-index: 2;
}

.financing-hero h1 {
    color: #FFFFFF;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.financing-hero .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.financing-hero .fs-5 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    line-height: 1.7;
    max-width: 85%;
    margin: 0 auto;
}

.hero-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.hero-contact i {
    color: #707A3E;
    margin-right: 6px;
}

.hero-contact .mx-3 {
    color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   2. FINANCING INTRO
   ============================================ */

.financing-intro {
    background: #FFFFFF;
    padding: 60px 0 50px;
}

.financing-intro .divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    border-radius: 4px;
    margin: 16px 0 12px;
}

.financing-intro h2 {
    color: #161616;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.financing-intro .fs-5 {
    color: #555555;
    font-size: 18px;
    line-height: 1.7;
}

.financing-icon {
    font-size: 72px;
    color: #707A3E;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.financing-icon:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ============================================
   3. FINANCING SERVICES CARDS
   ============================================ */

.financing-services {
    background: #F7F7F2;
    padding: 60px 0 50px;
}

.finance-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 28px 28px;
    border: 1px solid #E5E5DD;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.finance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #707A3E, #A7AD7B);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.finance-card:hover::before {
    opacity: 1;
}

.finance-card:hover {
    border-color: #707A3E;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.finance-icon {
    width: 56px;
    height: 56px;
    background: rgba(112, 122, 62, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #707A3E;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.finance-card:hover .finance-icon {
    background: #707A3E;
    color: #FFFFFF;
}

.finance-card h5 {
    color: #161616;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.finance-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.finance-card ul li {
    color: #555555;
    font-size: 14px;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(229, 229, 221, 0.3);
}

.finance-card ul li:last-child {
    border-bottom: none;
}

.finance-card ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #707A3E;
    font-weight: 700;
    font-size: 16px;
}

/* ============================================
   4. FINANCING BENEFITS
   ============================================ */

.financing-benefits {
    background: #FFFFFF;
    padding: 60px 0 50px;
}

.financing-benefits .divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.financing-benefits h2 {
    color: #161616;
    font-size: 36px;
    font-weight: 800;
}

.financing-benefits .text-muted {
    color: #777777 !important;
    font-size: 18px;
}

.benefit-card {
    background: #F7F7F2;
    border-radius: 14px;
    padding: 30px 20px 24px;
    border: 1px solid #E5E5DD;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    border-color: #707A3E;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    background: #FFFFFF;
}

.benefit-icon {
    font-size: 36px;
    color: #707A3E;
    margin-bottom: 12px;
}

.benefit-card h6 {
    color: #161616;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.benefit-card p {
    color: #777777;
    font-size: 14px;
    margin: 0;
}

/* ============================================
   5. FINANCING PROCESS
   ============================================ */

.financing-process {
    background: #EFEDE4;
    padding: 60px 0 50px;
}

.financing-process .divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.financing-process h2 {
    color: #161616;
    font-size: 36px;
    font-weight: 800;
}

.process-step .step-number {
    width: 48px;
    height: 48px;
    background: #707A3E;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: #59622F;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(112, 122, 62, 0.3);
}

.process-step .step-icon {
    font-size: 28px;
    color: #707A3E;
    margin-bottom: 8px;
}

.process-step h6 {
    color: #161616;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.process-step p {
    color: #777777;
    font-size: 12px;
    margin: 0;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   6. FINANCING FAQ
   ============================================ */

.financing-faq {
    background: #FFFFFF;
    padding: 60px 0 50px;
}

.financing-faq .divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 16px;
    border-radius: 4px;
}

.financing-faq h2 {
    color: #161616;
    font-size: 36px;
    font-weight: 800;
}

.financing-faq .accordion {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5DD;
}

.financing-faq .accordion-item {
    border: none;
    border-bottom: 1px solid #E5E5DD;
    background: transparent;
}

.financing-faq .accordion-item:last-child {
    border-bottom: none;
}

.financing-faq .accordion-header {
    background: #FFFFFF;
}

.financing-faq .accordion-button {
    color: #161616;
    font-weight: 600;
    font-size: 15px;
    padding: 18px 24px;
    background: #FFFFFF;
    box-shadow: none;
    transition: all 0.3s ease;
}

.financing-faq .accordion-button:hover {
    background: rgba(112, 122, 62, 0.03);
}

.financing-faq .accordion-button:not(.collapsed) {
    color: #707A3E;
    background: rgba(112, 122, 62, 0.04);
    box-shadow: none;
}

.financing-faq .accordion-button:focus {
    box-shadow: none;
}

.financing-faq .accordion-button::after {
    color: #707A3E;
}

.financing-faq .accordion-body {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    padding: 0 24px 20px;
    background: #FFFFFF;
}

/* ============================================
   7. FINANCING CTA
   ============================================ */

.financing-cta {
    background: linear-gradient(135deg, #121212 0%, #1a1a2e 100%);
    padding: 60px 0;
    border-top: 3px solid #707A3E;
    border-bottom: 3px solid #707A3E;
}

.financing-cta h2 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.financing-cta .fs-5 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    line-height: 1.7;
}

.financing-cta .btn-light {
    background: #FFFFFF;
    color: #707A3E;
    border: 2px solid #FFFFFF;
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.financing-cta .btn-light:hover {
    background: #F0F0ED;
    border-color: #F0F0ED;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.financing-cta .btn-outline-light {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.financing-cta .btn-outline-light:hover {
    border-color: #A7AD7B;
    background: rgba(167, 173, 123, 0.08);
    transform: translateY(-3px);
}

.financing-cta .small {
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
    margin-top: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .financing-hero h1 {
        font-size: 36px;
    }

    .financing-hero .fs-5 {
        max-width: 100%;
    }

    .financing-intro h2 {
        font-size: 32px;
    }

    .financing-benefits h2 {
        font-size: 32px;
    }

    .financing-process h2 {
        font-size: 32px;
    }

    .financing-faq h2 {
        font-size: 32px;
    }

    .financing-cta h2 {
        font-size: 34px;
    }

    .finance-card {
        padding: 24px 20px 20px;
    }
}

@media (max-width: 768px) {
    .financing-hero {
        padding: 40px 0 50px;
    }

    .financing-hero h1 {
        font-size: 28px;
    }

    .financing-hero .lead {
        font-size: 17px;
    }

    .financing-hero .fs-5 {
        font-size: 16px;
    }

    .hero-contact {
        flex-direction: column;
        gap: 8px;
    }

    .hero-contact .mx-3 {
        display: none;
    }

    .financing-intro {
        text-align: center;
    }

    .financing-intro .divider {
        margin: 16px auto 12px;
    }

    .financing-intro h2 {
        font-size: 28px;
    }

    .financing-intro .fs-5 {
        font-size: 16px;
    }

    .financing-icon {
        font-size: 56px;
        margin-top: 12px;
    }

    .financing-services {
        padding: 40px 0 30px;
    }

    .finance-card {
        padding: 20px 18px 18px;
    }

    .finance-card h5 {
        font-size: 15px;
    }

    .finance-card ul li {
        font-size: 13px;
        padding: 4px 0 4px 18px;
    }

    .finance-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .financing-benefits {
        padding: 40px 0 30px;
    }

    .financing-benefits h2 {
        font-size: 28px;
    }

    .financing-benefits .text-muted {
        font-size: 16px;
    }

    .benefit-card {
        padding: 24px 16px 18px;
    }

    .benefit-card h6 {
        font-size: 14px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    .financing-process {
        padding: 40px 0 30px;
    }

    .financing-process h2 {
        font-size: 28px;
    }

    .process-step p {
        max-width: 100%;
    }

    .financing-faq {
        padding: 40px 0 30px;
    }

    .financing-faq h2 {
        font-size: 28px;
    }

    .financing-faq .accordion-button {
        font-size: 14px;
        padding: 14px 18px;
    }

    .financing-faq .accordion-body {
        font-size: 14px;
        padding: 0 18px 16px;
    }

    .financing-cta {
        padding: 40px 0;
    }

    .financing-cta h2 {
        font-size: 28px;
    }

    .financing-cta .fs-5 {
        font-size: 16px;
    }

    .financing-cta .btn-light,
    .financing-cta .btn-outline-light {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .financing-cta .mt-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .financing-cta .mt-4 .me-3 {
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .financing-hero h1 {
        font-size: 24px;
    }

    .financing-hero .lead {
        font-size: 15px;
    }

    .financing-hero .fs-5 {
        font-size: 14px;
    }

    .financing-intro h2 {
        font-size: 24px;
    }

    .financing-intro .fs-5 {
        font-size: 15px;
    }

    .financing-icon {
        font-size: 44px;
    }

    .financing-benefits h2 {
        font-size: 24px;
    }

    .financing-benefits .text-muted {
        font-size: 14px;
    }

    .benefit-card {
        padding: 20px 14px 14px;
    }

    .benefit-icon {
        font-size: 28px;
    }

    .benefit-card h6 {
        font-size: 13px;
    }

    .benefit-card p {
        font-size: 12px;
    }

    .financing-process h2 {
        font-size: 24px;
    }

    .process-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .process-step .step-icon {
        font-size: 22px;
    }

    .process-step h6 {
        font-size: 13px;
    }

    .financing-faq h2 {
        font-size: 24px;
    }

    .financing-faq .accordion-button {
        font-size: 13px;
        padding: 12px 14px;
    }

    .financing-faq .accordion-body {
        font-size: 13px;
        padding: 0 14px 12px;
    }

    .financing-cta h2 {
        font-size: 22px;
    }

    .financing-cta .fs-5 {
        font-size: 14px;
    }

    .financing-cta .btn-light,
    .financing-cta .btn-outline-light {
        font-size: 13px;
        padding: 10px 16px;
        max-width: 100%;
    }
}

/* ============================================
   POPPINS FONT - GOOGLE FONTS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===== APPLY TO BODY ===== */
body {
    font-family: 'Poppins', sans-serif;
}

/* ===== FONT WEIGHT CLASSES ===== */
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }


/* ============================================
   REVIEWS / TESTIMONIALS SECTION
   ============================================ */

.testimonials-carousel-section {
    background: #F7F7F2;
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

/* ===== BACKGROUND DECORATIVE ELEMENTS ===== */
.testimonials-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(112, 122, 62, 0.04);
}

.bg-circle-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
}

.bg-circle-2 {
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
}

.bg-circle-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(112, 122, 62, 0.02);
}

/* ===== HEADER ===== */
.testimonials-carousel-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.testimonials-carousel-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(112, 122, 62, 0.1);
    color: #707A3E;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.15);
}

.testimonials-carousel-tag i {
    font-size: 12px;
}

.testimonials-carousel-title {
    color: #161616;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
}

.testimonials-carousel-title span {
    color: #707A3E;
}

.testimonials-carousel-divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 12px;
    border-radius: 4px;
}

.testimonials-carousel-subtitle {
    color: #777777;
    font-size: 17px;
}

/* ============================================
   CAROUSEL WRAPPER
   ============================================ */

.testimonials-carousel-wrapper {
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 16px;
    padding: 0 10px;
}

/* ===== TRACK ===== */
.testimonials-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: 100%;
}

/* ===== SLIDE ===== */
.testimonial-slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* ============================================
   REVIEW CARD
   ============================================ */

.testimonial-slide-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 32px 28px;
    border: 1px solid #E5E5DD;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
}

.testimonial-slide-card:hover {
    border-color: #707A3E;
    box-shadow: 0 12px 40px rgba(112, 122, 62, 0.08);
}

/* ===== CARD HEADER TOP ===== */
.card-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    color: #F59E0B;
    font-size: 12px;
    font-weight: 700;
}

.rating-badge i {
    font-size: 11px;
}

.rating-badge span {
    color: #383838;
    font-weight: 600;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #22c55e;
    font-size: 12px;
    font-weight: 500;
}

.verified-badge i {
    font-size: 13px;
}

/* ===== QUOTE MARK ===== */
.quote-mark {
    color: #707A3E;
    font-size: 28px;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 6px;
}

/* ===== TEXT ===== */
.testimonial-slide-text {
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px;
    font-style: italic;
    flex: 1;
}

/* ===== CARD FOOTER ===== */
.card-footer-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #F0F0ED;
}

.testimonial-slide-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-slide-info {
    flex: 1;
}

.testimonial-slide-name {
    color: #161616;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
}

.testimonial-slide-meta {
    color: #999999;
    font-size: 13px;
    margin: 0;
}

/* ============================================
   NAVIGATION ARROWS
   ============================================ */

.testimonials-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E5E5DD;
    color: #383838;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    z-index: 5;
}

.testimonials-carousel-arrow:hover {
    background: #707A3E;
    color: #FFFFFF;
    border-color: #707A3E;
    box-shadow: 0 6px 20px rgba(112, 122, 62, 0.25);
}

.testimonials-carousel-arrow.prev {
    left: -15px;
}

.testimonials-carousel-arrow.next {
    right: -15px;
}

/* ============================================
   DOTS
   ============================================ */

.testimonials-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.testimonials-carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E5DD;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-carousel-dots .dot.active {
    background: #707A3E;
    width: 32px;
    border-radius: 6px;
}

.testimonials-carousel-dots .dot:hover {
    background: #707A3E;
}

/* ============================================
   FOOTER STATS
   ============================================ */

.testimonials-carousel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #E5E5DD;
    position: relative;
    z-index: 1;
}

.testimonials-carousel-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stats-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FFFFFF;
    padding: 6px 16px 6px 14px;
    border-radius: 30px;
    border: 1px solid #E5E5DD;
}

.stats-number {
    font-size: 22px;
    font-weight: 800;
    color: #161616;
}

.stats-stars {
    display: flex;
    gap: 2px;
    color: #F59E0B;
    font-size: 13px;
}

.stats-text {
    color: #777777;
    font-size: 14px;
}

.testimonials-carousel-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #707A3E;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonials-carousel-view-all:hover {
    color: #59622F;
    gap: 12px;
    border-bottom-color: #707A3E;
}

.testimonials-carousel-view-all i {
    transition: transform 0.3s ease;
}

.testimonials-carousel-view-all:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .testimonials-carousel-title {
        font-size: 32px;
    }

    .testimonials-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .testimonials-carousel-arrow.prev {
        left: -5px;
    }

    .testimonials-carousel-arrow.next {
        right: -5px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-section {
        padding: 50px 0 40px;
    }

    .testimonials-carousel-title {
        font-size: 28px;
    }

    .testimonials-carousel-subtitle {
        font-size: 15px;
    }

    .testimonials-carousel-wrapper {
        padding: 0 5px;
    }

    .testimonial-slide {
        padding: 0 5px;
    }

    .testimonial-slide-card {
        padding: 22px 20px 20px;
        border-radius: 12px;
    }

    .testimonial-slide-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonial-slide-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 14px;
    }

    .testimonial-slide-name {
        font-size: 14px;
    }

    .testimonial-slide-meta {
        font-size: 12px;
    }

    .testimonials-carousel-arrow {
        display: none;
    }

    .testimonials-carousel-footer {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-carousel-stats {
        justify-content: center;
    }

    .stats-number {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .testimonials-carousel-section {
        padding: 40px 0 30px;
    }

    .testimonials-carousel-title {
        font-size: 24px;
    }

    .testimonials-carousel-subtitle {
        font-size: 14px;
    }

    .testimonials-carousel-tag {
        font-size: 11px;
        padding: 2px 14px;
    }

    .testimonials-carousel-divider {
        width: 40px;
    }

    .testimonial-slide-card {
        padding: 16px 14px 14px;
        border-radius: 10px;
    }

    .testimonial-slide-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .testimonial-slide-avatar {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 12px;
    }

    .testimonial-slide-name {
        font-size: 13px;
    }

    .testimonial-slide-meta {
        font-size: 11px;
    }

    .card-header-top {
        flex-wrap: wrap;
        gap: 8px;
    }

    .rating-badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .verified-badge {
        font-size: 10px;
    }

    .quote-mark {
        font-size: 20px;
    }

    .stats-number {
        font-size: 18px;
    }

    .stats-stars {
        font-size: 11px;
    }

    .stats-text {
        font-size: 12px;
    }

    .stats-badge {
        padding: 4px 12px 4px 10px;
    }

    .testimonials-carousel-view-all {
        font-size: 13px;
    }

    .testimonials-carousel-footer {
        margin-top: 30px;
        padding-top: 20px;
    }

    .testimonials-carousel-dots {
        gap: 8px;
        margin-top: 20px;
    }

    .testimonials-carousel-dots .dot {
        width: 10px;
        height: 10px;
    }

    .testimonials-carousel-dots .dot.active {
        width: 24px;
    }
}


/* ============================================
   GALLERY PAGE - ADDITIONAL STYLES
   ============================================ */

/* ===== BEFORE/AFTER GRID ===== */
.gallery-before-after-section {
    background: #F7F7F2;
    padding: 70px 0 60px;
}

.gallery-before-after-header {
    text-align: center;
    margin-bottom: 45px;
}

.gallery-before-after-tag {
    display: inline-block;
    background: rgba(112, 122, 62, 0.1);
    color: #707A3E;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(112, 122, 62, 0.15);
}

.gallery-before-after-tag i {
    margin-right: 6px;
}

.gallery-before-after-title {
    color: #161616;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 8px;
}

.gallery-before-after-title span {
    color: #707A3E;
}

.gallery-before-after-divider {
    width: 60px;
    height: 3px;
    background: #707A3E;
    margin: 0 auto 12px;
    border-radius: 4px;
}

.gallery-before-after-subtitle {
    color: #777777;
    font-size: 17px;
}

.gallery-before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-ba-item {
    display: flex;
    flex-direction: column;
}

.gallery-ba-title {
    color: #161616;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.gallery-ba-item .before-after-container {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E5DD;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    cursor: ew-resize;
    position: relative;
    width: 100%;
}

.gallery-ba-item .before-after-container:hover {
    border-color: #707A3E;
    box-shadow: 0 8px 30px rgba(112, 122, 62, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-before-after-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .gallery-before-after-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .gallery-ba-title {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .gallery-before-after-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}
/* ===== MOBILE HERO IMAGE ===== */
@media (max-width: 768px) {
    .hero {
        background-image: url('../images/hero-bg-mobile.jpg') !important;
        background-position: center;
        background-size: cover;
    }
}

/* ===== HOME PAGE - FINANCING SECTION MOBILE ===== */
@media (max-width: 768px) {
    .financing-section-content {
        text-align: center;
    }
}