:root {
    --bg-primary: #FFFFFF;       /* Pure White */
    --bg-secondary: #F9F9F9;     /* Ghost White */
    --bg-dark: #121212;  /* Dark overlay */
    
    --text-primary: #1A1A1A;     /* Obsidian */
    --text-secondary: #555555;   /* Dark Grey */
    --text-light: #FFFFFF;       /* White Text */
    
    --accent-gold: #C5A059;      /* Satin Gold */
    --accent-red: #8a1c23;       /* Royal Burgundy */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.gold-text { color: var(--accent-gold); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: white;
    border: 2px solid var(--accent-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-gold);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--text-primary);
}

.btn-cta {
    background-color: var(--accent-red);
    color: white;
    border: 2px solid var(--accent-red);
    margin-top: 40px;
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--accent-red);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-header .line {
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background: transparent;
}

header.sticky {
    background-color: var(--bg-primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

header.sticky .nav-link {
    color: var(--text-primary); 
}

.nav-link:hover {
    color: var(--accent-gold);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-primary);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--accent-gold);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
}

.dropdown li a:hover {
    background-color: var(--bg-secondary);
    color: var(--accent-gold);
    padding-left: 25px;
}

.hamburger {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

header.sticky .hamburger {
    color: var(--text-primary);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: #ddd;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* ABOUT SECTION */

/* Section Container */
.about-redesign {
    position: relative;
    padding-top: 100px;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.about-hero-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.about-image-container {
    width: 60%;
    position: relative;
    z-index: 1;
}

.about-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.about-floating-card {
    width: 50%;
    background-color: #1A1A1A;
    padding:40px;
    z-index: 2;
    margin-left: -40px;
    margin-top: 50px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
}

.gold-label {
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.about-floating-card h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #fff;
    font-family: var(--font-heading);
}

.about-floating-card p {
    color: #ccc;
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-info-strip {
    background-color: #fff;
    padding: 100px 0;
    color: #121212;;
}

.strip-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.strip-heading h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.gold-accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
}

.strip-text p {
    color: #1A1A1A;
    font-size: 0.95rem;
    line-height: 1.8;
}

/*  SERVICES SECTION   */
.services {
    background-color: var(--bg-secondary);
}

.services-gallery {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.service-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.row-top .service-image-card {
    flex: 1;
    height: 400px;
}

.row-bottom .service-image-card {
    flex: 1;
    height: 350px;
}

/* The Card Wrapper */
.service-image-card {
    position: relative;
    overflow: hidden;
    background: #000;
    border-radius: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}

/* The Image */
.service-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-image-card:hover img {
    transform: scale(1.1);
}

/* Bottom Label */
.service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-red);
    color: var(--text-light);
    padding: 15px 10px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 2;
    border-top: 3px solid var(--accent-gold);
    transition: transform 0.3s ease;
}

/* The Hover Description Overlay */
.service-hover-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.4), rgba(138, 28, 35, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 3;
}

.hover-content h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.hover-content p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

/* Hover Interaction Trigger */
.service-image-card:hover .service-hover-details {
    opacity: 1;
    visibility: visible;
}

.service-image-card:hover .hover-content h3,
.service-image-card:hover .hover-content p {
    transform: translateY(0);
}

/* PRODUCT SECTION  */
.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px;
    margin-bottom: 50px;
}

.shop-card {
    background: #FDFCF8;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Image Area */
.shop-img-wrap {
    position: relative;
    height: 220px;
    width: 100%;
}

.shop-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-red);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.shop-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.shop-title {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.shop-price {
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 8px;
}

.new-price {
    color: var(--accent-red);
    font-weight: 700;
    font-size: 1.1rem;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-whatsapp:hover {
    background-color: #1FAF54; 
    color: white;
}

/* OUR PRINCIPLES */

.core-principles {
    background-color: var(--bg-primary);
    padding: 100px 0;
    text-align: center;
}

.principles-header {
    margin-bottom: 60px;
}

.principles-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.principles-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.principles-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* The Card Style */
.principle-card-new {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 50px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything */
}

.principle-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.icon-circle i {
    color: #fff;
    font-size: 1.8rem;
}

.principle-card-new h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #222;
    margin-bottom: 20px;
}

.principle-card-new p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* TESTIMONIAL SLIDER CSS */

.testimonial-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px; /* Space for arrows */
}

.testimonial-track-container {
    overflow: hidden;
    width: 100%;
}

/* The Moving Track */
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    padding: 20px 0;
}

.testimonial-slide {
    min-width: 33.33%; 
    padding: 0 15px;
    list-style: none;
}

.testi-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--accent-gold);
}

/* Circular Image & Header */
.testi-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.testi-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    margin-bottom: 15px;
}

.testi-header h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.testi-header .profession {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Review Text */
.testi-card p {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testi-card .stars {
    margin-top: auto;
    color: #FFD700;
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background-color: var(--accent-gold);
    color: #fff;
    border-color: var(--accent-gold);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }


/* --- SERVICE PAGE SPECIFIC STYLES --- */

/* 1. Service Hero */
.service-hero {
    height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('https://media.istockphoto.com/id/2204355895/photo/contemporary-interior-with-sofa-brown-wood-wall-panels-plants-floor-lamp-carpet-coffee-table.jpg?s=612x612&w=0&k=20&c=gxdDfoo_9S6NjNL5VZuRlK5pnPBdkwAdyhRoqToea_Y=');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Text at bottom */
    padding-bottom: 80px;
    color: white;
    text-align: center;
}

.service-hero h1 { 
    font-size: 4.5rem; 
    margin-bottom: 15px; 
    letter-spacing: -1px; 
}

.service-hero p { 
    font-size: 1.2rem; 
    max-width: 700px; 
    margin: 0 auto; 
    color: #ddd; 
    font-weight: 300; 
}

/* Common Card Styles for all Grids */
.svc-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 100%;
    min-height: 250px;
}

.svc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.svc-card:hover img { transform: scale(1.1); }

/* Labels (Bottom Attached) */
.svc-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-red);
    color: var(--text-light);
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 2;
    border-top: 3px solid var(--accent-gold);
}

/* Hover Details */
.svc-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.4), rgba(138, 28, 35, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 3;
}

.svc-card:hover .svc-hover { 
    opacity: 1; 
    visibility: visible; 
}

.svc-hover p {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.svc-card:hover .svc-hover p { 
    transform: translateY(0); 
}

/* --- 2. Residential Layout --- */
.residential-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 1000px; 
}

.res-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.res-col .svc-card { 
    flex: 1; 
}


/* --- Commercial Layout --- */
.commercial-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.comm-row-1 { 
    grid-column: span 3; 
    height: 350px; 
}

.comm-row-2-3 { 
    grid-column: span 2; 
    height: 300px; 
}

/* --- Custom Furniture --- */
.custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.custom-item { height: 300px; }


/* ---  Restoration  --- */
.restore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.restore-full {
    grid-column: span 2;
    height: 400px;
}

.restore-half {
    grid-column: span 1;
    height: 350px;
}

/* --- 6. Delivery (2 Videos) --- */
.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-label {
    margin-top: 15px;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    font-size: 1.1rem;
}

/* =========================================
   PRODUCTS PAGE
   ========================================= */

/* --- 1. Products Page Hero Section --- */
.page-hero {
    height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?q=80&w=2000&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ddd;
    max-width: 600px;
}

/* --- 2. Category Section Styling --- */
.category-section {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-primary);
    border-left: 5px solid var(--accent-gold);
    padding-left: 20px;
}

.shop-img-wrap {
    overflow: hidden; 
}

.shop-img-wrap img {
    transition: transform 0.5s ease;
}

.shop-card:hover .shop-img-wrap img {
    transform: scale(1.05);
}

/* =========================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================= */

/* 1. Hero Override for Contact Page */
.contact-hero {
    height: 75vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1616046229478-9901c5536a45?q=80&w=880&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-family: var(--font-heading);
}

.contact-hero p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ddd;
    max-width: 600px;
    line-height: 1.6;
}

/* 2. Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.contact-card {
    padding: 40px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-card p, .contact-card a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-card a:hover {
    color: var(--accent-gold);
}

/* 3. Map Section */
.map-section {
    width: 100%;
    height: 500px;
    background-color: #eee;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) contrast(1.2) opacity(0.9);
}

/* 4. FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: space-between;
}

.faq-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* The little icon box from your image */
.faq-icon-box {
    width: 50px;
    height: 50px;
    background-color: #EAEAEA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.faq-question h4 {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
}

.faq-toggle-icon {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    opacity: 0;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px; 
    padding-bottom: 25px;
    padding-left: 95px; 
    opacity: 1;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* FOOTER */
footer {
    background-color: #111;
    color: #fff;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.copyright {
    border-top: 1px solid #333;
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================= */

/* --- 1. Laptops and Large Tablets (max-width: 1024px) --- */
@media (max-width: 1024px) {
    /* About Section */
    .about-floating-card {
        width: 60%;
        padding: 30px;
        margin-left: -10%;
    }
    .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .strip-heading {
        grid-column: span 2;
        margin-bottom: 0;
    }

    /* Grids */
    .product-gallery-grid, 
    .principles-grid-new, 
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Testimonials */
    .testimonial-slide {
        min-width: 50%; 
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* --- 2. Tablets and Mobile Navigation (max-width: 768px) --- */
@media (max-width: 768px) {
    /* Header & Nav */
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%; /* Hidden by default, toggle this via JS (e.g., left: 0) */
        width: 100%;
        background-color: var(--bg-primary);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: var(--transition);
        text-align: center;
    }
    
    /* Optional class to toggle via JavaScript for the mobile menu */
    .nav-links.active {
        left: 0;
    }

    .nav-link {
        color: var(--text-primary);
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none; /* Toggle via JS if needed */
        border-top: none;
        background-color: var(--bg-secondary);
    }

    /* Typography Overrides */
    .hero h1 { font-size: 2.8rem; }
    .service-hero h1, .contact-hero h1, .page-hero h1 { font-size: 2.5rem; }
    .section-header h2, .principles-header h2 { font-size: 2rem; }

    /* About Section Reflow */
    .about-hero-wrapper {
        flex-direction: column;
    }
    .about-image-container {
        width: 100%;
    }
    .about-image-container img {
        height: 400px;
    }
    .about-floating-card {
        width: 90%;
        margin-left: 0;
        margin-top: -80px; /* Overlap vertically instead of horizontally */
    }

    /* Services Gallery */
    .service-row {
        flex-direction: column;
    }
    .row-top .service-image-card, 
    .row-bottom .service-image-card {
        height: 300px;
    }

    /* Service Pages Layout Reflow */
    .residential-grid, 
    .restore-grid, 
    .delivery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .commercial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .comm-row-1, .comm-row-2-3 {
        grid-column: span 2;
        height: 250px;
    }
    .restore-full, .restore-half {
        grid-column: span 1;
        height: 300px;
    }

    /* Testimonials */
    .testimonial-slide {
        min-width: 100%; 
    }
    .testimonial-slider-wrapper {
        padding: 0 20px;
    }

    /* FAQ Adjustments */
    .faq-item.active .faq-answer {
        padding-left: 25px; /* Remove deep indent on mobile */
    }
}

/* --- 3. Mobile Phones (max-width: 480px) --- */
@media (max-width: 480px) {
    .section-padding { padding: 60px 0; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .btn { width: 100%; text-align: center; }

    /* Single Column Grids for Mobile */
    .strip-grid,
    .product-gallery-grid, 
    .principles-grid-new, 
    .contact-grid,
    .custom-grid,
    .footer-grid,
    .commercial-grid {
        grid-template-columns: 1fr;
    }
    
    .strip-heading {
        grid-column: span 1;
    }

    .comm-row-1, .comm-row-2-3 {
        grid-column: span 1;
    }

    .map-section {
        height: 350px;
    }

    /* FAQ Box Adjustments */
    .faq-left { gap: 10px; }
    .faq-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .faq-question h4 { font-size: 0.95rem; }
}