/* ===== WILLIAMSVILLE WALLPAPER HANGER - PREMIUM STYLESHEET ===== */
/* Color Palette:
   Primary BG: #101010 (matte black)
   Secondary BG: #1F1F1F (charcoal graphite)
   Light sections: #F1EEE8 (soft stone)
   Text on dark: #FFFFFF
   Text on light: #1A1A1A
   Accent: #B08A5A (brushed bronze)
*/

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

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #101010;
    color: #FFFFFF;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.8rem; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; font-size: 1.05rem; }

a {
    color: #B08A5A;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: #9B774A; }

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

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.5rem; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(176, 138, 90, 0.15);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.logo span { color: #B08A5A; }

.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.header-contact a {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header-contact a:hover { color: #B08A5A; }

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    padding: 0;
    margin: 0;
}

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

.nav-list > li > a {
    display: block;
    padding: 0.8rem 1.1rem;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list > li > a:hover { color: #B08A5A; }

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #1F1F1F;
    border: 1px solid rgba(176, 138, 90, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

.nav-dropdown li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #FFFFFF;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-dropdown li a:hover {
    background: rgba(176, 138, 90, 0.1);
    color: #B08A5A;
    padding-left: 1.5rem;
}

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

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    background: #1F1F1F;
    z-index: 2000;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(176, 138, 90, 0.2);
}

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

.mobile-nav-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.mobile-nav-close:hover { color: #B08A5A; }

.mobile-nav-list {
    list-style: none;
    padding: 3rem 0 0;
    margin: 0;
}

.mobile-nav-list li { margin-bottom: 0; }

.mobile-nav-list > li > a {
    display: block;
    padding: 0.9rem 0;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-list > li > a:hover { color: #B08A5A; }

.mobile-dropdown {
    list-style: none;
    padding: 0 0 0 1rem;
    display: none;
}

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

.mobile-dropdown li a {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.mobile-dropdown li a:hover { color: #B08A5A; }

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

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16,16,16,0.85) 0%, rgba(16,16,16,0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.hero-text h1 span { color: #B08A5A; }

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    fill: #B08A5A;
}

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: #1F1F1F;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(176,138,90,0.05) 0%, transparent 50%);
}

.page-hero h1 { color: #FFFFFF; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: #B08A5A;
    color: #101010;
}

.btn-primary:hover {
    background: #9B774A;
    color: #101010;
    box-shadow: 0 8px 25px rgba(176, 138, 90, 0.3);
}

.btn-outline {
    background: transparent;
    color: #B08A5A;
    border: 2px solid #B08A5A;
}

.btn-outline:hover {
    background: #B08A5A;
    color: #101010;
}

.btn-white {
    background: #FFFFFF;
    color: #101010;
}

.btn-white:hover {
    background: #F1EEE8;
    color: #101010;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
}

.section-dark { background: #101010; }
.section-darker { background: #1F1F1F; }
.section-light { background: #F1EEE8; color: #1A1A1A; }

.section-light h2,
.section-light h3 { color: #1A1A1A; }

.section-light p { color: #333; }
.section-light a { color: #B08A5A; }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.section-light .section-header p { color: #555; }

.section-label {
    display: inline-block;
    color: #B08A5A;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #1F1F1F;
    border: 1px solid rgba(176, 138, 90, 0.1);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #B08A5A, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover::before { opacity: 1; }

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

.service-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: #B08A5A;
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 { color: #FFFFFF; margin-bottom: 0.8rem; }
.service-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #B08A5A;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.service-card .card-link:hover { gap: 0.8rem; }

/* ===== PORTFOLIO / GALLERY ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

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

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

.portfolio-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(16,16,16,0.9));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-item-overlay { transform: translateY(0); }

.portfolio-item-overlay h3 { color: #FFFFFF; font-size: 1.1rem; }
.portfolio-item-overlay p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

/* ===== PROCESS SECTION ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: 2rem;
    background: rgba(176, 138, 90, 0.05);
    border: 1px solid rgba(176, 138, 90, 0.1);
    border-radius: 12px;
    counter-increment: step;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(176, 138, 90, 0.2);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.process-step h3 { color: #FFFFFF; margin-bottom: 0.5rem; }
.process-step p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #1F1F1F;
    border: 1px solid rgba(176, 138, 90, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: #B08A5A;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #FFFFFF;
}

.testimonial-location {
    color: #B08A5A;
    font-size: 0.85rem;
}

/* ===== TRUST SECTION ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-card {
    padding: 2rem 1.5rem;
}

.trust-card-number {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #B08A5A;
    margin-bottom: 0.5rem;
}

.trust-card-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #1F1F1F 0%, #101010 100%);
    border-top: 1px solid rgba(176, 138, 90, 0.1);
    border-bottom: 1px solid rgba(176, 138, 90, 0.1);
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

.cta-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(176, 138, 90, 0.05);
    border: 1px solid rgba(176, 138, 90, 0.15);
    border-radius: 12px;
    text-align: center;
}

.cta-inline p { margin-bottom: 1rem; color: rgba(255,255,255,0.8); }

/* ===== CONTACT FORM ===== */
.feedback-form-container {
    background: #1F1F1F;
    border: 1px solid rgba(176, 138, 90, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 600px;
}

.feedback-form-container h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

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

.form-group { margin-bottom: 1rem; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B08A5A;
}

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

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

.form-submit { margin-top: 1rem; }

.submit-btn {
    width: 100%;
    height: 56px;
    background: #B08A5A;
    color: #101010;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #9B774A;
    box-shadow: 0 8px 25px rgba(176, 138, 90, 0.3);
}

#form-success {
    text-align: center;
    padding: 2rem;
}

#form-success p {
    color: #B08A5A;
    font-size: 1.1rem;
}

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

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

/* ===== FOOTER ===== */
.site-footer {
    background: #0A0A0A;
    border-top: 1px solid rgba(176, 138, 90, 0.1);
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: #B08A5A; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    height: 56px;
    padding: 0 2rem;
    background: #B08A5A;
    color: #101010;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(176, 138, 90, 0.4);
    transition: all 0.3s ease;
}

.sticky-quote-btn:hover {
    background: #9B774A;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(176, 138, 90, 0.5);
}

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

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

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close:hover { color: #B08A5A; }

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

.faq-item {
    border-bottom: 1px solid rgba(176, 138, 90, 0.1);
    padding: 1.5rem 0;
}

.faq-question {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #B08A5A;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: #B08A5A; }
.breadcrumb span { margin: 0 0.5rem; }

/* ===== CONTENT SECTIONS (Service/City pages) ===== */
.content-section { padding: 4rem 0; }

.content-section h2 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.content-section h3 {
    color: #B08A5A;
    margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.content-section p {
    color: rgba(255,255,255,0.8);
}

.section-light .content-section h2 { color: #1A1A1A; }
.section-light .content-section h3 { color: #B08A5A; }
.section-light .content-section p { color: #333; }
.section-light .content-section ul,
.section-light .content-section ol { color: #333; }

/* Areas grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.areas-grid a {
    display: block;
    padding: 1rem 1.2rem;
    background: rgba(176, 138, 90, 0.05);
    border: 1px solid rgba(176, 138, 90, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 500;
    transition: all 0.3s ease;
}

.areas-grid a:hover {
    background: rgba(176, 138, 90, 0.15);
    border-color: #B08A5A;
    color: #B08A5A;
}

/* ===== IMAGE SECTIONS ===== */
.img-section {
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
}

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

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid img {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(176, 138, 90, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    stroke: #B08A5A;
    fill: none;
}

.contact-info-text h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .menu-toggle { display: flex; }
    .mobile-nav { display: block; }
    .header-contact { display: none; }

    .hero { min-height: auto; padding: 8rem 0 4rem; }
    .hero-content { padding: 2rem 1.5rem; }

    .section { padding: 4rem 0; }
    .container { padding: 0 1.2rem; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

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

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

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero-trust { flex-direction: column; gap: 1rem; }
    .trust-grid { grid-template-columns: 1fr; }
}
