/* design-system variables */
:root {
    /* The Bark & Steel Light Luxury Palette */
    --bg-primary: #f9f8f6;
    /* Crisp, clean white background */
    --bg-secondary: #d3d3d3;
    /* Light cream/warm stone for cards and sections */
    --text-primary: #2d2d2d;
    /* CHARCOAL BLACK - default for all pages */
    --text-secondary: #555555;
    /* Medium gray for body paragraphs */

    /* Elegant Accent tones to highlight details and links */
    --accent-walnut: #3d3d3d;
    --accent-oak: #9c846b;
    /* Soft, upscale taupe/timber tone */

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

.home-page {
    /* Override text colors to white ONLY on homepage */
    --text-primary: #ffffff;
    --text-secondary: #dddddd;
}

/* Make sure the hero section stays white */
.home-page .hero {
    color: #ffffff;
}

.home-page .hero h1,
.home-page .hero .hero-subtitle,
.home-page .hero .subtitle {
    color: #ffffff;
}

.home-page .hero .cta-button {
    border-color: #ffffff;
    color: #ffffff;
}

.home-page .hero .cta-button:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

/* Keep brand statement white on homepage */
.home-page .brand-statement-section .brand-statement {
    color: #ffffff;
}

.home-page .materials-section-header h2 {
    color: #2d2d2d !important;
}
/* Keep hero background overlay dark so white text is readable */
.home-page .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: -1;
}

/* Navbar links remain white on homepage */
.home-page .navbar .nav-links a {
    color: #f4ebd8;
}

/* If you want the rest of the homepage to also have white text on dark backgrounds */
.home-page .bg-secondary {
    background-color: #2a2a2a;
    /* Dark background for contrast */
}

.home-page .bg-secondary h2,
.home-page .bg-secondary p,
.home-page .bg-secondary .section-title {
    color: #ffffff;
}

/* But keep some elements with dark text on light backgrounds where appropriate */
.home-page .service-card p {
    color: #dddddd;
}

.home-page .service-card h3 {
    color: #ffffff;
}

/* Materials section on homepage */
.home-page .materials-section h2,
.home-page .materials-section .section-desc {
    color: #ffffff;
}

.home-page .material-item {
    color: #dddddd;
    border-color: rgba(255, 255, 255, 0.2);
}

.home-page .material-item:hover {
    color: #ffffff;
    border-color: var(--accent-oak);
}

/* Testimonials on homepage */
.home-page .testimonials-section h2 {
    color: #ffffff;
}

.home-page .testimonial-card p {
    color: #ffffff;
}

.home-page .testimonial-card cite {
    color: var(--accent-oak);
}

/* Footer on homepage */
.home-page footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.home-page footer p {
    color: #aaaaaa;
}

.home-page .brand-statement-dark {
    color: #2d2d2d !important;
    /* Charcoal black */
}

.home-page .section-title-dark {
    color: #2d2d2d !important;
    /* Charcoal black */
}

.home-page .testimonial-card-dark,
.home-page .testimonial-card-dark p {
    color: #2d2d2d !important;
    /* Charcoal black */
}

.home-page .text-center-dark {
    color: #2d2d2d !important;
    text-align: center;
    /* Charcoal black */
}

.home-page .service-card-dark h3,
.home-page .service-card-dark p {
    color: #2d2d2d !important;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
blockquote {
    font-family: var(--font-heading);
    font-weight: 400;
}

h1 {
    font-size: clamp(3rem, 5vw, 6rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-weight: 300;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-oak);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background-color 0.4s ease, padding 0.4s ease;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    z-index: 101;
}

.navbar.scrolled,
.navbar-solid {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 120px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.navbar-brand-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.05rem;
    height: 2.05rem;
    border-radius: 999px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.header-socials svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

/* Social icons on all pages */
.header-socials a {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.header-socials a:hover {
    transform: translateY(-1px);
    background: var(--accent-oak);
    border-color: transparent;
    color: #111111;
}

@media (max-width: 768px) {
    .header-socials {
        gap: 0.35rem;
    }

    .header-socials a {
        width: 2.25rem;
        height: 2.25rem;
    }

    .header-socials svg {
        width: 1.05rem;
        height: 1.05rem;
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

.nav-links a:hover {
    color: var(--accent-oak);
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(244, 235, 216, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    list-style: none;
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    border-radius: 4px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent rgba(26, 26, 26, 0.98) transparent;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.dropdown-menu a:hover {
    color: var(--text-primary);
    background-color: rgba(244, 235, 216, 0.05);
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
}

/* Active page styles for dropdown items */
.dropdown-menu a.active {
    color: var(--accent-oak);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 var(--spacing-lg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin-top: 15vh;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    color: var(--accent-oak);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-buttons .cta-button {
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: var(--spacing-md);
    transition: all 0.4s ease;
}

.cta-button:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.cta-button.btn-light {
    background-color: transparent;
    border: 1px solid rgba(244, 235, 216, 0.3);
    color: var(--text-primary);
    backdrop-filter: blur(4px);
}

.cta-button.btn-light:hover {
    background-color: rgba(244, 235, 216, 0.1);
    border-color: rgba(244, 235, 216, 0.8);
    color: var(--text-primary);
}

/* Utility Classes */
.bg-secondary {
    background-color: var(--bg-secondary);
}

.text-center {
    text-align: center;
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

/* Brand Statement */
.brand-statement-section {
    padding: var(--spacing-lg) 0;
}

.brand-statement {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-style: italic;
    line-height: 1.5;
    letter-spacing: 1px;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-primary);
    font-weight: 400;
}

/* Featured Projects */
.featured-projects-section {
    padding: var(--spacing-xl) 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.featured-item {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 1/1;
}

.featured-item .img-wrapper {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
}

.featured-item .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

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

.item-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.item-overlay span {
    font-size: 0.9rem;
    color: var(--accent-oak);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Services Section */
.services-section {
    padding: var(--spacing-xl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    padding: var(--spacing-lg) var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-oak);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: var(--spacing-xl) 0;
}

.craft-text p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

.inline-link {
    color: var(--text-primary);
    border-bottom: 1px solid var(--accent-oak);
    padding-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.inline-link:hover {
    color: var(--accent-oak);
    border-color: transparent;
}

/* Materials Section */
.materials-section {
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.materials-section-header {
    width: 100%;
    text-align: center;
    color: #222;
    margin-bottom: 2rem;
}

.materials-section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0;
}

.materials-image-block {
    width: 100%;
    min-height: 110vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.materials-list {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.material-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-secondary);
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    transition: all 0.4s ease;
    cursor: default;
}

.material-item:hover {
    color: var(--text-primary);
    border-color: var(--accent-oak);
    background: rgba(139, 90, 43, 0.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    text-align: left;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-oak);
    background: rgba(255, 255, 255, 0.04);
}

.testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.testimonial-card cite {
    font-size: 0.85rem;
    color: var(--accent-oak);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-style: normal;
    display: block;
}

.testimonial-card cite a {
    color: var(--accent-oak);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.testimonial-card cite a:hover {
    color: var(--text-primary);
}

/* Contact CTA Section */
.contact-cta-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: var(--spacing-sm);
}

.primary-cta {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.primary-cta:hover {
    background-color: transparent;
    color: var(--text-primary);
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text .signature {
    margin-top: var(--spacing-md);
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    filter: brightness(0.85);
    transition: filter 0.5s ease;
}

.about-image img:hover {
    filter: brightness(1);
}

.about-collage-section {
    margin-top: var(--spacing-lg);
}

.about-collage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-collage img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .about-collage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .about-collage {
        grid-template-columns: 1fr;
    }

    .about-collage img {
        height: 240px;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

/* Transition for filtering */
.portfolio-item {
    cursor: pointer;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.hidden {
    display: none;
}

.img-wrapper {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: var(--spacing-sm);
}

.img-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.portfolio-item:hover .img-wrapper img {
    transform: scale(1.05);
    filter: brightness(1);
}

.item-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

/* Contact & Form Section */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-section>.container>h2,
.contact-section>.container>p {
    text-align: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    align-items: start;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background: var(--bg-secondary);
    padding: var(--spacing-md);
    border-radius: 4px;
}

.form-row {
    display: flex;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.half {
    flex: 1;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.8rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-oak);
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.file-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--bg-primary);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.file-upload-btn:hover {
    border-color: var(--accent-oak);
    background: rgba(139, 90, 43, 0.05);
    color: var(--text-primary);
}

.file-input:focus+.file-upload-btn {
    border-color: var(--accent-oak);
    box-shadow: 0 0 0 2px rgba(139, 90, 43, 0.2);
}

.file-upload-btn .upload-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.file-upload-btn:hover .upload-icon {
    transform: translateY(-2px);
}

.file-upload-btn.file-selected {
    border-style: solid;
    border-color: var(--accent-oak);
    color: var(--text-primary);
    background: rgba(139, 90, 43, 0.15);
}

.form-submit {
    margin-top: 0;
    background: transparent;
    cursor: pointer;
}

.contact-details {
    padding: var(--spacing-md);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details h3 {
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
}

.contact-details p {
    margin-bottom: var(--spacing-sm);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

/* Footer */
footer {
    text-align: center;
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Micro Animations (Reveal on Scroll) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Dedicated Product Showcase Pages */
.product-detail-section {
    padding: var(--spacing-lg) 0 var(--spacing-xl);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: var(--accent-oak);
}

.product-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Quote Sidebar Panel */
.product-quote-panel {
    position: sticky;
    top: 120px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.quote-panel-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 400;
    margin: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.quote-panel-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.quote-panel-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.quote-panel-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.quote-panel-form label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-secondary);
}

.quote-panel-form input,
.quote-panel-form select,
.quote-panel-form textarea {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.65rem 0.8rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 2px;
    width: 100%;
    transition: border-color 0.3s ease;
}

.quote-panel-form input:focus,
.quote-panel-form select:focus,
.quote-panel-form textarea:focus {
    outline: none;
    border-color: var(--accent-oak);
}

.quote-panel-form textarea {
    resize: vertical;
    min-height: 90px;
}

.quote-panel-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0;
}

.quote-panel-submit {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.quote-panel-submit:hover {
    background: transparent;
    color: var(--text-primary);
}

.quote-panel-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: transparent;
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #25d366;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quote-panel-whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
    color: #25d366;
    transform: none;
}

.quote-panel-whatsapp svg {
    flex-shrink: 0;
}

.quote-panel-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.product-media {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.main-product-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.main-product-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 900px;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.gallery-thumb {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-secondary);
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.product-info-panel {
    position: static;
}

.product-category-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-oak);
    margin-bottom: 0.5rem;
    display: block;
}

.product-title {
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-spec-tag {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    display: block;
}

.product-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.product-specs-table {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.spec-label {
    color: var(--text-secondary);
    font-weight: 300;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 400;
}

/* Facebook Video Widget Section */
.facebook-video-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-primary);
}

.video-widget-container {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.video-card {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(139, 90, 43, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(26, 26, 26, 0.85);
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.play-btn-circle svg {
    margin-left: 4px;
    transition: transform 0.4s ease;
}

.video-card:hover .play-btn-circle {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(139, 90, 43, 0.3);
}

.video-card:hover .play-btn-circle svg {
    transform: scale(1.1);
}

.video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-md);
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.4) 70%, transparent 100%);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.video-overlay-text h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--text-primary);
    margin: 0;
}

.video-overlay-text span {
    font-size: 0.85rem;
    color: var(--accent-oak);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.facebook-cta-box {
    margin-top: var(--spacing-sm);
}

.facebook-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 1px solid rgba(244, 235, 216, 0.2);
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.facebook-follow-btn:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.2);
}

.facebook-follow-btn svg {
    transition: transform 0.3s ease;
}

.facebook-follow-btn:hover svg {
    transform: scale(1.1);
}

/* Quote form styles (injected into product pages) */
.quote-target {
    margin-top: 1rem;
}

.quote-form {
    background: #f6f4f2;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    color: #111;
}

.quote-form h2 {
    margin: 0 0 6px 0;
    font-size: 1.4rem;
    color: #111;
}

.quote-form .muted {
    color: #6b6b6b;
    margin-bottom: 12px;
}

.quote-form .row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.quote-form input,
.quote-form textarea {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}

.quote-form textarea {
    resize: vertical;
}

.quote-form .form-actions {
    margin-top: 10px;
    text-align: right;
}

.quote-form .form-status {
    margin-top: 8px;
    font-size: 0.95rem;
}

/* Blog Styles */
.blog-feed {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

/* Premium Blog Card Grid Layout */
.blog-card-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-card-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-card-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    aspect-ratio: 3 / 2;
}

.blog-card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* Hover effects */
.blog-card-item:hover .blog-card-image-link img {
    transform: scale(1.05);
}

.blog-card-item:hover .blog-card-image-overlay {
    opacity: 1;
}

.blog-card-item:hover .blog-card-arrow {
    transform: translateX(5px);
}

.blog-card-info {
    display: flex;
    flex-direction: column;
}

.blog-card-category-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-oak);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.blog-card-title {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    line-height: 1.3;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--accent-oak);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    text-align: left;
}

.blog-card-link-more {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.blog-card-link-more:hover {
    color: var(--accent-oak);
}

/* Responsive collapse */
@media (max-width: 768px) {
    .blog-card-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }

    .blog-card-title {
        font-size: 1.4rem;
    }

    .blog-navigation {
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .blog-nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .blog-post-title {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
        line-height: 1.25;
    }

    .blog-post-subtitle {
        font-size: 1rem;
    }

    .blog-post-meta {
        margin-bottom: 1rem;
        padding-left: 0.6rem;
    }

    .blog-post-content {
        font-size: 1rem;
        line-height: 1.75;
    }

    .blog-post-content p {
        text-align: left;
    }

    .blog-post-content p:first-of-type::first-letter {
        font-size: 3rem;
    }

    .blog-post-content blockquote {
        margin: 1.5rem 0;
        padding-left: 1rem;
        font-size: 1rem;
    }

    .blog-post-footer {
        padding: 1rem;
    }

    .blog-post-contact {
        flex-direction: column;
        align-items: flex-start;
    }
}

.blog-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.blog-navigation span {
    color: var(--text-secondary);
    font-weight: 500;
}

.blog-nav-link {
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.blog-nav-link:hover {
    border-color: var(--accent-oak);
    color: var(--accent-oak);
    background: rgba(139, 90, 43, 0.05);
}

.blog-post {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-post-header {
    margin-bottom: var(--spacing-md);
}

.blog-post-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-oak);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.blog-post-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.blog-post-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.blog-post-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-left: 2px solid var(--accent-oak);
    padding-left: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Premium drop cap for first paragraph of content */
.blog-post-content p:first-of-type::first-letter {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    float: left;
    margin-right: 0.5rem;
    line-height: 0.85;
    color: var(--accent-oak);
    margin-top: 0.1rem;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    font-family: var(--font-heading);
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.blog-post-content blockquote {
    border-left: 3px solid var(--accent-oak);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.blog-post-footer {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.blog-post-contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: 0.5rem;
}

.blog-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-contact-item a {
    color: var(--text-primary);
    border-bottom: 1px dotted var(--accent-oak);
}

.blog-contact-item a:hover {
    color: var(--accent-oak);
    border-color: transparent;
}

.inline-link-text {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: var(--accent-oak);
    font-weight: 500;
    transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.inline-link-text:hover {
    color: var(--accent-oak);
    text-decoration-color: var(--text-primary);
}

/* Contact Page Specific Quote Form (Dark Theme Overrides) */
.contact-section .quote-form {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: var(--spacing-md);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-section .quote-form input,
.contact-section .quote-form select,
.contact-section .quote-form textarea {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 2px;
    padding: 0.8rem;
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
}

.contact-section .quote-form input:focus,
.contact-section .quote-form select:focus,
.contact-section .quote-form textarea:focus {
    border-color: var(--accent-oak);
    outline: none;
}

.contact-section .quote-form .form-submit {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    width: auto;
    display: inline-block;
}

.contact-section .quote-form .form-submit:hover {
    background: transparent;
    color: var(--text-primary);
}

/* ======================================== */
/*           MOBILE RESPONSIVE STYLES       */
/* ======================================== */

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .product-info-panel {
        position: static;
    }
}

@media (max-width: 768px) {

    /* ========== COMPLETE FIXED MOBILE NAV ========== */
    
    .navbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0.8rem !important;
        position: relative;
        gap: 0.3rem;
    }

    /* ===== LOGO + SOCIALS CONTAINER ===== */
    .navbar-brand-group {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        flex: 0 1 auto;
        max-width: 70%;
        overflow: hidden;
    }

    /* ===== LOGO ===== */
    .logo {
        flex-shrink: 0;
    }

    .logo img {
        max-height: 35px !important;
        width: auto;
    }

    /* ===== SOCIAL ICONS - COMPACT AND NON-INTRUSIVE ===== */
    .header-socials {
        display: flex !important;
        align-items: center;
        gap: 0.2rem;
        margin-left: 0.2rem;
        flex-shrink: 0;
    }

    .header-socials a {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        border: none !important;
        background: transparent !important;
        padding: 2px !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .header-socials a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        transform: none !important;
    }

    .header-socials svg {
        width: 14px !important;
        height: 14px !important;
        fill: #ffffff !important;
    }

    /* ===== HAMBURGER MENU BUTTON ===== */
    .menu-toggle {
        display: block !important;
        flex-shrink: 0;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        font-size: 1.5rem;
        color: #ffffff !important;
        cursor: pointer;
        padding: 0.2rem 0.6rem;
        line-height: 1.4;
        z-index: 101;
        margin-left: auto;
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* ===== NAV LINKS (DROPDOWN MENU) ===== */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        pointer-events: none;
        border-radius: 0 0 8px 8px;
        z-index: 999;
        flex-basis: 100%;
        order: 10;
    }

    .nav-links.active {
        max-height: 600px;
        opacity: 1;
        padding: var(--spacing-md) 0;
        pointer-events: all;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 2px;
        display: block;
        text-align: center;
        width: 100%;
        padding: 0.8rem 0;
        transition: background 0.3s ease;
        color: #ffffff !important;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.05);
    }

    /* ===== MOBILE DROPDOWN ===== */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 0.25rem 0 !important;
        min-width: unset !important;
        width: 100% !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-toggle .arrow {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle .arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu::before {
        display: none !important;
    }

    /* ===== KEEP REST OF MOBILE STYLES ===== */
    /* (The rest of your mobile styles stay the same) */
    
    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-details {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: var(--spacing-md);
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 20px;
        height: 20px;
    }

    .blog-post-contact {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .materials-list {
        gap: var(--spacing-sm);
    }

    .material-item {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }

    .craft-text p {
        max-width: 100%;
    }

    .facebook-widget-wrapper {
        margin-top: var(--spacing-md);
    }

    .social-intro-text .section-title {
        text-align: center !important;
    }

    .social-intro-text .section-desc {
        text-align: center !important;
    }

    .social-channels {
        align-items: center;
    }

    .social-channels .inline-link {
        justify-content: center;
    }
}