/* ===== Creative Wall Outfitters - Premium Dark Marble Design ===== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0B0B0D;
    --bg-secondary: #1A1A1F;
    --bg-light: #F3EFE7;
    --text-light: #FFFFFF;
    --text-dark: #1C1C1C;
    --accent: #B08A5C;
    --accent-hover: #9A764D;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 8px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(176, 138, 92, 0.2);
    padding: 12px 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
}

.header-contact a {
    color: var(--accent);
    font-weight: 500;
}

.header-contact a:hover {
    color: var(--text-light);
}

/* ===== Navigation ===== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.nav-list > li > a:hover {
    color: var(--accent);
}

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

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-secondary);
    border: 1px solid rgba(176, 138, 92, 0.2);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(176, 138, 92, 0.1);
    color: var(--accent);
}

/* ===== Mobile Menu ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 2000;
    padding: 60px 30px 30px;
    overflow-y: auto;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(176, 138, 92, 0.3);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-list a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-list a:hover {
    color: var(--accent);
}

.mobile-dropdown-title {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
}

.mobile-dropdown-items {
    padding-left: 16px;
    display: none;
}

.mobile-dropdown-items.active {
    display: block;
}

.mobile-dropdown-items a {
    font-size: 0.9rem;
    padding: 10px 0;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
}

.mobile-overlay.active {
    display: block;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-wallpaper-installation.webp') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat .label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 20px rgba(176, 138, 92, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-primary);
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-primary);
}

.section-darker {
    background: var(--bg-secondary);
}

.section-light {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-light .section-subtitle {
    color: rgba(28,28,28,0.7);
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(176, 138, 92, 0.15);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(176, 138, 92, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-card .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ===== Image Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===== Contact Form ===== */
.feedback-form-container {
    background: var(--bg-secondary);
    border: 1px solid rgba(176, 138, 92, 0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 560px;
}

.feedback-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--text-light);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form .form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(176, 138, 92, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 16px;
}

.contact-form .form-submit {
    margin-top: 8px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 20px rgba(176, 138, 92, 0.3);
}

#form-success {
    text-align: center;
    padding: 30px;
}

#form-success p {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ===== Areas Section ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.area-card {
    display: block;
    background: var(--bg-secondary);
    border: 1px solid rgba(176, 138, 92, 0.1);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.area-card:hover {
    border-color: var(--accent);
    background: rgba(176, 138, 92, 0.05);
    color: var(--accent);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(176, 138, 92, 0.2);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ===== Sticky Quote Button ===== */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 28px;
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(176, 138, 92, 0.4);
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.sticky-quote-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(176, 138, 92, 0.5);
}

/* ===== Modal ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Map ===== */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(176, 138, 92, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== Page Header (inner pages) ===== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* ===== Content Sections ===== */
.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.content-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.content-section p {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-section ul li,
.content-section ol li {
    padding: 6px 0;
    color: rgba(255,255,255,0.8);
    list-style: disc;
}

.content-section ol li {
    list-style: decimal;
}

.section-light .content-section h2 {
    color: var(--text-dark);
}

.section-light .content-section p,
.section-light .content-section li {
    color: rgba(28,28,28,0.8);
}

/* ===== CTA Block ===== */
.cta-block {
    background: rgba(176, 138, 92, 0.08);
    border: 1px solid rgba(176, 138, 92, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.cta-block p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.cta-block .btn {
    margin: 0 8px;
}

/* ===== FAQ ===== */
.faq-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(176, 138, 92, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 24px 30px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.faq-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ===== About Page ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(176, 138, 92, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

.contact-info-text h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--accent);
}

.contact-info-text p,
.contact-info-text a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

/* ===== Image with text ===== */
.img-text-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.img-text-section.reverse {
    direction: rtl;
}

.img-text-section.reverse > * {
    direction: ltr;
}

.img-text-image {
    border-radius: 16px;
    overflow: hidden;
}

.img-text-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ===== Neighborhoods ===== */
.neighborhoods-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.neighborhoods-list li {
    list-style: none !important;
    padding: 10px 16px;
    background: rgba(176, 138, 92, 0.05);
    border: 1px solid rgba(176, 138, 92, 0.15);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .about-grid,
    .contact-grid,
    .img-text-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

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

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

    .sticky-quote-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }

    .sticky-quote-btn:hover {
        transform: translateX(50%) translateY(-2px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .feedback-form-container {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}
