/* ============================================
   DANJUKA SUPPLIERS LTD - COMPLETE STYLESHEET
   ============================================ */

/* --- GLOBAL STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

/* --- NAVIGATION --- */
.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    z-index: 1000;
    top: 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.brand-logo img {
    height: 200px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2d7a3e;
}

.nav-links a.active {
    color: #2d7a3e;
    font-weight: 600;
}

/* ============================================
   PRELOADER - ELEGANT SPINNER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease;
}

/* The spinning ring around the logo */
.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #2d7a3e;
    border-right-color: #2d7a3e;
    animation: spin 1.5s linear infinite;
}

.spinner-ring::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #5c4033;
    border-left-color: #5c4033;
    animation: spin 2s linear infinite reverse;
}

.preloader-logo {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preloader-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #333;
    text-transform: uppercase;
    white-space: nowrap;
    animation: fadeIn 1s ease 0.3s both;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .preloader-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .preloader-logo {
        width: 80px;
        height: 80px;
    }
    
    .preloader-text {
        font-size: 12px;
        letter-spacing: 3px;
        bottom: -35px;
    }
    
    .spinner-ring {
        border-width: 2px;
    }
    
    .spinner-ring::before {
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .preloader-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .preloader-logo {
        width: 70px;
        height: 70px;
    }
    
    .preloader-text {
        font-size: 10px;
        letter-spacing: 2px;
        bottom: -30px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
    z-index: 1001;
}

.hamburger:focus {
    outline: none;
}

/* Price Button in Nav */
.nav-price-btn {
    background: #2d7a3e;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-price-btn:hover {
    background: #1a4d2e;
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(255,255,255,0.3), rgba(255,255,255,0.3)), url('BG.jpeg') center/cover no-repeat;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-bottom: 80px; 
}

.hero h1 {
    color: #1a4d2e;
    font-size: 48px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.9);
    max-width: 800px;
    line-height: 1.2;
}

/* --- CORE PILLARS --- */
.pillars-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding-bottom: 60px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pillar-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.icon-truck { color: #2d7a3e; } 
.icon-handshake { color: #5c4033; } 
.icon-award { color: #2d7a3e; } 

.pillar-card h3 {
    color: #5c4033; 
    font-size: 22px;
    margin-bottom: 10px;
}

.pillar-card p {
    color: #666;
    font-size: 14px;
}

/* ============================================
   SERVICES MARQUEE BANNER STRIDES (WITH EDGE FADE)
   ============================================ */
.services-marquee {
    background: #2d2d2d;
    color: #fff;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
    z-index: 999;
    
    /* Edge Fade Effect 
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%); */

    -webkit-mask-image: 
        radial-gradient(ellipse at center, #000 60%, transparent 100%);
    mask-image: 
        radial-gradient(ellipse at center, #000 60%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    padding-right: 50px;
}

.marquee-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: #fff;
}

.marquee-dot {
    font-size: 12px;
    color: #2d7a3e;
    margin: 0 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Pause on hover */
.services-marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .marquee-item { font-size: 18px; letter-spacing: 2px; }
    .marquee-dot { margin: 0 15px; font-size: 10px; }
    .services-marquee { padding: 15px 0; }
}

@media (max-width: 480px) {
    .marquee-item { font-size: 16px; letter-spacing: 1px; }
    .marquee-dot { margin: 0 12px; font-size: 8px; }
}

/* --- PRODUCT RANGE --- */
.products-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.products-section h2 {
    color: #2d7a3e;
    font-size: 36px;
    margin-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-icon {
    font-size: 40px;
    color: #5c4033;
    margin-bottom: 20px;
}

.product-card h4 {
    color: #2d7a3e;
    font-size: 20px;
    margin-bottom: 15px;
}

.product-card p {
    color: #666;
    font-size: 14px;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.product-link:hover .product-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-link:hover .product-icon {
    color: #2d7a3e;
}

/* --- BOTTOM CONTACT BAR --- */
.contact-bar {
    background: #2d7a3e; 
    color: #fff;
    text-align: center;
    padding: 25px 0;
    font-weight: 600;
    font-size: 16px;
}

.contact-bar i {
    margin-right: 8px;
}

/* --- ABOUT US PAGE --- */
.page-hero {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.9), rgba(92, 64, 51, 0.9)), 
                url('img/contact us.webp') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.about-overview {
    padding: 80px 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-content h2 {
    color: #2d7a3e;
    font-size: 36px;
    margin-bottom: 25px;
}

.overview-content .lead {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #2d7a3e;
}

.overview-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box i {
    font-size: 32px;
    color: #2d7a3e;
    margin-bottom: 10px;
}

.stat-box h3 {
    color: #5c4033;
    font-size: 32px;
    margin-bottom: 5px;
}

.stat-box p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.overview-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #2d7a3e;
    color: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.experience-badge .years {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.95;
}

.track-record {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #2d7a3e;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 18px;
}

.record-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.record-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.record-card:hover {
    transform: translateY(-10px);
}

.record-icon {
    width: 80px;
    height: 80px;
    background: rgba(45, 122, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.record-icon i {
    font-size: 36px;
    color: #2d7a3e;
}

.record-card h3 {
    color: #5c4033;
    font-size: 22px;
    margin-bottom: 15px;
}

.record-card p {
    color: #666;
    line-height: 1.7;
}

.specializations {
    padding: 80px 0;
    background: #fff;
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.spec-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.spec-card:hover {
    border-color: #2d7a3e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.spec-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #2d7a3e, #5c4033);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.spec-icon i {
    font-size: 40px;
    color: #fff;
}

.spec-card h3 {
    color: #2d7a3e;
    font-size: 20px;
    margin-bottom: 15px;
}

.spec-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05), rgba(92, 64, 51, 0.05));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-box {
    text-align: center;
    padding: 30px;
}

.value-box i {
    font-size: 48px;
    color: #2d7a3e;
    margin-bottom: 20px;
}

.value-box h3 {
    color: #5c4033;
    font-size: 20px;
    margin-bottom: 12px;
}

.value-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.about-cta {
    background: linear-gradient(135deg, #2d7a3e, #1a4d2e);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #2d7a3e;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2d7a3e;
    transform: translateY(-3px);
}

/* --- KITCHEN CABINETS PAGE --- */
.product-hero {
    background: linear-gradient(rgba(45, 122, 62, 0.8), rgba(92, 64, 51, 0.8)), 
                url('img/KC1 - Copy.jpg') center/cover no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}

.product-hero-1 {
    background: linear-gradient(rgba(45, 122, 62, 0.8), rgba(92, 64, 51, 0.8)), 
                url('img/WD 6.jpg') center/cover no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}

.product-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.kc-intro {
    padding: 60px 0;
    background: #fff;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    color: #333;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.kc-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 0 20px;
}

.kc-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 8px solid #fff;
}

.kc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.kc-image:hover img {
    transform: scale(1.05);
}

.kc-options {
    padding: 60px 0;
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),
                url('img/KC1.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.options-content p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: #5c4033;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-weight: 500;
}

.materials-section {
    padding: 80px 0;
    background: #fff;
}

.materials-title {
    text-align: center;
    font-size: 36px;
    color: #2d7a3e;
    margin-bottom: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.materials-list {
    list-style: none;
    padding: 0;
}

.materials-list li {
    padding: 15px 0;
    font-size: 18px;
    color: #5c4033;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.materials-list li:last-child {
    border-bottom: none;
}

.materials-list i {
    color: #2d7a3e;
    font-size: 20px;
}

.kc-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 48px;
    color: #2d7a3e;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #5c4033;
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.product-cta {
    background: linear-gradient(135deg, #2d7a3e, #1a4d2e);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.product-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.product-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* --- FOOTER --- */
.Danjuka-footer {
    background: #2d7a3e;
    color: white;
    padding: 4rem 1rem 2rem;
    position: relative;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: white;
    border-bottom: 2px solid #2d7a3e;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-column p,
.footer-column li {
    color: #cccccc;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    /*color: #2d7a3e;*/
    color: #23120B;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #2d2d2d;
    border-radius: 50%;
    color: white;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: #2d7a3e;
}

.service-logos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.service-item img {
    height: 30px;
    width: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.service-item img:hover {
    filter: brightness(1);
}

/* ============================================
   FOOTER CREDITS SECTION
   ============================================ */
.footer-bottom-credits {
    background: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid #333;
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.copyright p {
    color: #888;
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
}

.copyright strong {
    color: #2d7a3e;
}

.developer-credit {
    text-align: right;
    flex-shrink: 0;
    margin-right: 70px;
}

.developer-credit p {
    color: #888;
    font-size: 14px;
    margin: 0;
    letter-spacing: 1px;
    white-space: nowrap;
}

.developer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.developer-link:hover {
    color: #23120B;
}

.developer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d7a3e;
    transition: width 0.3s ease;
}

.developer-link:hover::after {
    width: 100%;
}

.desktop-link {
    display: inline;
}

.mobile-link {
    display: none;
}

@media (max-width: 768px) {
    .desktop-link {
        display: none;
    }
    
    .mobile-link {
        display: inline;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .developer-credit {
        text-align: center;
        margin-right: 0;
    }
    
    .copyright p,
    .developer-credit p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-bottom-credits {
        padding: 15px 0;
    }
    
    .copyright p,
    .developer-credit p {
        font-size: 12px;
    }
}

/* --- WARDROBE PAGE --- */
.kc-images-grid.single-image {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
}

.options-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.options-text h2 {
    color: #d97706;
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.options-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-weight: 500;
}

.options-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 8px solid #fff;
}

.options-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- MAHOGANY PRODUCTS PAGE --- */
.mahogany-hero {
    background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.8)), 
                url('https://images.unsplash.com/photo-1541123437800-1bb1317badc2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.mahogany-top-section {
    padding: 60px 0;
    background: #fdfbf7;
}

.intro-text-center p {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    color: #5c4033;
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 500;
}

.mahogany-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.mah-img-large {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mah-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mah-img-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stack-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    flex: 1;
}

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(92, 64, 51, 0.85);
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
}

.img-caption.dark {
    background: rgba(139, 69, 19, 0.9);
}

.mahogany-bottom-section {
    padding: 80px 0;
    background: linear-gradient(rgba(253, 251, 247, 0.95), rgba(253, 251, 247, 0.95)),
                url('https://images.unsplash.com/photo-1581858726788-75bc0f6a952d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.bottom-intro {
    text-align: center;
    margin-bottom: 50px;
}

.bottom-intro h2 {
    color: #2d7a3e;
    font-size: 36px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.bottom-intro p {
    font-size: 18px;
    color: #5c4033;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.mahogany-lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.mah-list {
    list-style: none;
    padding: 0;
}

.mah-list li {
    padding: 12px 0;
    font-size: 18px;
    color: #5c4033;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0d5c5;
    font-weight: 500;
}

.mah-list li i {
    color: #8B4513;
    font-size: 16px;
}

.mahogany-cta {
    background: linear-gradient(135deg, #8B4513, #5c4033);
}

/* --- CYPRESS PRODUCTS PAGE --- */
.cypress-hero {
    background: linear-gradient(rgba(45, 122, 62, 0.9), rgba(45, 122, 62, 0.9)), 
                url('https://images.unsplash.com/photo-1541123437800-1bb1317badc2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.cypress-intro-section {
    padding: 60px 0 20px;
    background: #fff;
}

.green-box-header {
    background: #2d7a3e;
    color: #fff;
    padding: 15px 30px;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 4px;
}

.green-box-header h2 {
    margin: 0;
    font-size: 28px;
    text-transform: uppercase;
}

.cypress-stack-section {
    padding: 40px 0;
    background: #fff;
}

.stack-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.caption-box {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #8B5A2B;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.caption-box.dark {
    background: #5c4033;
}

.cypress-range-section {
    background: #1e5c2e;
    padding: 80px 0;
    color: #fff;
}

.range-header h2 {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #fff;
    margin-bottom: 40px;
}

.range-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.range-list {
    list-style: none;
    padding: 0;
}

.range-list li {
    padding: 12px 0;
    font-size: 18px;
    color: #d97706;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.range-list li::before {
    content: '•';
    color: #d97706;
    font-size: 24px;
    line-height: 0;
}

.cypress-bottom-section {
    padding: 60px 0;
    background: #fff;
}

.brown-box-layout {
    margin-bottom: 40px;
}

.brown-content {
    background: #8B5A2B;
    color: #fff;
    padding: 30px;
    border-radius: 4px;
    max-width: 600px;
}

.brown-content h2 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.header-line-light {
    width: 40px;
    height: 2px;
    background: #fff;
    margin-bottom: 15px;
}

.brown-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.bottom-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
}

.bottom-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cypress-cta {
    background: linear-gradient(135deg, #8B5A2B, #5c4033);
}

/* --- TV UNITS PAGE --- */
.tv-hero {
    background: linear-gradient(rgba(45, 122, 62, 0.85), rgba(92, 64, 51, 0.85)), 
                url('https://images.unsplash.com/photo-1595515106969-1ce29566ff1c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.tv-top-section {
    padding: 60px 0 20px;
    background: #fff;
}

.tv-header-text {
    text-align: center;
    margin-bottom: 30px;
}

.tv-header-text h2 {
    color: #2d7a3e;
    font-size: 42px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

.header-underline {
    width: 80px;
    height: 4px;
    background: #2d7a3e;
    margin: 15px auto 0;
}

.tv-main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    margin: 0 20px;
}

.tv-main-image img {
    width: 100%;
    height: 600px;
    display: block;
}

.tv-info-section {
    padding: 60px 0;
    background: #2d7a3e;
}

.tv-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tv-info-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.tv-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tv-info-content h3 {
    color: #fff;
    font-size: 22px;
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
}

.tv-features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-showcase-item.reverse {
    direction: rtl;
}

.feature-showcase-item.reverse > * {
    direction: ltr;
}

.showcase-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.feature-showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-text h4 {
    color: #2d7a3e;
    font-size: 24px;
    margin-bottom: 15px;
}

.showcase-text p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

.tv-specs-section {
    padding: 80px 0;
    background: #fff;
}

.specs-title {
    text-align: center;
    color: #2d7a3e;
    font-size: 36px;
    margin-bottom: 50px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.spec-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-10px);
}

.spec-item i {
    font-size: 48px;
    color: #2d7a3e;
    margin-bottom: 20px;
}

.spec-item h3 {
    color: #5c4033;
    font-size: 20px;
    margin-bottom: 12px;
}

.spec-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.tv-cta {
    background: linear-gradient(135deg, #2d7a3e, #1a4d2e);
}

/* --- CONTACT PAGE --- */
.contact-hero {
    background: linear-gradient(rgba(45, 122, 62, 0.85), rgba(45, 122, 62, 0.85)), 
                url('https://images.unsplash.com/photo-1556909114-44e3e70034e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    color: #2d7a3e;
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 122, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d7a3e;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-content p {
    color: #666;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.info-content a {
    color: #2d7a3e;
    text-decoration: none;
    font-weight: 500;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-container h2 {
    color: #2d7a3e;
    font-size: 32px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d7a3e;
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.btn-submit {
    background: #2d7a3e;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #1a4d2e;
    transform: translateY(-2px);
}

.map-section {
    padding: 80px 0;
    background: #fff;
}

.map-section h2 {
    text-align: center;
    color: #2d7a3e;
    font-size: 32px;
    margin-bottom: 40px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- PRICE LIST PAGE --- */
.price-hero {
    background: linear-gradient(rgba(45, 122, 62, 0.9), rgba(45, 122, 62, 0.9)), 
                url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    color: #fff;
}

.price-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.price-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.price-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.price-table-wrapper {
    background: #fff;
    border-radius: 10px;
    overflow-x: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.price-table thead {
    background: #2d7a3e;
    color: #fff;
}

.price-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1) {
    width: 60px;
    text-align: center;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3) {
    width: 200px;
}

.price-table th:nth-child(4),
.price-table td:nth-child(4) {
    width: 120px;
    font-weight: 600;
    color: #2d7a3e;
}

.price-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.price-table tbody tr:hover {
    background: #f5f5f5;
}

.price-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.price-table td {
    padding: 15px;
    color: #333;
}

.price-table td:nth-child(1) {
    text-align: center;
    font-weight: 600;
    color: #666;
}

.price-cta {
    text-align: center;
    background: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.price-cta h3 {
    color: #2d7a3e;
    font-size: 28px;
    margin-bottom: 10px;
}

.price-cta p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.price-categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    color: #2d7a3e;
    font-size: 36px;
    margin-bottom: 50px;
}

.price-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-category-btn {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: block;
}

.price-category-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 122, 62, 0.2);
}

.price-category-btn i {
    font-size: 50px;
    color: #2d7a3e;
    margin-bottom: 20px;
    display: block;
}

.price-category-btn h3 {
    color: #2d7a3e;
    font-size: 22px;
    margin-bottom: 10px;
}

.price-category-btn p {
    color: #666;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.view-btn {
    display: inline-block;
    color: #2d7a3e;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2d7a3e;
    padding: 3px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.price-category-btn:hover .view-btn {
    background: #2d7a3e;
    color: #fff;
}

.view-btn i {
    font-size: 14px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.price-category-btn:hover .view-btn i {
    transform: translateX(5px);
}

.all-prices-section {
    padding: 80px 0;
    background: #fff;
}

.price-category-section {
    margin-bottom: 60px;
}

.category-heading {
    color: #2d7a3e;
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2d7a3e;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-heading i {
    font-size: 32px;
}

.view-all-link {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-top: 2px solid #e0e0e0;
}

.view-all-link a {
    color: #2d7a3e;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-link a:hover {
    color: #1a4d2e;
}

.view-all-link a i {
    margin-left: 8px;
    font-size: 14px;
}

.price-lists-home-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05), rgba(92, 64, 51, 0.05));
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
}

.view-all-prices {
    text-align: center;
    margin-top: 50px;
}

.view-all-prices .btn {
    font-size: 18px;
    padding: 16px 40px;
}

.view-all-prices .btn i {
    margin-right: 10px;
}

/* --- PRODUCTS PAGE --- */
.products-page-hero {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.9), rgba(92, 64, 51, 0.9)), 
                url('https://images.unsplash.com/photo-1556911220-e15b29be8c8f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

.products-page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.products-page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

.all-products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-showcase-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-showcase-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-showcase-card:hover .product-showcase-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 122, 62, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-showcase-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    background: #fff;
    color: #2d7a3e;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: #1a4d2e;
    color: #fff;
}

.product-showcase-content {
    padding: 25px;
}

.product-showcase-content h3 {
    color: #2d7a3e;
    font-size: 22px;
    margin-bottom: 12px;
}

.product-showcase-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-learn-more {
    color: #2d7a3e;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.btn-learn-more:hover {
    gap: 12px;
}

.btn-learn-more i {
    font-size: 14px;
}

.price-lists-products-section {
    padding: 80px 0;
    background: #fff;
}

.why-choose-products {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05), rgba(92, 64, 51, 0.05));
}

.products-cta {
    background: linear-gradient(135deg, #2d7a3e, #1a4d2e);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.products-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.products-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    margin-top: 2rem;
    color: #aaaaaa;
    font-size: 0.9rem;
}

.footer-bottom strong {
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #2d7a3e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 3px rgba(255,255,255,0.9);
    transition: all 0.3s ease;
    /*z-index: 1000;*/
    z-index: 999;
    border: 3px solid #fff;
}

.back-to-top i {
    font-size: 22px;
    font-weight: 700;
}

.back-to-top:hover {
    background: #1a4d2e;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 3px rgba(255,255,255,1);
}

/* Optional: Add a subtle pulse animation to draw attention */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 3px rgba(255,255,255,0.9);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 6px rgba(45,122,62,0.3);
    }
}

.back-to-top {
    animation: pulse 2s ease-in-out infinite;
}

.back-to-top:hover {
    animation: none;
}


/* ============================================
   CUSTOMER TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05), rgba(92, 64, 51, 0.05));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2d7a3e, #5c4033);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-info h4 {
    color: #2d7a3e;
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    color: #888;
    font-size: 13px;
    margin: 0;
}

/* ============================================
   OUR PROCESS SECTION
   ============================================ */
.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-card {
    text-align: center;
    padding: 40px 25px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    background: #2d7a3e;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 122, 62, 0.3);
}

.process-card:hover .process-number,
.process-card:hover .process-icon i,
.process-card:hover h3,
.process-card:hover p {
    color: #fff;
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(45, 122, 62, 0.1);
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(45, 122, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: rgba(255, 255, 255, 0.2);
}

.process-icon i {
    font-size: 36px;
    color: #2d7a3e;
    transition: color 0.3s ease;
}

.process-card h3 {
    color: #2d7a3e;
    font-size: 22px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.process-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* ============================================
   PORTFOLIO GALLERY SECTION
   ============================================ */
.portfolio-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 122, 62, 0.95), rgba(45, 122, 62, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    color: #333;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #2d7a3e;
    font-size: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    background: #2d7a3e;
}

.faq-item.active .faq-question h3 {
    color: #fff;
}

.faq-item.active .faq-question i {
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FAQ LINK SECTION (HOME PAGE)
   ============================================ */
.faq-link-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05), rgba(92, 64, 51, 0.05));
}

.faq-link-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: transform 0.3s ease;
}

.faq-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.faq-link-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d7a3e, #1a4d2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-link-icon i {
    font-size: 40px;
    color: #fff;
}

.faq-link-content {
    flex: 1;
}

.faq-link-content h3 {
    color: #2d7a3e;
    font-size: 24px;
    margin-bottom: 10px;
}

.faq-link-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.faq-link-btn {
    background: #2d7a3e;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.faq-link-btn:hover {
    background: #1a4d2e;
    transform: translateX(5px);
}

.faq-link-btn i {
    transition: transform 0.3s ease;
}

.faq-link-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-link-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .faq-link-content h3 {
        font-size: 20px;
    }
    
    .faq-link-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FAQ HELP SECTION
   ============================================ */
.faq-help-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.faq-help-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-help-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.faq-contact-btn {
    background: #2d2d2d;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 45, 45, 0.3);
}

.faq-contact-btn:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 45, 45, 0.4);
}

.faq-contact-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-contact-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-help-section {
        padding: 40px 0;
    }
    
    .faq-help-text {
        font-size: 16px;
    }
    
    .faq-contact-btn {
        padding: 14px 35px;
        font-size: 14px;
    }
}

/* ============================================
   FREE CONSULTATION SECTION
   ============================================ */
.consultation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.05), rgba(92, 64, 51, 0.05));
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.consultation-content {
    padding: 50px;
    background: linear-gradient(135deg, #2d7a3e, #1a4d2e);
    color: #fff;
}

.consultation-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.consultation-content > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.benefit-item i {
    color: #fbbf24;
    font-size: 20px;
    flex-shrink: 0;
}

.consultation-form-wrapper {
    padding: 50px;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #2d7a3e;
    box-shadow: 0 0 0 3px rgba(45, 122, 62, 0.1);
}

.consultation-form .btn-submit {
    background: #2d7a3e;
    color: #fff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.consultation-form .btn-submit:hover {
    background: #1a4d2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 122, 62, 0.3);
}


/* ============================================
   LOCATION-BASED PORTFOLIO - PINTEREST STYLE
   ============================================ */
.location-portfolio-section {
    padding: 80px 0;
    background: #fff;
}

.location-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.location-filter-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-filter-btn:hover,
.location-filter-btn.active {
    background: #2d7a3e;
    color: #fff;
    border-color: #2d7a3e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 122, 62, 0.3);
}

/* Pinterest-Style Masonry Grid */
.masonry-grid {
    column-count: 4;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

.location-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.location-image-main {
    position: relative;
    overflow: hidden;
}

.location-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image-main img {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 122, 62, 0.95), rgba(45, 122, 62, 0.4));
    padding: 30px 20px 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.location-card:hover .location-overlay {
    transform: translateY(0);
}

.location-overlay h3 {
    font-size: 20px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-overlay p {
    font-size: 14px;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-overlay i {
    transition: transform 0.3s ease;
}

.location-card:hover .location-overlay i.fa-arrow-right {
    transform: translateX(5px);
}

.location-stats {
    padding: 15px 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.stat-item i {
    color: #2d7a3e;
    font-size: 16px;
}

/* Modal Styles */
.location-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.location-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #2d7a3e;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #1a4d2e;
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px;
    background: linear-gradient(135deg, #2d7a3e, #1a4d2e);
    color: #fff;
    text-align: center;
}

.modal-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.modal-header p {
    font-size: 16px;
    opacity: 0.9;
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
}

.modal-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.modal-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-gallery-item .image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 20px 15px 15px;
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .masonry-grid {
        column-count: 3;
    }
}

@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
    
    .modal-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 1;
    }
    
    .location-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .location-filter-btn {
        justify-content: center;
    }
    
    .modal-header {
        padding: 30px 20px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
    
    .modal-gallery-grid {
        padding: 20px;
        grid-template-columns: 1fr;
    }
}




/* ============================================
   RESPONSIVE - NEW SECTIONS
   ============================================ */
@media (max-width: 992px) {
    .testimonials-grid,
    .process-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .consultation-wrapper {
        grid-template-columns: 1fr;
    }
    
    .consultation-content,
    .consultation-form-wrapper {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid,
    .process-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .consultation-content h2 {
        font-size: 28px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
}

/* ============================================
   WORKSHOP VIDEO SECTION
   ============================================ */
.workshop-video-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.1), rgba(92, 64, 51, 0.1));
}

.video-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.video-content {
    padding: 50px;
    background: linear-gradient(135deg, #2d7a3e, #1a4d2e);
    color: #fff;
}

.video-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.video-content > p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.video-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-stats .stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.video-stats .stat i {
    font-size: 24px;
    color: #fbbf24;
}

.video-stats .stat span {
    font-size: 15px;
    font-weight: 500;
}

.video-container {
    position: relative;
    padding: 30px;
    background: #f8f9fa;
}

.video-wrapper-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.video-wrapper-main video,
.video-wrapper-main iframe {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
}

.video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(45, 122, 62, 0.95);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.video-badge:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #2d7a3e;
}

.video-badge i {
    font-size: 24px;
}

/* ============================================
   PORTFOLIO PAGE STYLES
   ============================================ */


   .page-hero-projects {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.9), rgba(92, 64, 51, 0.9)), 
                url('img/furniture\ workshop\ bg.webp') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
}

/* Video Gallery Section */
.portfolio-videos-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    color: #2d7a3e;
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-info h3 i {
    color: #5c4033;
}

.video-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Image Gallery Section */
.portfolio-images-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid transparent;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2d7a3e;
    color: #fff;
    border-color: #2d7a3e;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 122, 62, 0.95), rgba(45, 122, 62, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: #fff;
}

.gallery-overlay h4 {
    font-size: 18px;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Hide items for filtering */
.gallery-item.hide {
    display: none;
}

/* Responsive Portfolio Page */
@media (max-width: 992px) {
    .video-gallery-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-gallery-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
}

/* ============================================
   WHATSAPP CHAT WIDGET
   ============================================ */
.whatsapp-widget-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.whatsapp-chat-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappFloat 3s ease-in-out infinite;
    border: 3px solid #fff;
}

.whatsapp-chat-btn i {
    font-size: 32px;
    font-weight: 700;
}

.whatsapp-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.whatsapp-chat-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-tooltip-left {
    background: #fff;
    color: #333;
    padding: 10px 18px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
    position: relative;
}

.whatsapp-tooltip-left::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-widget-container:hover .whatsapp-tooltip-left {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Optimization */
@media (max-width: 767px) {
    .whatsapp-widget-container {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-chat-btn {
        padding: 14px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-chat-btn i {
        font-size: 32px;
    }
    
    .whatsapp-tooltip-left {
        display: none;
    }
}

/* Tablet - Show text but smaller */
@media (min-width: 768px) and (max-width: 1024px) {
    .whatsapp-chat-btn {
        padding: 14px 22px;
    }
    
    .whatsapp-text {
        font-size: 14px;
    }
}

/* Counter Animation Styles */
.counter {
    transition: all 0.3s ease;
}

.stat-box:hover .counter {
    transform: scale(1.1);
    color: #2d7a3e;
}

/* Animation trigger class for the About.html */
.counter.animate {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN - ALL SCREEN SIZES
   ============================================ */

/* Large Tablets & Small Laptops */
@media (max-width: 992px) {
    /* Navigation - Mobile Menu */
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: center;
    }
    
    /* Grids */
    .pillars-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .record-grid,
    .specializations-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .kc-images-grid,
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tv-info-grid,
    .feature-showcase-item,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-showcase-item.reverse {
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .price-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .products-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .options-content-layout {
        grid-template-columns: 1fr;
    }
    
    .options-text {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .tv-header-text h2 {
        font-size: 32px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 10px 0;
    }
    
    .brand-logo img {
        height: 130px;
        max-width: 150px;
    }
    
    .nav-links {
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    /* Hero Sections */
    .hero h1 {
        font-size: 28px;
        padding: 0 10px;
    }
    
    .page-hero h1,
    .product-hero h1,
    .price-hero h1,
    .contact-hero h1,
    .products-page-hero h1 {
        font-size: 32px;
    }
    
    /* Grids */
    .products-grid,
    .record-grid,
    .specializations-grid,
    .values-grid,
    .features-grid,
    .products-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .experience-badge .years {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .mahogany-image-grid {
        grid-template-columns: 1fr;
    }
    
    .mah-img-large {
        height: 300px;
    }
    
    .mahogany-lists-grid,
    .range-grid,
    .bottom-images-grid {
        grid-template-columns: 1fr;
    }
    
    .stack-item {
        height: 200px;
    }
    
    .tv-info-content h3,
    .showcase-text h4 {
        font-size: 18px;
    }
    
    /* Tables */
    .price-table {
        font-size: 13px;
    }
    
    .price-table th,
    .price-table td {
        padding: 10px 8px;
    }
    
    .price-table th:nth-child(3),
    .price-table td:nth-child(3),
    .price-table th:nth-child(1),
    .price-table td:nth-child(1) {
        display: none;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .page-hero,
    .product-hero,
    .price-hero,
    .contact-hero,
    .products-page-hero {
        padding: 80px 0 60px;
    }
    
    .section-title,
    .section-header h2 {
        font-size: 28px;
    }
    
    .pillars-section {
        margin-top: -40px;
    }
    
    .pillar-card {
        padding: 30px 20px;
    }
    
    .price-category-btn {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .video-showcase-wrapper {
        grid-template-columns: 1fr;
    }
    
    .video-content {
        padding: 40px;
    }
}