/* Exquisite Wallpaper Hanger - Seattle - Deep Cocoa Brown Theme */

/* CSS Variables */
:root {
    --primary-bg: #3d2b1f;
    --secondary-bg: #6b5344;
    --light-section: #e8ddd4;
    --text-light: #f5f0eb;
    --text-dark: #3d2b1f;
    --accent-copper: #b87333;
    --accent-charcoal: #4a4a4a;
    --white: #ffffff;
    --shadow: rgba(61, 43, 31, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-section);
}

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

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

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

/* Top Bar */
.top-bar {
    background: var(--primary-bg);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.top-bar-contact a:hover {
    color: var(--accent-copper);
}

.top-bar-contact svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.top-bar-address {
    color: var(--text-light);
    opacity: 0.9;
}

/* Header */
header {
    background: var(--secondary-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

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

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: var(--text-light);
    padding: 10px 15px;
    display: block;
    font-weight: 500;
    border-radius: 5px;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-copper);
}

/* Dropdown Menu */
nav ul li .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-bg);
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 5px 20px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}

nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

nav ul li .dropdown a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

nav ul li .dropdown a:last-child {
    border-bottom: none;
}

nav ul li .dropdown a:hover {
    background: var(--accent-copper);
    color: var(--white);
}

.nav-cta {
    background: var(--accent-copper) !important;
    color: var(--white) !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
}

.nav-cta:hover {
    background: #a06329 !important;
    transform: translateY(-2px);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(61, 43, 31, 0.85), rgba(61, 43, 31, 0.85)), url('../images/hero-seattle-wallpaper-installation.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-copper);
}

/* Form Styles */
.feedback-form-container {
    background: var(--light-section);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
}

.feedback-form-container h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-copper);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--accent-copper);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: #a06329;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(184, 115, 51, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

#form-success {
    text-align: center;
    padding: 20px;
    color: var(--accent-copper);
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

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

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

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

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.9;
}

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

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--accent-charcoal);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.service-card a {
    color: var(--accent-copper);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card a:hover {
    gap: 10px;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent-copper);
}

.feature-item p {
    opacity: 0.9;
    line-height: 1.7;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Service Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.area-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 3px 15px var(--shadow);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    background: var(--accent-copper);
    color: var(--white);
}

.area-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.area-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-copper);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--accent-charcoal);
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

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

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

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(61, 43, 31, 0.9), rgba(61, 43, 31, 0.9)), url('../images/hero-luxury-interior-seattle.webp') center/cover no-repeat fixed;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--accent-copper);
    color: var(--white);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.cta-btn:hover {
    background: #a06329;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.4);
}

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

.cta-btn-outline:hover {
    background: var(--accent-copper);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--primary-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-about h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-about h3 span {
    color: var(--accent-copper);
}

.footer-about p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-copper);
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
    opacity: 0.9;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-copper);
    opacity: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-copper);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--accent-copper);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(61, 43, 31, 0.9), rgba(61, 43, 31, 0.9)), url('../images/hero-seattle-wallpaper-installation.webp') center/cover no-repeat;
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    opacity: 0.9;
}

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

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

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-main p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-main ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-main li {
    margin-bottom: 10px;
}

.content-sidebar {
    position: sticky;
    top: 100px;
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px var(--shadow);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(184, 115, 51, 0.1);
}

.faq-answer {
    padding: 0 25px 20px;
    line-height: 1.8;
    color: var(--accent-charcoal);
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-item-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item-content a {
    color: var(--accent-copper);
}

/* Sticky Quote Button */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-copper);
    color: var(--white);
    padding: 18px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 25px rgba(184, 115, 51, 0.5);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.sticky-quote-btn:hover {
    background: #a06329;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(184, 115, 51, 0.6);
}

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

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

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--accent-charcoal);
    z-index: 1;
    background: none;
    border: none;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent-copper);
}

.modal-content .feedback-form-container {
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-bg);
        padding: 20px;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    nav ul li .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        display: none;
    }
    
    nav ul li:hover .dropdown {
        display: block;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .about-grid,
    .contact-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .sticky-quote-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .sticky-quote-btn:hover {
        transform: translateX(50%) translateY(-3px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .feedback-form-container {
        padding: 25px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

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

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