/* ============================================
   BRENT DESIGN & CONSTRUCTION
   Professional CSS – Blue, White, Black Theme
   ============================================ */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111;
    background-color: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1F3D2B; /* deep forest green */
}

h1 {
    font-size: 2.8rem;
}
h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
h3 {
    font-size: 1.5rem;
}
p {
    margin-bottom: 1rem;
    color: #222;
}
a {
    color: #1F3D2B;
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: #2E5B3F;
    text-decoration: underline;
}
.text-center {
    text-align: center;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}
.btn-primary {
    background: #D4B15F;
    color: white;
    border: 2px solid #D4B15F;
}
.btn-primary:hover {
    background: #CFAF5A;
    border-color: #CFAF5A;
    text-decoration: none;
}
.btn-outline {
    background: transparent;
    border: 2px solid #1F3D2B;
    color: #1F3D2B;
}
.btn-outline:hover {
    background: #1F3D2B;
    color: white;
}
.btn-large {
    padding: 14px 36px;
    font-size: 1.1rem;
}
.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}


/* ========== HEADER – NAVIGATION BAR ========== */
/* ========== HEADER – FIXED MOBILE NAV ========== */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 1rem;
}

/* Logo area */
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 0 0 auto;
    text-decoration: none;
}
.logo-img {
    height: 120px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
}
.logo-img:hover {
    opacity: 0.85;
}
.site-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F3D2B;
    line-height: 1.2;
}
.site-name span {
    color: #CFAF5A;
}
.site-tagline {
    font-size: 0.62rem;
    color: #7a9a82;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

/* Mobile heading (hidden on desktop) */
.mobile-header-title {
    display: none;
}

/* Gold bar */
.header-gold-bar {
    height: 3px;
    background: linear-gradient(90deg, #1F3D2B 0%, #CFAF5A 50%, #1F3D2B 100%);
    margin-top: 10px;
}

/* Desktop CTA */
.header-cta {
    flex: 0 0 auto;
    background: #CFAF5A;
    color: #1F3D2B;
    border-radius: 24px;
    padding: 9px 22px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}
.header-cta:hover {
    background: #b8962e;
    transform: translateY(-1px);
}

/* Desktop navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-menu > li > a {
    color: #1F3D2B;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 0;
    position: relative;
}
.nav-menu > li > a:hover {
    color: #CFAF5A;
}
.nav-menu > li > a.active {
    color: #CFAF5A;
}
.nav-menu > li > a.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: #CFAF5A;
}

/* Dropdowns (desktop) */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    min-width: 215px;
    list-style: none;
    padding: 6px 0;
    border-radius: 12px;
    top: calc(100% + 8px);
    left: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    border: 1px solid #e8e2d0;
    z-index: 200;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li a {
    display: block;
    padding: 9px 20px;
    font-size: 0.87rem;
    color: #1F3D2B;
    text-decoration: none;
}
.dropdown-menu li a:hover {
    background: #f5f2ea;
    color: #CFAF5A;
    padding-left: 26px;
}
.drop-arrow {
    font-size: 0.65rem;
    margin-left: 4px;
    display: inline-block;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1600;  /* above overlay */
    position: relative;
}
.hamburger-box {
    width: 26px;
    height: 20px;
    position: relative;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 26px;
    height: 2.5px;
    background: #1F3D2B;
    border-radius: 3px;
    position: absolute;
    transition: transform 0.3s, opacity 0.2s;
}
.hamburger-inner {
    top: 50%;
    margin-top: -1.25px;
}
.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
}
.hamburger-inner::before {
    top: -9px;
}
.hamburger-inner::after {
    bottom: -9px;
}
.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
}
.hamburger.is-active .hamburger-inner::before {
    opacity: 0;
    transform: translateY(9px);
}
.hamburger.is-active .hamburger-inner::after {
    transform: translateY(-9px) rotate(-90deg);
}

/* ========== MOBILE STYLES (≤992px) ========== */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(31,61,43,0.4);
    z-index: 1500;
}
.nav-overlay.is-visible {
    display: block;
}

@media (max-width: 992px) {
    .header-cta {
        display: none;
    }
    .header-top {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 8px;
    }
    .logo-area {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .logo-img {
        height: 85px;
    }
    .logo-area .site-name,
    .logo-area .site-tagline {
        display: none;
    }
    .mobile-header-title {
        display: block;
        text-align: center;
    }
    .mobile-header-title .site-name {
        font-size: 0.82rem;
        font-weight: 700;
        color: #1F3D2B;
    }
    .mobile-header-title .site-name span {
        color: #CFAF5A;
    }
    .mobile-header-title .site-tagline {
        font-size: 0.56rem;
        color: #7a9a82;
        text-transform: uppercase;
    }
    .hamburger {
        display: block;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1501;
        padding: 80px 0 20px;
        overflow-y: auto;
        display: block;
    }
    .main-nav.is-open {
        right: 0;
    }
    .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    .nav-menu > li {
        border-bottom: 1px solid #f2ede3;
    }
    .nav-menu > li > a {
        display: block;
        padding: 14px 22px;
        font-size: 1rem;
    }
    .nav-menu > li > a.active {
        background: #faf8f3;
        border-left: 3px solid #CFAF5A;
        padding-left: 19px;
    }
    .nav-menu > li > a.active::after {
        display: none;
    }
    .dropdown-menu {
        position: static;
        display: none;
        background: #faf8f3;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    .dropdown.is-open .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        padding: 11px 34px;
    }
    body.nav-is-open {
        overflow: hidden;
    }
}

/* ---------- HOMEPAGE HERO ---------- */
/* ===== HERO SECTION ===== */


/* ---------- SERVICES OVERVIEW (Cards) ---------- */


/* ========== GALLERY SECTION ========== */
.gallery-hero {
    background: linear-gradient(135deg, #1F3D2B 0%, #2E5B3F 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}
.gallery-hero-content h1 {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 800;
}
.gallery-hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Gallery Filter Buttons */
.gallery-filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 50px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #e0d6c0;
    background: #ffffff;
    color: #1F3D2B;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #CFAF5A;
    color: #CFAF5A;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #CFAF5A;
    color: #1F3D2B;
    border-color: #CFAF5A;
    box-shadow: 0 6px 16px rgba(207, 175, 90, 0.25);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    aspect-ratio: 1 / 1;
    display: block;
    cursor: pointer;
    background: #f0eadd;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 61, 43, 0) 0%, rgba(31, 61, 43, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: #CFAF5A;
    font-size: 1.3rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}

/* Gallery CTA Section */
.gallery-cta-section {
    background: linear-gradient(135deg, #1F3D2B 0%, #2E5B3F 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: #ffffff;
}

.gallery-cta-section h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 12px;
}

.gallery-cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .gallery-hero {
        padding: 60px 0;
    }
    
    .gallery-hero-content h1 {
        font-size: 2.4rem;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .filter-btn {
        padding: 7px 12px;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-overlay {
        padding: 12px;
    }
    
    .gallery-overlay h3 {
        font-size: 0.95rem;
    }
    
    .gallery-overlay p {
        font-size: 0.7rem;
    }
    
    .gallery-cta-section {
        padding: 30px 16px;
    }
    
    .gallery-cta-section h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        padding: 40px 0;
    }
    
    .gallery-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .gallery-hero-content p {
        font-size: 0.95rem;
    }
    
    .gallery-filter-wrapper {
        gap: 8px;
        margin: 24px 0 24px;
    }
    
    .filter-btn {
        padding: 7px 14px;
        font-size: 0.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-cta-section {
        padding: 30px 16px;
        border-radius: 12px;
    }
    
    .gallery-cta-section h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .gallery-cta-section p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
}

/* ---------- WHY US SECTION ---------- */













/* ---------- 404 ERROR PAGE ---------- */


/* ---------- CHATBOT (Floating Widget) ---------- */


/* ---------- BACK TO TOP BUTTON ---------- */


/* ---------- ALERTS & MESSAGES ---------- */
.alert {
    padding: 12px 20px;
    border-radius: 8px;
    margin: 1rem 0;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-grid, .reviews-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }
    .main-nav { display: none; width: 100%; }
    .main-nav.is-open { display: block; z-index: 1501; }
    .main-nav ul { flex-direction: column; gap: 0.4rem; padding: 0.8rem 0; }
    .dropdown-menu { position: static; background: #002244; margin-left: 1rem; }
    
    /* ===== CONTAINER ===== */
    .container { padding: 0 12px; }
    
    /* ===== TYPOGRAPHY ===== */
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.4rem !important; }
    h3 { font-size: 1.1rem; }
    
    /* ===== SECTIONS ===== */
    section { padding: 30px 0; }
    .hero { min-height: 75vh; }
    
    /* ===== GRIDS ===== */
    .service-grid, .areas-grid, .blog-grid { 
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .contact-grid, .reviews-layout { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 1.2rem; }
    
    /* ===== KEEP CHATBOT VISIBLE ===== */
    #chatbot-container { z-index: 9999 !important; position: fixed !important; }
    .chatbot-window { z-index: 10000 !important; }
    
    .why-grid { grid-template-columns: 1fr; }
    .why-image { display: none; }
    .gallery-mini img { width: 100%; }
}
@media (max-width: 480px) {
    /* ===== CONTAINER & BASE ===== */
    .container { 
        padding: 0 12px;
        margin: 0 auto;
    }
    
    /* ===== TYPOGRAPHY ===== */
    h1 { font-size: 1.6rem !important; margin-bottom: 0.8rem; }
    h2 { font-size: 1.3rem !important; margin-bottom: 1rem; }
    h3 { font-size: 1.1rem !important; margin-bottom: 0.8rem; }
    h4 { font-size: 1rem; }
    p { font-size: 0.95rem; margin-bottom: 0.8rem; }
    
    /* ===== BUTTONS ===== */
    .btn { 
        padding: 10px 18px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    /* ===== SECTIONS ===== */
    section { padding: 30px 0 !important; }
    .hero { min-height: 70vh; padding: 0; }
    .services-overview { padding: 30px 0; }
    .why-us { padding: 30px 0; }
    .areas-served { padding: 25px 0; }
    .cta-section { padding: 2rem; margin: 1rem 0; }
    
    /* ===== GRIDS ===== */
    .service-grid, .areas-grid, .blog-grid { 
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .contact-grid, .reviews-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .gallery-grid { gap: 0.8rem; }
    .gallery-item img { height: 200px !important; }
    .hero-stats { gap: 1rem; }
    .why-grid { grid-template-columns: 1fr; }
    
    /* ===== MARGINS OPTIMIZED ===== */
    .section-header { margin-bottom: 24px; }
    .section-header h2 { margin-bottom: 0.8rem; }
    .section-subtitle { font-size: 0.95rem; margin: 0 auto 1.5rem; }
    
    /* ===== SPECIFIC SECTIONS ===== */
    .hero-content { padding: 3rem 0 2rem; max-width: 100%; }
    .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 1rem; }
    .hero-buttons { gap: 0.5rem; }
    
    .service-card { border-radius: 12px; }
    .service-image { height: 150px; }
    .service-content { padding: 12px 10px 16px; }
    .service-content p { font-size: 0.85rem; }
    
    .gallery-mini img { width: 100%; margin-bottom: 0.5rem; }
    
    .row, .reasons { flex-direction: column; gap: 1rem; }
    .col { min-width: 100%; }
    
    /* ===== FORMS ===== */
    form input, form select, form textarea {
        padding: 10px;
        margin-bottom: 0.8rem;
        font-size: 1rem;
    }
    
    /* ===== CHATBOT ===== */
    #chatbot-container {
        bottom: 16px;
        right: 12px;
        z-index: 9999 !important;
        position: fixed !important;
    }
    .chatbot-toggle {
        padding: 9px 14px;
        font-size: 0.75rem;
        z-index: 10000 !important;
    }
    .chatbot-window {
        width: calc(100vw - 24px);
        right: 12px;
        bottom: 65px;
        height: 450px;
        z-index: 10000 !important;
    }
    
    /* ===== FOOTER ===== */
    .site-footer { padding: 30px 0 20px; }
    .footer-content { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-section h3 { font-size: 1rem; margin-bottom: 0.8rem; }
    
    /* ===== MISC ===== */
    .alert { padding: 10px 15px; font-size: 0.9rem; }
}

/* ============================================
   FOOTER STYLES - BRENT DESIGN & CONSTRUCTION
   ============================================ */

:root {
    --primary-dark: #1F3D2B;
    --primary-medium: #2E5B3F;
    --primary-light: #6F8F7B;
    --secondary-gold: #CFAF5A;
    --cta-gold: #D4B15F;
    --white: #FFFFFF;
    --text-light: #E8E8E8;
    --text-muted: #B8B8B8;
    --transition: all 0.3s ease;
}

.site-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(207, 175, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col:first-child { padding-right: 30px; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 85px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(207, 175, 90, 0.2);
}

.social-icon:hover {
    background: var(--secondary-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: var(--secondary-gold);
    box-shadow: 0 10px 20px rgba(207, 175, 90, 0.3);
}

.footer-col h3 {
    color: var(--secondary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--cta-gold);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    padding: 5px 0;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--secondary-gold);
    font-size: 1.2rem;
}

.footer-col ul li a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.footer-col address {
    font-style: normal;
    margin-top: 8px;
}

.footer-col address p {
    color: var(--text-light);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.footer-col address p:last-child {
    margin-bottom: 0;
}

.footer-col address p:hover {
    color: var(--secondary-gold);
}

.contact-icon {
    color: var(--secondary-gold);
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-col address a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.footer-col address a:hover {
    color: var(--secondary-gold);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(207, 175, 90, 0.15);
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-credit {
    color: var(--secondary-gold) !important;
    font-weight: 500;
}

.developer-credit a {
    color: var(--secondary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.developer-credit a:hover {
    color: var(--cta-gold);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-col:first-child {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
    }
    .social-links { justify-content: center; }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .site-footer { padding: 40px 0 0; }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        text-align: left;
    }
    .footer-col { text-align: left; }
    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    .footer-col h3 { font-size: 0.95rem; margin-bottom: 12px; }
    .footer-col h3::after {
        left: 0;
        transform: translateX(0);
        width: 30px;
    }
    .footer-col ul li a { justify-content: flex-start; }
    .footer-col ul li {
        margin-bottom: 8px;
    }
    .footer-col address {
        text-align: left;
    }
    .contact-icon {
        min-width: 20px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .footer-col ul li a {
        font-size: 0.85rem;
        padding: 2px 0;
    }
    .footer-col address p {
        font-size: 0.85rem;
        margin-bottom: 10px;
        align-items: center;
        gap: 10px;
    }
    .social-links { justify-content: center; margin-bottom: 20px; }
    .footer-bottom {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 20px 0;
    }
    .footer-bottom p {
        font-size: 0.8rem;
        margin: 0;
        white-space: nowrap;
    }
    .developer-credit {
        white-space: nowrap;
    }
    .developer-credit a {
        white-space: nowrap;
    }
}



/* ============================================
   CERTIFICATION SECTION - PREMIUM DESIGN
   Colors: #1F3D2B (Deep Green), #CFAF5A (Gold)
   ============================================ */

.certification-section {
    background: linear-gradient(135deg, #ffffff 0%, #fbf9f2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Optional decorative background pattern */
.certification-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#CFAF5A08 2px, transparent 2px);
    background-size: 40px 40px;
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Section Header */


/* Certification Grid */
.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

/* Certification Card – Premium Design */
.cert-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 36px 24px 32px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid #ede6d8;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    position: relative;
    backdrop-filter: blur(0px);
}
.cert-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, #CFAF5A30, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.cert-card:hover::before {
    opacity: 1;
}
.cert-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 40px -12px rgba(31,61,43,0.2);
    border-color: #CFAF5A40;
}

/* Icon styling */
.cert-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(145deg, #fefaf0, #f6f2e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 5px 12px rgba(0,0,0,0.02);
    border: 1px solid #ede3cf;
}
.cert-icon i {
    font-size: 2.8rem;
    color: #CFAF5A;
    transition: all 0.3s;
}
.cert-card:hover .cert-icon {
    background: #CFAF5A10;
    transform: scale(1.02);
}
.cert-card:hover .cert-icon i {
    color: #D4B15F;
    text-shadow: 0 2px 5px #CFAF5A20;
}

/* Typography */
.cert-card h3 {
    font-size: 1.5rem;
    color: #1F3D2B;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.cert-card p {
    color: #5a6b5e;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}
.cert-badge {
    display: inline-block;
    background: #F5F2EA;
    color: #1F3D2B;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 40px;
    letter-spacing: 0.3px;
    border: 1px solid #e0d6c0;
    transition: 0.2s;
}
.cert-card:hover .cert-badge {
    background: #CFAF5A;
    color: #1F3D2B;
    border-color: #CFAF5A;
}

/* Footer CTA */
.cert-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e8e2d2;
    position: relative;
}
.cert-footer p {
    color: #2E5B3F;
    font-size: 1.05rem;
    margin-bottom: 24px;
    font-weight: 500;
}
.cert-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #D4B15F;
    color: #1F3D2B;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 14px rgba(207,175,90,0.25);
    border: 1px solid #e2cb7a;
    font-size: 1rem;
}
.cert-cta-btn i {
    transition: transform 0.2s;
}
.cert-cta-btn:hover {
    background: #CFAF5A;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(207,175,90,0.35);
    color: #1F3D2B;
}
.cert-cta-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .certification-section { padding: 80px 0; }
    .section-header h2 { font-size: 2.4rem; }
    .certification-grid { gap: 24px; }
    .cert-card { padding: 28px 20px; }
}
/* Mobile View: 2 cards per row */
@media (max-width: 768px) {
    .certification-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cert-card {
        padding: 14px 8px;
    }
    .cert-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    .cert-icon i {
        font-size: 1.4rem;
    }
    .cert-card h3 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    .cert-card p {
        font-size: 0.65rem;
        margin-bottom: 8px;
    }
    .cert-badge {
        font-size: 0.58rem;
        padding: 3px 6px;
    }
}

/* Phones (480px - 767px) */
@media (max-width: 480px) {
    .certification-grid {
        gap: 10px;
    }
    .cert-card {
        padding: 14px 8px;
    }
    .cert-icon {
        width: 45px;
        height: 45px;
    }
    .cert-icon i {
        font-size: 1.3rem;
    }
    .cert-card h3 {
        font-size: 0.85rem;
    }
    .cert-card p {
        font-size: 0.65rem;
    }
}

/* Ultra small phones (≤360px) */
@media (max-width: 360px) {
    .certification-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .cert-card {
        padding: 12px 6px;
    }
    .cert-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    .cert-icon i {
        font-size: 1.1rem;
    }
    .cert-card h3 {
        font-size: 0.8rem;
    }
    .cert-card p {
        font-size: 0.6rem;
    }
}


/* ========== HEADER – LARGE LOGO, NO DUPLICATE HEADING ========== */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 0;
    gap: 1rem;
}

/* ===== Logo + Desktop Heading ===== */
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 0 0 auto;
    text-decoration: none;
}
.logo-img {
    height: 120px;          /* larger logo */
    width: auto;
    display: block;
    transition: opacity 0.2s;
}
.logo-img:hover {
    opacity: 0.85;
}
.site-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F3D2B;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.site-name span {
    color: #CFAF5A;
}
.site-tagline {
    font-size: 0.62rem;
    color: #7a9a82;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 500;
}

/* ===== Mobile heading (hidden on desktop) ===== */
.mobile-header-title {
    display: none;   /* hidden on desktop */
}

/* ===== Gold Bar ===== */
.header-gold-bar {
    height: 3px;
    background: linear-gradient(90deg, #1F3D2B 0%, #CFAF5A 50%, #1F3D2B 100%);
    margin-top: 10px;
}

/* ===== Desktop CTA ===== */
.header-cta {
    flex: 0 0 auto;
    background: #CFAF5A;
    color: #1F3D2B;
    border: none;
    border-radius: 24px;
    padding: 9px 22px;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}
.header-cta:hover {
    background: #b8962e;
    transform: translateY(-1px);
}

/* ===== Navigation Centered ===== */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-menu > li > a {
    color: #1F3D2B;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-menu > li > a:hover {
    color: #CFAF5A;
}
.nav-menu > li > a.active {
    color: #CFAF5A;
}
.nav-menu > li > a.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: #CFAF5A;
    border-radius: 2px;
}

/* ===== Desktop Dropdown ===== */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    background: #ffffff;
    min-width: 215px;
    list-style: none;
    padding: 6px 0;
    border-radius: 12px;
    top: calc(100% + 8px);
    left: 0;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
    border: 1px solid #e8e2d0;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li a {
    display: block;
    padding: 9px 20px;
    font-size: 0.87rem;
    font-weight: 500;
    color: #1F3D2B;
    text-decoration: none;
    transition: background 0.15s, padding-left 0.15s;
}
.dropdown-menu li a:hover {
    background: #f5f2ea;
    color: #CFAF5A;
    padding-left: 26px;
}

/* ===== Hamburger (hidden on desktop) ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    flex: 0 0 auto;
}
.hamburger-box {
    width: 26px;
    height: 20px;
    display: block;
    position: relative;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 26px;
    height: 2.5px;
    background: #1F3D2B;
    border-radius: 3px;
    position: absolute;
    transition: transform 0.32s cubic-bezier(.23,1,.32,1),
                opacity 0.2s ease;
}
.hamburger-inner {
    top: 50%;
    margin-top: -1.25px;
}
.hamburger-inner::before {
    content: '';
    top: -9px;
}
.hamburger-inner::after {
    content: '';
    bottom: -9px;
}
.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
}
.hamburger.is-active .hamburger-inner::before {
    opacity: 0;
    transform: translateY(9px);
}
.hamburger.is-active .hamburger-inner::after {
    transform: translateY(-9px) rotate(-90deg);
}

/* ========== MOBILE & TABLET (≤ 992px) ========== */
@media (max-width: 992px) {
    .header-cta {
        display: none;
    }
    .hamburger {
        display: block;
    }

    /* Logo smaller on mobile */
    .logo-img {
        height: 85px;
    }
    /* Hide desktop heading text inside logo-area */
    .logo-area .site-name,
    .logo-area .site-tagline {
        display: none;
    }

    /* Show mobile heading */
    .mobile-header-title {
        display: block;
        text-align: center;
    }
    .mobile-header-title .site-name {
        font-size: 0.82rem;
        font-weight: 700;
        color: #1F3D2B;
        line-height: 1.2;
    }
    .mobile-header-title .site-name span {
        color: #CFAF5A;
    }
    .mobile-header-title .site-tagline {
        font-size: 0.56rem;
        color: #7a9a82;
        text-transform: uppercase;
        letter-spacing: 0.07em;
    }

    /* Header layout: logo | center text | hamburger */
    .header-top {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        padding: 10px 0 0;
        gap: 8px;
    }
    .logo-area {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    /* Slide-in navigation */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 76%;
        max-width: 290px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -4px 0 24px rgba(0,0,0,0.13);
        transition: right 0.34s cubic-bezier(.23,1,.32,1);
        z-index: 1001;
        padding: 80px 0 24px;
        overflow-y: auto;
        flex: none;
        display: block;
    }
    .main-nav.is-open {
        right: 0;
    }

    /* Overlay (no blur) */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(31,61,43,0.38);
        z-index: 1000;
    }
    .nav-overlay.is-visible {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }
    .nav-menu > li {
        border-bottom: 1px solid #f2ede3;
    }
    .nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 22px;
        font-size: 0.97rem;
    }
    .nav-menu > li > a.active {
        color: #CFAF5A;
        background: #faf8f3;
        border-left: 3px solid #CFAF5A;
        padding-left: 19px;
    }
    .nav-menu > li > a.active::after {
        display: none;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #faf8f3;
        padding: 0;
        min-width: unset;
    }
    .dropdown.is-open .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        padding: 11px 34px;
        font-size: 0.86rem;
        border-bottom: 1px solid #f0eadd;
    }
    .dropdown-menu li a:hover {
        padding-left: 38px;
    }

    .drop-arrow {
        font-size: 0.65rem;
        transition: transform 0.25s;
        display: inline-block;
    }
    .dropdown.is-open > a .drop-arrow {
        transform: rotate(180deg);
    }

    .mobile-nav-cta {
        display: block;
        margin: 20px 22px 0;
        text-align: center;
        background: #CFAF5A;
        color: #1F3D2B;
        padding: 11px;
        border-radius: 22px;
        font-weight: 700;
        font-size: 0.9rem;
        text-decoration: none;
    }
    .mobile-nav-cta:hover {
        background: #b8962e;
    }

    body.nav-is-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 65px;
    }
    .container {
        padding: 0 14px;
    }
    .mobile-header-title .site-name {
        font-size: 0.72rem;
    }
}

/* ========== HERO SECTION – FADING GRADIENT ========== */



/* ========== SERVICES OVERVIEW – 3 CARDS DESKTOP, 2 MOBILE ========== */


/* ========== WHY CHOOSE US – CARDS WITH ICONS ========== */
.why-us-cards {
    padding: 80px 0;
    background: #fbf9f5;   /* soft cream background */
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 2.4rem;
    color: #1F3D2B;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #2E5B3F;
    max-width: 700px;
    margin: 0 auto 20px;
}
.gold-line {
    width: 80px;
    height: 3px;
    background: #CFAF5A;
    margin: 0 auto;
    border-radius: 2px;
}

/* Cards grid – responsive */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Individual card */
.why-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8e2d0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.why-card:hover {
    transform: translateY(-8px);
    border-color: #CFAF5A;
    box-shadow: 0 20px 30px -12px rgba(31,61,43,0.15);
}

/* Icon styling */
.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(145deg, #fefaf0, #f6f2e6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.why-icon i {
    font-size: 2.4rem;
    color: #3a9f5d;
    transition: 0.2s;
}
.why-card:hover .why-icon {
    background: #CFAF5A;
}
.why-card:hover .why-icon i {
    color: white;
}

/* Typography inside card */
.why-card h3 {
    font-size: 1.3rem;
    color: #1F3D2B;
    margin-bottom: 12px;
    font-weight: 700;
}
.why-card p {
    font-size: 0.9rem;
    color: #5a6b5e;
    line-height: 1.4;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .why-us-cards {
        padding: 35px 0;
    }
    .section-header h2 {
        font-size: 1.7rem;
    }
    .why-cards-grid {
        gap: 12px;
        grid-template-columns: 1fr;
    }
    .why-card {
        padding: 14px 10px;
    }
    .why-icon {
        width: 50px;
        height: 50px;
    }
    .why-icon i {
        font-size: 1.5rem;
    }
    .why-card h3 {
        font-size: 0.95rem;
    }
}

/* 370px to 480px: Show 2 cards per row */
@media (min-width: 370px) and (max-width: 480px) {
    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .why-card {
        padding: 16px 10px;
    }
}

/* Below 370px: 1 card */
@media (max-width: 369px) {
    .why-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-card {
        padding: 20px 16px;
    }
}



/* ========== GLOBAL TEXT ALIGNMENT FIXES ========== */

/* 1. All body text defaults to left (except where explicitly centered) */
body, .container, .main-nav, .footer-col {
    text-align: left;
}

/* 2. Section headers – always centered */
.section-header,
.section-header h2,
.section-header .section-subtitle,
.section-header .gold-line {
    text-align: center;
}

/* 3. Card content (services, areas, why-us cards) – left aligned inside cards */
.service-card .service-content,
.area-card,
.why-card,
.value-item,
.cert-card {
    text-align: left;
}

/* For cards that need centered icons, keep icon center but text left */
.service-card .service-content h3,
.service-card .service-content p,
.service-card .service-link,
.area-card h3,
.area-card p,
.area-card .area-link,
.why-card h3,
.why-card p,
.value-item h4,
.value-item p {
    text-align: left;
}

/* 4. About Us section – consistent left alignment */
.about-text p,
.mission-box p,
.value-item p {
    text-align: left;
}
.about-text {
    text-align: left;
}
.mission-box {
    text-align: left;
}

/* 5. Checklist (why choose us list) – left aligned */
.checklist li {
    text-align: left;
    justify-content: flex-start;
}

/* 6. Areas served grid – cards left aligned */
.areas-grid .area-card {
    text-align: left;
}
/* But keep the icon and heading structure */
.area-card .area-icon {
    display: block;
    text-align: center;  /* icon centered is fine */
}
.area-card h3,
.area-card p {
    text-align: left;
}

/* 7. Hero section – center alignment (intentional) */
.hero-content {
    text-align: center;
}
.hero-content h1,
.hero-content p,
.hero-buttons {
    text-align: center;
    justify-content: center;
}

/* 8. Footer – left on desktop, center on mobile */
.site-footer {
    text-align: left;
}
.footer-col h3,
.footer-col p,
.footer-col address,
.footer-col ul {
    text-align: left;
}
.social-links {
    justify-content: flex-start;
}
@media (max-width: 768px) {
    .footer-col,
    .footer-col h3,
    .footer-col p,
    .footer-col address,
    .footer-col ul,
    .social-links {
        text-align: center;
        justify-content: center;
    }
}

/* 9. Certification section – cards left aligned */
.cert-card {
    text-align: left;
}
.cert-icon {
    text-align: center;
}
.cert-card h3,
.cert-card p {
    text-align: left;
}

/* 10. Contact page – form left aligned, contact info left */
.contact-info-card,
.contact-form-card {
    text-align: left;
}
.contact-form-card form input,
.contact-form-card form textarea,
.contact-form-card form button {
    text-align: left;
}

/* 11. Gallery and Blogs – content left aligned */
.gallery-item .gallery-overlay {
    text-align: left;
}
.blog-card .blog-content {
    text-align: left;
}



/* ========== CONTACT FORM ========== */
.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 2.4rem;
    color: #1F3D2B;
    margin-bottom: 16px;
}
.gold-line {
    width: 80px;
    height: 3px;
    background: #CFAF5A;
    margin: 0 auto 20px;
    border-radius: 2px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #2E5B3F;
    max-width: 700px;
    margin: 0 auto;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fbf9f5;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid #e8e2d0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.form-group {
    flex: 1;
    min-width: 180px;
}
.form-group.full-width {
    width: 100%;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #1F3D2B;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4cdb8;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: white;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #CFAF5A;
    box-shadow: 0 0 0 3px rgba(207,175,90,0.2);
}
.submit-btn {
    background: #CFAF5A;
    color: #1F3D2B;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    width: auto;
    display: inline-block;
}
.submit-btn:hover {
    background: #D4B15F;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(207,175,90,0.2);
}
.form-response {
    margin-top: 16px;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 0;
    }
    .form-container {
        padding: 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    .submit-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}
@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }
}

/* ========== CHATBOT WIDGET – PROFESSIONAL ========== */
#chatbot-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999 !important;
    font-family: 'Inter', sans-serif;
    pointer-events: auto;
}

/* Chat toggle button */
.chatbot-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1F3D2B;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 60px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
    backdrop-filter: blur(0px);
    position: relative;
    z-index: 10000 !important;
}
.chatbot-toggle:hover {
    background: #2E5B3F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31,61,43,0.25);
}
.chatbot-toggle.active {
    background: #CFAF5A;
    color: #1F3D2B;
}
.chat-icon {
    stroke: white;
}
.chatbot-toggle.active .chat-icon {
    stroke: #1F3D2B;
}

/* Chat window - FIXED to viewport */
.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 360px;
    height: 520px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 10000 !important;
}
.chatbot-window.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Header */
.chatbot-header {
    background: #1F3D2B;
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.logo-icon {
    font-size: 1.2rem;
}
.title-text {
    font-size: 1rem;
}
.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    border-radius: 20px;
    transition: background 0.2s;
}
.chatbot-close:hover {
    background: rgba(255,255,255,0.15);
}

/* Messages area */
.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fafaf8;
}
.message {
    display: flex;
}
.message.user {
    justify-content: flex-end;
}
.message.bot {
    justify-content: flex-start;
}
.message-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-word;
}
.message.user .message-bubble {
    background: #1F3D2B;
    color: white;
    border-bottom-right-radius: 4px;
}
.message.bot .message-bubble {
    background: #e9e6dd;
    color: #1F3D2B;
    border-bottom-left-radius: 4px;
}

/* Typing indicator (dots) */
.message.bot.typing .message-bubble {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: #e9e6dd;
}
.dot {
    width: 6px;
    height: 6px;
    background: #1F3D2B;
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 1.2s infinite ease-in-out;
}
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
    0%, 60%, 100% { transform: scale(0.8); opacity: 0.5; }
    30% { transform: scale(1.2); opacity: 1; }
}

/* ========== HERO SECTION ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ========== PROFESSIONAL HERO SECTION WITH ANIMATIONS ========== */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 61, 43, 0.75) 0%, rgba(31, 61, 43, 0.55) 50%, rgba(31, 61, 43, 0.3) 100%);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: fadeInDown 0.8s ease-out 0.1s both;
    text-align: center;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: #CFAF5A;
    margin: 20px auto;
    border-radius: 2px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
    display: block;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    text-align: center;
}

/* ========== SPECIFIC HERO SECTIONS ========== */

/* About Hero */
.hero-about::before {
    background-attachment: initial;
}

/* Gallery Hero */
.hero-gallery::before {
    background-image: url('/public/images/Landscape/b.png');
    background-position: center 30%;
}

/* Blogs Hero */
.hero-blogs::before {
    background-attachment: initial;
}

.hero-blogs .hero-title,
.hero-blogs .hero-subtitle {
    color: #ffffff;
}

.hero-blogs .hero-overlay {
    background: linear-gradient(135deg, rgba(31, 61, 43, 0.75) 0%, rgba(31, 61, 43, 0.55) 50%, rgba(31, 61, 43, 0.3) 100%);
}

/* Contact Hero */
.hero-contact::before {
    background-image: url('/public/images/contact-header.jpg');
    background-position: center 40%;
}

/* Services Hero */
.hero-services::before {
    background-image: url('/public/images/LivingSpaces/b.JPG');
    background-position: center;
}

/* Areas Hero */
.hero-areas::before {
    background-image: url('/public/images/Patio/b.JPG');
    background-position: center 20%;
}

/* ========== RESPONSIVE HERO SECTIONS ========== */
@media (max-width: 992px) {
    .hero-section {
        min-height: 60vh;
        padding: 80px 0;
    }
    
    .hero-section::before {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 55vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-divider {
        margin: 15px auto;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-section .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 50vh;
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .hero-section .container {
        padding: 0 12px;
    }
}

/* Input area */
.chatbot-input-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid #e2dccf;
    background: white;
}
#chatbot-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #d4cdb8;
    border-radius: 40px;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: 0.2s;
}
#chatbot-input:focus {
    border-color: #CFAF5A;
    box-shadow: 0 0 0 2px rgba(207,175,90,0.2);
}
.chatbot-send {
    background: #CFAF5A;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}
.chatbot-send svg {
    stroke: #1F3D2B;
}
.chatbot-send:hover {
    background: #D4B15F;
    transform: scale(1.02);
}
.chatbot-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.chatbot-footer {
    padding: 8px 16px;
    text-align: center;
    font-size: 0.7rem;
    color: #8a7f6e;
    background: #fafaf8;
    border-top: 1px solid #f0ede5;
}

/* Responsive - Desktop & Tablet */
@media (max-width: 768px) {
    #chatbot-container {
        position: fixed !important;
        bottom: 16px !important;
        right: 16px !important;
        z-index: 9999 !important;
    }
    .chatbot-window {
        position: fixed !important;
        bottom: 70px !important;
        right: 16px !important;
        width: 320px;
        height: 450px;
        z-index: 10000 !important;
    }
    .chatbot-toggle {
        z-index: 10000 !important;
        padding: 10px 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    #chatbot-container {
        position: fixed !important;
        bottom: 16px !important;
        right: 16px !important;
        z-index: 9999 !important;
    }
    .chatbot-window {
        position: fixed !important;
        bottom: 70px !important;
        right: 16px !important;
        width: calc(100vw - 32px) !important;
        height: 480px;
        z-index: 10000 !important;
    }
    .chatbot-toggle {
        padding: 10px 16px;
        font-size: 0.8rem;
        z-index: 10000 !important;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN - FINAL OVERRIDES
   ============================================ */

/* ===== UNIVERSAL CONTAINER FIXES ===== */
body {
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

.container, section, main, div[class*="container"] {
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

.container {
    max-width: 1280px;
    margin: 0 auto !important;
    padding: 0 24px;
}

/* ===== DESKTOP (1024px & up) ===== */
@media (min-width: 1024px) {
    .container { max-width: 1280px; padding: 0 24px; }
    body { width: 100%; margin: 0 auto; }
}

/* ===== TABLET (769px to 1023px) ===== */
@media (min-width: 769px) and (max-width: 1023px) {
    .container { 
        max-width: 95%;
        margin: 0 auto !important;
        padding: 0 16px !important;
    }
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.2rem !important; }
    section { padding: 35px 0 !important; }
}

/* ===== MOBILE LARGE (481px to 768px) ===== */
@media (min-width: 481px) and (max-width: 768px) {
    * { 
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    html, body {
        width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 12px !important;
    }
    
    section { 
        width: 100% !important;
        padding: 24px 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    main {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.4rem !important; }
    h3 { font-size: 1.1rem !important; }
    
    .hero { min-height: 75vh; }
    .service-grid, .gallery-grid, .areas-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

/* ===== MOBILE SMALL (481px - 767px) ===== */
@media (min-width: 481px) and (max-width: 767px) {
    /* ===== RESET ALL ===== */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    html, body {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    body {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    /* ===== MAIN CONTAINER ===== */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 14px !important;
        box-sizing: border-box;
    }
}

/* ===== MOBILE PHONE (≤480px) - CRITICAL ===== */
@media (max-width: 480px) {
    /* ===== RESET ALL ===== */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    
    html, body {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    body {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    /* ===== MAIN CONTAINER ===== */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 10px !important;
        box-sizing: border-box;
    }
    
    main {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    section {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin: 0 !important;
        padding: 18px 0 !important;
        box-sizing: border-box;
    }
    
    .site-footer {
        width: 100% !important;
        margin: 0 !important;
        padding: 20px 0 !important;
    }
    
    /* ===== TYPOGRAPHY - MOBILE OPTIMIZED ===== */
    h1 { font-size: 1.3rem !important; line-height: 1.2; margin-bottom: 0.6rem; }
    h2 { font-size: 1rem !important; line-height: 1.2; margin-bottom: 0.6rem; }
    h3 { font-size: 0.9rem !important; margin-bottom: 0.4rem; }
    h4 { font-size: 0.85rem !important; }
    h5, h6 { font-size: 0.8rem !important; }
    
    p { font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.6rem; }
    
    .section-subtitle { font-size: 0.8rem !important; margin: 0 auto 0.8rem; }
    
    /* ===== BUTTONS ===== */
    .btn {
        padding: 9px 14px !important;
        font-size: 0.85rem !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
    }
    
    .btn-primary, .btn-outline {
        width: auto;
        padding: 9px 14px !important;
    }
    
    /* ===== GRIDS - ALL SINGLE COLUMN ===== */
    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .areas-grid,
    .blog-grid,
    .gallery-grid,
    .features-grid,
    .reasons {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }
    
    .contact-grid,
    .reviews-layout {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .hero-stats { gap: 0.6rem; flex-wrap: wrap; }
    
    .why-grid { grid-template-columns: 1fr !important; }
    
    .why-image { display: none; }
    
    /* ===== HERO SECTION ===== */
    .hero {
        min-height: 55vh;
        padding: 0;
    }
    
    .hero-content {
        max-width: 100% !important;
        padding: 1.5rem 0 1rem !important;
    }
    
    .hero-badge {
        font-size: 9px !important;
        padding: 3px 8px !important;
        margin-bottom: 0.6rem;
    }
    
    .hero-buttons {
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    
    /* ===== CARDS ===== */
    .service-card {
        border-radius: 12px;
    }
    
    .service-image {
        height: 120px;
    }
    
    .service-content {
        padding: 10px 8px 12px;
    }
    
    .service-content h3 { font-size: 0.9rem; }
    .service-content p { font-size: 0.75rem; }
    
    /* ===== GALLERY ===== */
    .gallery-item img {
        height: 180px !important;
    }
    
    .gallery-mini img {
        width: 100%;
        display: block;
        margin-bottom: 0.4rem;
    }
    
    /* ===== FORMS ===== */
    form {
        width: 100% !important;
    }
    
    form input,
    form select,
    form textarea {
        width: 100% !important;
        padding: 10px !important;
        margin-bottom: 8px !important;
        font-size: 0.95rem;
        border-radius: 6px;
    }
    
    /* ===== ROWS & COLUMNS ===== */
    .row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .col {
        width: 100% !important;
        min-width: 100% !important;
    }
    
    /* ===== ALERTS & MESSAGES ===== */
    .alert {
        padding: 12px 12px !important;
        margin: 0.8rem 0 !important;
        font-size: 0.9rem;
    }
    
    /* ===== FOOTER ===== */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    /* ===== MISC ===== */
    .text-center { text-align: center; }
}

/* ===== ULTRA SMALL DEVICES (≤360px) ===== */
@media (max-width: 360px) {
    .container { padding: 0 8px !important; }
    h1 { font-size: 1.1rem !important; }
    h2 { font-size: 0.95rem !important; }
    h3 { font-size: 0.85rem !important; }
    h4 { font-size: 0.8rem !important; }
    p { font-size: 0.8rem !important; }
    section { padding: 14px 0 !important; }
    .btn { padding: 8px 10px !important; font-size: 0.75rem !important; }
    .service-grid, .areas-grid, .blog-grid { gap: 5px !important; }
    .service-image { height: 100px; }
    .service-content { padding: 8px 6px 10px; }
    .service-content h3 { font-size: 0.8rem; }
    .service-content p { font-size: 0.7rem; }
}

/* ============================================
   PROFESSIONAL HAMBURGER ICON STYLING
   ============================================ */

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 8px;
    z-index: 1600;
    flex: 0 0 auto;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.hamburger:hover {
    background: rgba(31, 61, 43, 0.08);
}

.hamburger:active {
    background: rgba(31, 61, 43, 0.15);
}

.hamburger-box {
    width: 28px;
    height: 22px;
    display: inline-block;
    position: relative;
}

/* ===== HAMBURGER LINES ===== */
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 28px;
    height: 3px;
    background: #1F3D2B;
    border-radius: 3px;
    position: absolute;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hamburger-inner {
    top: 50%;
    margin-top: -1.5px;
}

.hamburger-inner::before {
    content: '';
    top: -9px;
    display: block;
}

.hamburger-inner::after {
    content: '';
    bottom: -9px;
    display: block;
}

/* ===== HAMBURGER ACTIVE STATE ===== */
.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
    background: #CFAF5A;
}

.hamburger.is-active .hamburger-inner::before {
    opacity: 0;
    transform: translateY(9px) rotate(0deg);
}

.hamburger.is-active .hamburger-inner::after {
    transform: translateY(-9px) rotate(-90deg);
    background: #CFAF5A;
}

/* ===== MOBILE HAMBURGER ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        padding: 10px;
    }
    
    .hamburger-box {
        width: 26px;
        height: 20px;
    }
    
    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 26px;
        height: 2.5px;
        background: #1F3D2B;
    }
    
    .hamburger-inner {
        top: 50%;
        margin-top: -1.25px;
    }
    
    .hamburger-inner::before {
        top: -8px;
    }
    
    .hamburger-inner::after {
        bottom: -8px;
    }
}

/* ===== ULTRA MOBILE (≤480px) ===== */
@media (max-width: 480px) {
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 8px;
        margin-right: 0;
    }
    
    .hamburger-box {
        width: 24px;
        height: 18px;
    }
    
    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 24px;
        height: 2.5px;
    }
    
    .hamburger-inner::before {
        top: -7px;
    }
    
    .hamburger-inner::after {
        bottom: -7px;
    }
}

/* ========== SERVICE DETAIL PAGE – ARTIFICIAL TURF ========== */

.service-detail {
    padding: 60px 0;
    background: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.service-hero {
    text-align: center;
    margin-bottom: 48px;
}
.service-hero h1 {
    font-size: 2.8rem;
    color: #1F3D2B;
    margin-bottom: 12px;
}
.subtitle {
    font-size: 1.2rem;
    color: #2E5B3F;
    margin-bottom: 20px;
}
.hero-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.hero-badge span {
    background: #fbf9f5;
    border: 1px solid #e8e2d0;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1F3D2B;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    filter: brightness(0.95) hue-rotate(100deg) saturate(1.2);
}

/* Overview Row */
.service-overview {
    margin: 48px 0;
}
.row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}
.col {
    flex: 1;
    min-width: 280px;
}
.col h2 {
    font-size: 1.8rem;
    color: #1F3D2B;
    margin-bottom: 20px;
}
.col p {
    font-size: 1rem;
    color: #2E5B3F;
    line-height: 1.6;
    margin-bottom: 16px;
}
.rounded {
    border-radius: 20px;
}
.shadow {
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.col img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Grid */
.service-features {
    margin: 60px 0;
}
.service-features h2 {
    text-align: center;
    font-size: 2rem;
    color: #1F3D2B;
    margin-bottom: 40px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature {
    background: #fbf9f5;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e8e2d0;
}
.feature:hover {
    transform: translateY(-6px);
    border-color: #CFAF5A;
    box-shadow: 0 12px 20px rgba(31,61,43,0.08);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    filter: brightness(1.1) hue-rotate(120deg) saturate(1.3) contrast(1.05);
    color: #3a9f5d;
}
.feature h3 {
    font-size: 1.3rem;
    color: #1F3D2B;
    margin-bottom: 12px;
}
.feature p {
    font-size: 0.9rem;
    color: #5a6b5e;
    line-height: 1.4;
}

/* Climate Section */
.climate-section {
    background: #fbf9f5;
    padding: 40px;
    border-radius: 24px;
    margin: 48px 0;
    border-left: 4px solid #CFAF5A;
}
.climate-section h2 {
    font-size: 1.8rem;
    color: #1F3D2B;
    margin-bottom: 16px;
}
.climate-section p {
    font-size: 1rem;
    color: #2E5B3F;
    margin-bottom: 20px;
}
.checklist {
    list-style: none;
    padding-left: 0;
}
.checklist li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #2E5B3F;
    display: flex;
    align-items: center;
    gap: 8px;
}
.checklist li::before {
    content: "✓";
    color: #3a9f5d;
    font-weight: bold;
}

/* Why Choose (Reasons) */
.why-choose {
    margin: 60px 0;
}
.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    color: #1F3D2B;
    margin-bottom: 40px;
}
.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.reason {
    background: white;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #e8e2d0;
    transition: 0.3s;
}
.reason:hover {
    transform: translateY(-5px);
    border-color: #CFAF5A;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: #3a9f5d;
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50%;
    line-height: 48px;
    margin-bottom: 16px;
}
.reason h3 {
    font-size: 1.2rem;
    color: #1F3D2B;
    margin-bottom: 12px;
}
.reason p {
    font-size: 0.9rem;
    color: #5a6b5e;
    line-height: 1.4;
}

/* Project Gallery */
.project-showcase {
    margin: 60px 0;
}
.project-showcase h2 {
    text-align: center;
    font-size: 2rem;
    color: #1F3D2B;
    margin-bottom: 32px;
}
.gallery-mini {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery-mini img {
    width: calc(33.33% - 14px);
    min-width: 200px;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.gallery-mini img:hover {
    transform: scale(1.02);
}

/* Call to Action Box */
.cta-box {
    background: #1F3D2B;
    text-align: center;
    padding: 48px 32px;
    border-radius: 32px;
    margin: 48px 0 0;
}
.cta-box h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 16px;
}
.cta-box p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 24px;
}
.btn-large {
    background: #CFAF5A;
    color: #1F3D2B;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}
.btn-large:hover {
    background: #D4B15F;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.cta-box .small {
    font-size: 0.85rem;
    margin-top: 16px;
    color: #cfd8cf;
}
.cta-box .small strong {
    color: #CFAF5A;
}

/* Responsive */
@media (max-width: 992px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }
    .row {
        flex-direction: column;
        gap: 24px;
    }
    .col img {
        max-width: 100%;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .reasons {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-mini img {
        width: calc(50% - 10px);
    }
}
@media (max-width: 768px) {
    .service-detail {
        padding: 30px 0;
    }
    .service-hero h1 {
        font-size: 1.6rem;
    }
    .hero-badge span {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .reasons {
        grid-template-columns: 1fr;
    }
    .climate-section {
        padding: 20px;
    }
    .gallery-mini img {
        width: 100%;
    }
    .cta-box {
        padding: 28px 18px;
    }
    .cta-box h3 {
        font-size: 1.3rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .service-hero h1 {
        font-size: 1.5rem;
    }
    .col h2 {
        font-size: 1.4rem;
    }
}

/* ========== BLOGS PAGE ========== */
.blogs-hero {
    background: #fbf9f5;
    padding: 60px 0;
    text-align: center;
}
.blogs-hero h1 {
    font-size: 2.5rem;
    color: #1F3D2B;
    margin-bottom: 12px;
}
.blogs-hero p {
    font-size: 1.1rem;
    color: #2E5B3F;
    max-width: 600px;
    margin: 0 auto 20px;
}
.blogs-hero .gold-line {
    width: 80px;
    height: 3px;
    background: #CFAF5A;
    margin: 0 auto;
    border-radius: 2px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin: 60px 0;
}
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid #e8e2d0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(31,61,43,0.15);
    border-color: #CFAF5A;
}
.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-card:hover .blog-image img {
    transform: scale(1.05);
}
.blog-content {
    padding: 20px 24px 28px;
}
.blog-date {
    font-size: 0.75rem;
    color: #7a9a82;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: inline-block;
}
.blog-content h2 {
    font-size: 1.3rem;
    color: #1F3D2B;
    margin-bottom: 12px;
    line-height: 1.3;
}
.blog-content p {
    font-size: 0.9rem;
    color: #5a6b5e;
    margin-bottom: 16px;
    line-height: 1.5;
}
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #CFAF5A;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: gap 0.2s;
}
.read-more:hover {
    gap: 10px;
    color: #D4B15F;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 40px 0 60px;
}
.pagination a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #e0d6c0;
    border-radius: 30px;
    text-decoration: none;
    color: #1F3D2B;
    font-weight: 500;
    transition: 0.2s;
}
.pagination a.active,
.pagination a:hover {
    background: #CFAF5A;
    border-color: #CFAF5A;
    color: #1F3D2B;
}

/* Newsletter */
.newsletter-section {
    background: #1F3D2B;
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    margin: 40px 0 80px;
}
.newsletter-section h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.newsletter-section p {
    color: #cfd8cf;
    margin-bottom: 24px;
}
.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 20px;
    border: none;
    border-radius: 60px;
    font-size: 0.9rem;
}
.newsletter-form button {
    background: #CFAF5A;
    color: #1F3D2B;
    border: none;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}
.newsletter-form button:hover {
    background: #D4B15F;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .blogs-hero {
        padding: 30px 0;
    }
    .blogs-hero h1 {
        font-size: 1.8rem;
    }
    .blog-grid {
        gap: 18px;
        margin: 30px 0;
    }
    .blog-image {
        height: 160px;
    }
    .blog-content h2 {
        font-size: 1rem;
    }
    .newsletter-section {
        padding: 24px 16px;
        margin-bottom: 40px;
    }
}

/* ========== BLOG POST DETAIL PAGE ========== */

/* Hero Section */
.blog-post-hero {
    background: linear-gradient(135deg, #fbf9f5 0%, #ffffff 100%);
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid #e8e2d0;
}
.blog-post-header h1 {
    font-size: 2.5rem;
    color: #1F3D2B;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #7a9a82;
    font-size: 0.85rem;
}
.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-meta span::before {
    content: "•";
    color: #CFAF5A;
}
.blog-meta span:first-child::before {
    display: none;
}

/* Main Content Layout */
.blog-post-content {
    padding: 60px 0;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.blog-post-main {
    flex: 2;
}
.blog-sidebar {
    flex: 1;
}
@media (min-width: 992px) {
    .blog-post-content .container {
        display: flex;
        gap: 48px;
        align-items: flex-start;
    }
}

/* Blog Post Image */
.blog-post-image {
    margin-bottom: 32px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Body Typography */
.post-body h2 {
    font-size: 1.8rem;
    color: #1F3D2B;
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #CFAF5A;
    display: inline-block;
}
.post-body p {
    font-size: 1rem;
    color: #2E5B3F;
    line-height: 1.7;
    margin-bottom: 20px;
}
.post-body ul, .post-body ol {
    margin: 20px 0;
    padding-left: 24px;
}
.post-body li {
    margin-bottom: 10px;
    color: #2E5B3F;
    line-height: 1.6;
}
.post-body li strong {
    color: #1F3D2B;
}
.post-body h3 {
    font-size: 1.4rem;
    color: #1F3D2B;
    margin: 24px 0 12px;
}

/* Blog CTA Box */
.blog-cta {
    background: #1F3D2B;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    margin: 48px 0 24px;
}
.blog-cta h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.blog-cta p {
    color: #cfd8cf;
    margin-bottom: 24px;
}
.blog-cta .btn-primary {
    background: #CFAF5A;
    color: #1F3D2B;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}
.blog-cta .btn-primary:hover {
    background: #D4B15F;
    transform: translateY(-2px);
}

/* Sidebar Widgets */
.blog-sidebar {
    background: #fbf9f5;
    border-radius: 24px;
    padding: 24px;
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    margin-bottom: 32px;
}
.sidebar-widget:last-child {
    margin-bottom: 0;
}
.sidebar-widget h4 {
    font-size: 1.2rem;
    color: #1F3D2B;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #CFAF5A;
    display: inline-block;
}
.sidebar-widget ul {
    list-style: none;
    padding: 0;
}
.sidebar-widget li {
    margin-bottom: 12px;
}
.sidebar-widget a {
    color: #2E5B3F;
    text-decoration: none;
    transition: 0.2s;
    display: block;
    padding: 4px 0;
}
.sidebar-widget a:hover {
    color: #CFAF5A;
    padding-left: 8px;
}

/* Blog Navigation */
.blog-navigation {
    padding: 40px 0 80px;
    border-top: 1px solid #e8e2d0;
}
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.nav-buttons .btn {
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
}
.btn-outline {
    border: 2px solid #CFAF5A;
    color: #CFAF5A;
    background: transparent;
}
.btn-outline:hover {
    background: #CFAF5A;
    color: #1F3D2B;
}
.btn-primary {
    background: #CFAF5A;
    color: #1F3D2B;
    border: none;
}
.btn-primary:hover {
    background: #D4B15F;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .blog-post-content .container {
        flex-direction: column;
        gap: 32px;
    }
    .blog-sidebar {
        position: static;
        width: 100%;
    }
    .blog-post-header h1 {
        font-size: 2rem;
    }
    .post-body h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .blog-post-hero {
        padding: 30px 0 20px;
    }
    .blog-post-header h1 {
        font-size: 1.5rem;
    }
    .blog-meta {
        gap: 10px;
        font-size: 0.7rem;
    }
    .blog-cta {
        padding: 20px;
    }
    .blog-cta h3 {
        font-size: 1.2rem;
    }
    .nav-buttons {
        gap: 10px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .post-body h2 {
        font-size: 1.3rem;
    }
}
/* ========== CERTIFICATIONS FOOTER ========== */
.cert-footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e8e2d0;
}
.cert-footer p {
    font-size: 1rem;
    color: #2E5B3F;
    margin-bottom: 20px;
    line-height: 1.5;
}
.cert-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #CFAF5A;
    color: #1F3D2B;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #CFAF5A;
}
.cert-cta-btn i {
    font-size: 0.9rem;
    transition: transform 0.2s;
}
.cert-cta-btn:hover {
    background: #D4B15F;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(207,175,90,0.2);
    border-color: #D4B15F;
}
.cert-cta-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .cert-footer {
        margin-top: 32px;
        padding-top: 24px;
    }
    .cert-footer p {
        font-size: 0.9rem;
        padding: 0 16px;
    }
    .cert-cta-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .cert-cta-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}
/* ========== CERTIFICATIONS SECTION (4 IMAGE CARDS) ========== */
.certifications-section {
    padding: 80px 0;
    background: #ffffff;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: 2.4rem;
    color: #1F3D2B;
    margin-bottom: 16px;
}
.gold-line {
    width: 80px;
    height: 3px;
    background: #CFAF5A;
    margin: 0 auto 20px;
    border-radius: 2px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #2E5B3F;
    max-width: 650px;
    margin: 0 auto;
}

/* Grid: 4 columns on desktop, 2 on mobile */
.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

/* Card styling – only image, rounded corners */
.cert-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #e8e2d0;
}
.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(31,61,43,0.15);
    border-color: #CFAF5A;
}
.cert-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}
.cert-card:hover img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 992px) {
    .certs-grid {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .certifications-section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}
/* ========== ADD REVIEW – CENTERED BUTTON BELOW TEXT ON DESKTOP ========== */
.add-review-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid #e8e2d0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 500px;        /* optional: limits width on desktop */
}

/* Desktop: ensure button is centered below text */
@media (min-width: 769px) {
    .add-review-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 28px;
    }
    .review-text {
        text-align: center;
        width: 100%;
    }
    .review-text h4 {
        margin-bottom: 8px;
    }
    .review-text p {
        margin-bottom: 24px;
    }
    .review-cta {
        display: inline-flex;
        margin: 0 auto;
    }
}

/* Mobile (max-width: 768px) – already perfect, keep as is */
@media (max-width: 768px) {
    .add-review-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .review-text {
        text-align: center;
        width: 100%;
    }
    .review-text p {
        margin-bottom: 20px;
    }
    .review-cta {
        display: inline-flex;
        margin: 0 auto;
    }
}

/* Common styles – unchanged */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.review-text h4 {
    font-size: 1.3rem;
    color: #1F3D2B;
    font-weight: 700;
    margin-bottom: 8px;
}
.review-text p {
    font-size: 0.9rem;
    color: #5a6b5e;
    line-height: 1.4;
    margin-bottom: 20px;
}
.review-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #CFAF5A;
    color: #1F3D2B;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: 1px solid #CFAF5A;
    white-space: nowrap;
}
.review-cta:hover {
    background: #D4B15F;
    transform: translateY(-2px);
    gap: 12px;
}
.add-review-card:hover {
    transform: translateY(-4px);
    border-color: #CFAF5A;
    box-shadow: 0 12px 24px rgba(31,61,43,0.08);
}
/* ========== CONTACT PAGE – TWO COLUMNS ========== */
.contact-page {
    padding: 60px 0;
    background: #ffffff;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Card – Contact Info */
.contact-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e8e2d0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.contact-info-card h2 {
    font-size: 1.6rem;
    color: #1F3D2B;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}
.contact-info-card h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #CFAF5A;
    margin-top: 8px;
    border-radius: 2px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.info-icon {
    font-size: 1.4rem;
    min-width: 32px;
    color: #CFAF5A;
}
.info-item strong {
    color: #1F3D2B;
}
.info-item a {
    color: #2E5B3F;
    text-decoration: none;
}
.info-item a:hover {
    color: #CFAF5A;
}
.info-item div {
    line-height: 1.5;
    color: #2E5B3F;
}

/* Social Links (inside left card) */
.contact-social-block {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid #e8e2d0;
}
.contact-social-block h3 {
    font-size: 1.1rem;
    color: #1F3D2B;
    margin-bottom: 16px;
    font-weight: 600;
}
.contact-social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.contact-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #F8F6F0;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #1F3D2B;
    border: 1px solid #e0d8c8;
}
.contact-social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.contact-social-icon:hover {
    background: #CFAF5A;
    color: #ffffff;
    border-color: #CFAF5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(207,175,90,0.2);
}
.contact-social-icon:focus {
    outline: none;
    box-shadow: 0 0 0 2px #1F3D2B, 0 0 0 4px #CFAF5A;
}

/* Right Card – Contact Form */
.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e8e2d0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.contact-form-card h2 {
    font-size: 1.6rem;
    color: #1F3D2B;
    margin-bottom: 8px;
}
.contact-form-card p {
    color: #5a6b5e;
    margin-bottom: 24px;
}
.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #d4cdb8;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    background: white;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: #CFAF5A;
    box-shadow: 0 0 0 3px rgba(207,175,90,0.2);
}
.btn-block {
    width: 100%;
    background: #CFAF5A;
    color: #1F3D2B;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
}
.btn-block:hover {
    background: #D4B15F;
    transform: translateY(-1px);
}
.form-response {
    margin-top: 16px;
    font-size: 0.9rem;
    text-align: center;
}
.small {
    font-size: 0.75rem;
    color: #7a9a82;
    text-align: center;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }
    .contact-social-icons {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .contact-social-icon {
        width: 38px;
        height: 38px;
    }
    .contact-social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* ========== TESTIMONIALS SECTION ========== */
/* ── Variables ── */
:root {
    --green-dark:  #1F3D2B;
    --green-mid:   #2E5B3F;
    --green-light: #4A7C5F;
    --gold:        #CFAF5A;
    --gold-bg:     rgba(207, 175, 90, 0.10);
    --gold-border: rgba(207, 175, 90, 0.28);
    --card-border: #E8E2D0;
    --white:       #ffffff;
    --off-white:   #F9F7F3;
}

/* ── Section ── */
.testimonials-section {
    padding: 80px 0 60px;
    background: var(--white);
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Header ── */
.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
    line-height: 1.15;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto 18px;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    display: block;
    width: 36px;
    height: 1.5px;
    background: var(--gold-border);
}

.gold-divider::after {
    content: '◆';
    width: auto;
    height: auto;
    background: none;
    font-size: 7px;
    color: var(--gold);
    line-height: 1;
}

.gold-divider::before {
    content: '';
}

.section-subtitle {
    font-size: 1rem;
    color: var(--green-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Grid ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 22px;
}

/* ── Card ── */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-border);
    box-shadow: 0 16px 40px -10px rgba(31, 61, 43, 0.13);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stars {
    font-size: 0.95rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--green-mid);
    line-height: 1.75;
    flex-grow: 1;
    margin: 0;
}

/* ── Card Footer ── */
.card-footer {
    display: flex;
    align-items: center;
    gap: 11px;
    padding-top: 14px;
    border-top: 1px solid var(--card-border);
    flex-wrap: wrap;
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-dark);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-tag {
    font-size: 0.67rem;
    font-weight: 600;
    color: #8B6E2E;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    padding: 3px 9px;
    border-radius: 30px;
    white-space: nowrap;
    display: inline-block;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.67rem;
    color: var(--green-light);
    font-weight: 500;
    white-space: nowrap;
    margin-left: auto;
}

/* ── Add Review Card ── */
.add-review-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--green-dark);
    border-radius: 18px;
    padding: 26px 32px;
    flex-wrap: wrap;
}

.review-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(207, 175, 90, 0.12);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-text {
    flex: 1;
    min-width: 160px;
}

.review-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 4px;
}

.review-text p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

.review-cta {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.83rem;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.review-cta:hover {
    background: #dbbe6a;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 56px 0 40px;
    }
    .container {
        padding: 0 16px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .testimonial-card {
        padding: 20px 18px 18px;
        border-radius: 14px;
    }
    .section-header {
        margin-bottom: 36px;
    }
    .add-review-card {
        padding: 20px 18px;
        border-radius: 14px;
        gap: 14px;
    }
    .review-icon {
        display: none;
    }
}

@media (min-width: 370px) and (max-width: 600px) {
    .testimonial-card {
        border-radius: 14px;
    }
    .card-footer {
        gap: 9px;
    }
    .verified {
        margin-left: 0;
        width: 100%;
    }
}

/* ========== HERO SECTION – DESKTOP: EXTENDED DARK GRADIENT ========== */
.hero {
    position: relative;
    min-height: 92vh;
    background-image: url('/public/images/heroo.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #1F3D2B;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Desktop: Gradient covers ~85% of width, fades smoothly */
@media (min-width: 769px) {
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 85%;
        height: 100%;
        background: linear-gradient(
            90deg,
            #1F3D2B 0%,
            rgba(31, 61, 43, 0.95) 20%,
            rgba(31, 61, 43, 0.75) 45%,
            rgba(31, 61, 43, 0.4) 70%,
            transparent 100%
        );
        z-index: 1;
        pointer-events: none;
    }
}

/* Mobile: full‑screen gradient overlay */
@media (max-width: 768px) {
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            135deg,
            rgba(31, 61, 43, 0.85) 0%,
            rgba(31, 61, 43, 0.65) 50%,
            rgba(31, 61, 43, 0.4) 80%,
            transparent 100%
        );
        z-index: 1;
        pointer-events: none;
    }
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-wrapper {
    max-width: 680px;
}

.hero-content {
    padding: 80px 0 70px;
}

/* Badge, heading, paragraph, buttons – same as before */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(207, 175, 90, 0.18);
    border: 1px solid rgba(207, 175, 90, 0.5);
    color: #CFAF5A;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 6px 16px;
    border-radius: 60px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero-badge span {
    color: #D4B15F;
    font-size: 0.9rem;
}

.hero-content h1 {
    font-family: 'Inter', 'Georgia', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-align: left;
}
.hero-content h1 em {
    font-style: normal;
    color: #CFAF5A;
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
    cursor: pointer;
}
.btn-primary {
    background: #D4B15F;
    color: #1F3D2B;
    border: 2px solid #D4B15F;
}
.btn-primary:hover {
    background: #CFAF5A;
    border-color: #CFAF5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(207, 175, 90, 0.3);
}
.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
    border-color: #CFAF5A;
    color: #CFAF5A;
    background: rgba(207, 175, 90, 0.1);
    transform: translateY(-2px);
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
    }
    .hero-wrapper {
        text-align: center;
    }
    .hero-content h1,
    .hero-content p,
    .hero-buttons {
        text-align: center;
        justify-content: center;
    }
    .hero-content {
        padding: 50px 0 40px;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   HERO SECTION ALIGNMENT - CENTERED PAGES
   ============================================ */

/* About Page Hero - Center Alignment */
.about-hero {
    text-align: center;
}
.about-hero-content h1 {
    text-align: center;
}
.about-hero-content .gold-line {
    margin: 16px auto;
}
.about-hero-content p {
    text-align: center;
}

/* Gallery Hero - Already Centered (Verify) */
.gallery-hero {
    text-align: center;
}
.gallery-hero-content h1 {
    text-align: center;
}
.gallery-hero-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Blog/Blogs Hero - Center Alignment */
.blogs-hero,
.blog-hero {
    text-align: center;
}
.blogs-hero h1,
.blog-hero h1 {
    text-align: center;
}
.blogs-hero-content h1,
.blog-hero-content h1 {
    text-align: center;
}
.blogs-hero p,
.blog-hero p,
.blogs-hero-content p,
.blog-hero-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Hero - Center Alignment */
.contact-hero,
.contact-form-section {
    text-align: center;
}
.contact-hero h1 {
    text-align: center;
}
.contact-form-section .section-header h2 {
    text-align: center;
}
.contact-form-section .section-header {
    text-align: center;
}
.contact-form-section h2 {
    text-align: center;
}
        margin-right: auto;
    
    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* ========== ABOUT HERO ========== */
.about-hero {
    background: linear-gradient(135deg, #1F3D2B 0%, #2E5B3F 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}
.about-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}
.gold-line {
    width: 80px;
    height: 3px;
    background: #CFAF5A;
    margin: 0 auto 20px;
    border-radius: 2px;
}
.lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== ABOUT MAIN SECTION (TWO COLUMNS) ========== */
.about-us-section {
    padding: 80px 0;
    background: #ffffff;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ----- LEFT COLUMN (TEXT) ----- */
.about-intro p {
    font-size: 1rem;
    color: #2E5B3F;
    line-height: 1.65;
    margin-bottom: 24px;
}
.mission-container {
    background: #F8F6F0;
    border-left: 5px solid #CFAF5A;
    padding: 28px 30px;
    border-radius: 20px;
    margin: 40px 0;
}
.mission-container h3 {
    font-size: 1.6rem;
    color: #1F3D2B;
    margin-bottom: 12px;
    font-weight: 700;
}
.mission-container p {
    font-size: 1rem;
    color: #2E5B3F;
    line-height: 1.55;
}
.values-container h3 {
    font-size: 1.6rem;
    color: #1F3D2B;
    margin-bottom: 28px;
    font-weight: 700;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.value-card {
    background: #ffffff;
    border: 1px solid #EAE3D4;
    border-radius: 24px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.value-card:hover {
    transform: translateY(-6px);
    border-color: #CFAF5A;
    box-shadow: 0 20px 30px -12px rgba(31,61,43,0.12);
}
.value-icon {
    font-size: 2.4rem;
    display: inline-block;
    margin-bottom: 16px;
}
.value-card h4 {
    font-size: 1.2rem;
    color: #1F3D2B;
    margin-bottom: 10px;
    font-weight: 700;
}
.value-card p {
    font-size: 0.85rem;
    color: #5A6B5E;
    line-height: 1.45;
}

/* ----- RIGHT COLUMN (IMAGE & STATS) ----- */
.about-image-col {
    position: sticky;
    top: 100px;
}
.about-logo-wrapper {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #1F3D2B 0%, #2E5B3F 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 15px 25px -8px rgba(0,0,0,0.12);
}
.about-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
}
.about-image-wrapper {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.15);
    margin-bottom: 28px;
}
.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}
.about-img:hover {
    transform: scale(1.02);
}
.stats-box {
    background: #F8F6F0;
    border-radius: 24px;
    padding: 28px 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border: 1px solid #EAE3D4;
}
.stat-item {
    flex: 1;
}
.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #CFAF5A;
    line-height: 1.2;
    margin-bottom: 5px;
}
.stat-label {
    font-size: 0.75rem;
    color: #7A9A82;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
}

/* ========== RESPONSIVE (TABLET & MOBILE) ========== */
@media (max-width: 992px) {
    .about-grid {
        gap: 40px;
    }
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    .values-grid {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-col {
        position: static;
        order: -1;  /* image appears above text on mobile (optional) – remove if you want text first */
    }
    .about-logo-wrapper {
        padding: 30px;
        margin-bottom: 24px;
    }
    .about-logo {
        max-width: 220px;
    }
    .about-hero {
        padding: 50px 0 40px;
    }
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    .lead {
        font-size: 1rem;
    }
    .mission-container {
        padding: 20px;
        margin: 30px 0;
    }
    .mission-container h3 {
        font-size: 1.4rem;
    }
    .values-container h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    .values-grid {
        gap: 16px;
    }
    .value-card {
        padding: 18px 12px;
    }
    .value-icon {
        font-size: 1.8rem;
    }
    .value-card h4 {
        font-size: 1rem;
    }
    .value-card p {
        font-size: 0.75rem;
    }
    .stats-box {
        padding: 20px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .values-grid {
        gap: 12px;
    }
    .value-card {
        padding: 14px 8px;
    }
}

/* ========== REVIEWS PAGE ========== */


/* Two‑column layout */
.reviews-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin: 60px 0;
}

/* Left column – existing reviews */
.reviews-list-section h2 {
    font-size: 1.6rem;
    color: #1F3D2B;
    margin-bottom: 24px;
    position: relative;
}
.reviews-list-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #CFAF5A;
    margin-top: 8px;
    border-radius: 2px;
}
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review-item {
    background: #ffffff;
    border: 1px solid #e8e2d0;
    border-radius: 20px;
    padding: 20px;
    transition: all 0.2s;
}
.review-item:hover {
    border-color: #CFAF5A;
    box-shadow: 0 6px 14px rgba(31,61,43,0.05);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F3D2B;
}
.review-stars {
    color: #CFAF5A;
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.review-comment {
    font-size: 0.9rem;
    color: #2E5B3F;
    line-height: 1.5;
    margin-bottom: 12px;
}
.review-date {
    font-size: 0.7rem;
    color: #7a9a82;
}

/* Right column – form + live preview */
.review-form-container {
    background: #ffffff;
    border: 1px solid #e8e2d0;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.review-form-container h2 {
    font-size: 1.6rem;
    color: #1F3D2B;
    margin-bottom: 8px;
}
.review-form-container > p {
    color: #5a6b5e;
    margin-bottom: 24px;
}
#reviewForm input,
#reviewForm textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid #d4cdb8;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: 0.2s;
}
#reviewForm input:focus,
#reviewForm textarea:focus {
    outline: none;
    border-color: #CFAF5A;
    box-shadow: 0 0 0 3px rgba(207,175,90,0.2);
}
.rating-input {
    margin-bottom: 16px;
}
.rating-input label {
    display: block;
    font-weight: 600;
    color: #1F3D2B;
    margin-bottom: 8px;
}
.star-rating {
    display: inline-flex;
    gap: 5px;
    cursor: pointer;
}
.star-rating span {
    font-size: 1.8rem;
    color: #ccc;
    transition: color 0.2s;
}
.star-rating span.selected,
.star-rating span:hover {
    color: #CFAF5A;
}

.form-response {
    margin-top: 16px;
    text-align: center;
    font-size: 0.85rem;
}

/* Live Preview */
.review-preview {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8e2d0;
}
.review-preview h3 {
    font-size: 1rem;
    color: #1F3D2B;
    margin-bottom: 16px;
    font-weight: 600;
}
.preview-card {
    background: #F8F6F0;
    border-radius: 20px;
    padding: 16px 20px;
    border-left: 4px solid #CFAF5A;
}
.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.preview-name {
    font-weight: 700;
    color: #1F3D2B;
}
.preview-stars {
    color: #CFAF5A;
    font-size: 0.9rem;
}
.preview-comment {
    font-size: 0.85rem;
    color: #2E5B3F;
    margin: 8px 0;
    font-style: italic;
}
.preview-date {
    font-size: 0.7rem;
    color: #7a9a82;
}

/* Average Rating Summary */
.average-rating {
    text-align: center;
    background: #F8F6F0;
    border-radius: 24px;
    padding: 32px;
    margin: 40px 0 60px;
    border: 1px solid #e8e2d0;
}
.average-rating h3 {
    font-size: 1.4rem;
    color: #1F3D2B;
    margin-bottom: 12px;
}
.stars {
    font-size: 2rem;
    color: #CFAF5A;
    letter-spacing: 4px;
    margin-bottom: 8px;
}
#avgRating {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1F3D2B;
}
#totalReviews {
    font-weight: 600;
    color: #CFAF5A;
}

/* Loading & error states */
.loading {
    text-align: center;
    padding: 40px;
    color: #7a9a82;
}
.error {
    color: #c0392b;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-layout {
        gap: 32px;
    }
    .reviews-hero h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 40px 0;
    }
    .review-form-container {
        order: 2;
    }
    .reviews-list-section {
        order: 1;
    }
    .reviews-hero {
        padding: 40px 0;
    }
    .reviews-hero h1 {
        font-size: 1.8rem;
    }
    .reviews-hero p {
        font-size: 1rem;
    }
    .average-rating {
        padding: 24px;
        margin: 20px 0 40px;
    }
    .stars {
        font-size: 1.5rem;
    }
    .preview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .review-form-container {
        padding: 20px;
    }
    .star-rating span {
        font-size: 1.5rem;
    }
}

/* ========== SERVICES SECTION ========== */
*{box-sizing:border-box;margin:0;padding:0}

.svc {
    padding: 60px 0;
    background: #fff;
    font-family: sans-serif;
}
.cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.s-head {
    text-align: center;
    margin-bottom: 48px;
}
.s-head h2 {
    font-size: 2.2rem;
    color: #1F3D2B;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2;
}
.s-sub {
    font-size: 1rem;
    color: #2E5B3F;
    max-width: 620px;
    margin: 0 auto 18px;
    line-height: 1.6;
}
.gold-bar {
    width: 72px;
    height: 3px;
    background: #CFAF5A;
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* Card */
.card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f0eadd;
    background: #fff;
    transition: transform .3s, box-shadow .3s;
    position: relative;
    cursor: pointer;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px -10px rgba(31,61,43,.13);
    border-color: rgba(207,175,90,.35);
}

/* Image */
.img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}
.card:hover .img-wrap img {
    transform: scale(1.05);
}

/* Overlay – text & button on image */
.overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 18px 18px;
    background: linear-gradient(to top, rgba(15,35,20,.82) 0%, rgba(15,35,20,.45) 55%, transparent 100%);
}
.overlay h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}
.overlay p {
    color: rgba(255,255,255,.82);
    font-size: 0.78rem;
    margin-bottom: 12px;
    line-height: 1.4;
}
.btn {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(207,175,90,.15);
    border: 1px solid rgba(207,175,90,.7);
    color: #CFAF5A;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: background .2s, color .2s;
    letter-spacing: .02em;
}
.btn:hover {
    background: #CFAF5A;
    color: #1F3D2B;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .svc { padding: 32px 0; }
    .cont { padding: 0 16px; }
    .s-head { margin-bottom: 24px; }
    .s-head h2 { font-size: 1.4rem; }
    .s-sub { font-size: 0.85rem; }

    .grid {
        grid-template-columns: 1fr;   /* ✅ 1 card per row */
        gap: 14px;
        margin-top: 20px;
    }

    .img-wrap { height: 200px; }      /* ✅ badi image, attractive lagti hai */

    .overlay { padding: 18px 16px 16px; }
    .overlay h3 { font-size: 1rem; margin-bottom: 4px; }
    .overlay p { font-size: 0.8rem; margin-bottom: 10px; }
    .btn { padding: 7px 18px; font-size: 0.78rem; }
}

/* ========== AREAS SERVED ========== */
.areas { padding: 70px 0; background: linear-gradient(135deg, #f0f5f2 0%, #e8f1ec 100%); font-family: sans-serif; }
.acont { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.a-head { text-align: center; margin-bottom: 48px; }
.a-head h2 { font-size: 2.2rem; color: #1F3D2B; margin-bottom: 12px; font-weight: 700; line-height: 1.2; }
.a-sub { font-size: 1rem; color: #2E5B3F; max-width: 620px; margin: 0 auto; line-height: 1.6; }
.gold-bar { width: 72px; height: 3px; background: #CFAF5A; margin: 0 auto 16px; border-radius: 2px; }

/* Grid */
.a-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }

/* Card */
.a-card { border-radius: 16px; overflow: hidden; border: 1px solid #d4e5dd; background: linear-gradient(135deg, #f5f9f7 0%, #f0f5f2 100%); transition: transform .3s, box-shadow .3s; position: relative; cursor: pointer; text-decoration: none; display: block; }
.a-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px -10px rgba(31,61,43,.14); border-color: rgba(207,175,90,.4); }

/* Image */
.a-img { position: relative; height: 230px; overflow: hidden; }
.a-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.a-card:hover .a-img img { transform: scale(1.06); }

/* Overlay */
.a-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 18px 18px; background: linear-gradient(to top, rgba(10,28,16,.88) 0%, rgba(10,28,16,.5) 55%, transparent 100%); }
.a-overlay h3 { color: #fff; font-size: 1.08rem; font-weight: 700; margin-bottom: 5px; }
.a-overlay p { color: rgba(255,255,255,.8); font-size: 0.78rem; margin-bottom: 12px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.a-btn { display: inline-block; padding: 6px 16px; background: rgba(207,175,90,.15); border: 1px solid rgba(207,175,90,.75); color: #CFAF5A; font-size: 0.74rem; font-weight: 700; border-radius: 20px; letter-spacing: .02em; transition: background .2s, color .2s; }
.a-card:hover .a-btn { background: #CFAF5A; color: #1F3D2B; }

/* Footer */
.a-footer { text-align: center; margin-top: 44px; padding-top: 28px; border-top: 1px solid #e8e2d0; }
.a-footer p { color: #2E5B3F; font-size: 0.95rem; margin-bottom: 18px; }
.a-cta { display: inline-block; padding: 11px 30px; background: #CFAF5A; color: #1F3D2B; font-weight: 700; font-size: 0.9rem; border-radius: 8px; text-decoration: none; transition: background .2s, transform .2s; }
.a-cta:hover { background: #D4B15F; transform: translateY(-2px); }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
    .a-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
    .areas { padding: 36px 0; }
    .acont { padding: 0 14px; }
    .a-head { margin-bottom: 26px; }
    .a-head h2 { font-size: 1.4rem; }
    .a-sub { font-size: 0.84rem; }
    .a-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
    .a-img { height: 210px; }
    .a-overlay { padding: 20px 16px 16px; }
    .a-overlay h3 { font-size: 1rem; margin-bottom: 5px; }
    .a-overlay p { font-size: 0.8rem; margin-bottom: 11px; }
    .a-btn { padding: 7px 18px; font-size: 0.78rem; }
}

/* ========== SERVICE HERO SECTION (e.g., Landscape Architect) ========== */
.service-hero {
    text-align: center;
    padding: 60px 20px 50px;
    background: linear-gradient(135deg, #FEFCF8 0%, #F8F6F0 100%);
    border-bottom: 1px solid #e8e2d0;
    margin-bottom: 40px;
}
.service-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1F3D2B;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.subtitle {
    font-size: 1.2rem;
    color: #2E5B3F;
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.4;
}
.hero-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}
.hero-badge span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(207, 175, 90, 0.12);
    border: 1px solid rgba(207, 175, 90, 0.3);
    color: #1F3D2B;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 60px;
    backdrop-filter: blur(2px);
    transition: all 0.2s;
}
.hero-badge span:hover {
    background: #CFAF5A;
    color: white;
    border-color: #CFAF5A;
    transform: translateY(-2px);
}
/* Optional gold line under heading */
.service-hero h1::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #CFAF5A;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {
    .service-hero {
        padding: 40px 16px 30px;
    }
    .service-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .service-hero h1::after {
        width: 50px;
        margin-top: 14px;
    }
    .subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 8px;
    }
    .hero-badge {
        gap: 10px;
    }
    .hero-badge span {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}
/* ===== VERY SMALL (≤480px) ===== */
@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 1.5rem;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .hero-badge span {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
}
.hero-title {
    text-align: center !important;
}

/* ========== ABOUT BRENT V2 – NO ICONS, PREMIUM ========== */
/* ========== ABOUT BRENT – UNIQUE CLASSES (NO CONFLICTS) ========== */
.ab-section {
    padding: 80px 0;
    background: #ffffff;
}
.ab-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Intro Row (text left, image right) */
.ab-intro-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.ab-intro-text {
    flex: 1.2;
}
.ab-intro-text h2 {
    font-size: 2.2rem;
    color: #1F3D2B;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}
.ab-intro-text h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #CFAF5A;
    margin-top: 8px;
    border-radius: 3px;
}
.ab-intro-text p {
    font-size: 1rem;
    line-height: 1.65;
    color: #2E5B3F;
}
.ab-intro-image {
    flex: 0.8;
    text-align: right;
}
.ab-intro-image img {
    max-width: 280px;
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}
.ab-intro-image img:hover {
    transform: scale(1.02);
}

/* Expertise Section */
.ab-expertise {
    margin: 70px 0;
}
.ab-expertise h3 {
    font-size: 1.8rem;
    color: #1F3D2B;
    margin-bottom: 12px;
}
.ab-expertise-desc {
    font-size: 1rem;
    color: #5a6b5e;
    margin-bottom: 32px;
}
.ab-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.ab-expertise-chip {
    background: #F8F6F0;
    border-radius: 40px;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #1F3D2B;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid #e8e2d0;
}
.ab-expertise-chip:hover {
    background: white;
    border-color: #CFAF5A;
    transform: translateX(5px);
}

/* Two Column Cards */
.ab-cols-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 60px 0;
}
.ab-card {
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    border: 1px solid #e8e2d0;
    transition: all 0.3s;
}
.ab-card:hover {
    transform: translateY(-5px);
    border-color: #CFAF5A;
    box-shadow: 0 20px 30px -12px rgba(31,61,43,0.12);
}
.ab-card h3 {
    font-size: 1.5rem;
    color: #1F3D2B;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}
.ab-card h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #CFAF5A;
    margin-top: 8px;
    border-radius: 2px;
}
.ab-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #2E5B3F;
}

/* Full Width Cards */
.ab-card-full {
    background: white;
    border-radius: 28px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    border: 1px solid #e8e2d0;
    transition: all 0.3s;
}
.ab-card-full:hover {
    transform: translateY(-4px);
    border-color: #CFAF5A;
}
.ab-card-full h3 {
    font-size: 1.5rem;
    color: #1F3D2B;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}
.ab-card-full h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #CFAF5A;
    margin-top: 8px;
    border-radius: 2px;
}
.ab-card-full p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #2E5B3F;
}
.ab-card-accent {
    background: #FEFCF8;
    border-left: 5px solid #CFAF5A;
}

/* Call to Action */
.ab-cta {
    text-align: center;
    background: linear-gradient(135deg, #1F3D2B 0%, #2E5B3F 100%);
    border-radius: 36px;
    padding: 52px 32px;
    margin-top: 70px;
}
.ab-cta p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.ab-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #CFAF5A;
    color: #1F3D2B;
    border: none;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}
.ab-btn-primary:hover {
    background: #D4B15F;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .ab-intro-row {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .ab-intro-text h2::after {
        margin-left: auto;
        margin-right: auto;
    }
    .ab-intro-image {
        text-align: center;
    }
    .ab-intro-image img {
        max-width: 240px;
    }
    .ab-cols-two {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ab-expertise-grid {
        grid-template-columns: 1fr;
    }
    .ab-card, .ab-card-full {
        padding: 24px;
    }
    .ab-card h3, .ab-card-full h3 {
        font-size: 1.3rem;
    }
    .ab-cta {
        padding: 36px 20px;
    }
    .ab-cta p {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .ab-container {
        padding: 0 16px;
    }
    .ab-intro-text h2 {
        font-size: 1.8rem;
    }
    .ab-intro-text p {
        font-size: 0.95rem;
    }
    .ab-expertise h3 {
        font-size: 1.4rem;
    }
    .ab-expertise-chip {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    .ab-card h3, .ab-card-full h3 {
        font-size: 1.2rem;
    }
    .ab-btn-primary {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}
@media (max-width: 370px) {
    .ab-intro-image img {
        max-width: 200px;
    }
    .ab-expertise-chip {
        font-size: 0.8rem;
    }
    .ab-btn-primary {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}