/* ============================================
   LuxeStride Wallpapering — Main Stylesheet
   Color Palette:
   Primary BG: #1C1A18 (deep espresso)
   Secondary BG: #EAE4D8 (warm beige)
   Light sections: #F7F3EC (soft linen)
   Text on dark: #F5F1E8 (ivory)
   Text on light: #2A2724 (dark brown)
   Accent: #B08D57 (bronze)
   ============================================ */

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

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2A2724;
    background: #F7F3EC;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: #B08D57;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease;
}

a:hover {
    color: #8a6d3b;
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.3;
    color: #2A2724;
}

h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 0.8rem; margin-top: 2rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.6rem; margin-top: 1.5rem; }

p { margin-bottom: 1rem; }

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

li { margin-bottom: 0.4rem; }

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

/* === HEADER === */
.site-header {
    background: #1C1A18;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 6px 20px;
    background: rgba(0,0,0,0.2);
    font-size: 0.85rem;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-top a {
    color: #EAE4D8;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.header-top a:hover {
    color: #B08D57;
    text-decoration: none;
}

.header-top svg {
    width: 16px;
    height: 16px;
    fill: #B08D57;
    flex-shrink: 0;
}

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

.logo a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #F5F1E8;
    letter-spacing: 1px;
}

.logo a:hover {
    color: #B08D57;
    text-decoration: none;
}

.logo span {
    color: #B08D57;
}

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

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

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

.main-nav > ul > li > a {
    color: #F5F1E8;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 16px;
    display: block;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    color: #B08D57;
    border-bottom-color: #B08D57;
    text-decoration: none;
}

/* === DROPDOWN === */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1C1A18;
    min-width: 260px;
    border-top: 2px solid #B08D57;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    list-style: none;
    padding: 8px 0;
    z-index: 100;
}

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

.dropdown-menu li {
    opacity: 0;
    transform: translateX(-10px);
    margin: 0;
}

.main-nav > ul > li:hover > .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu li:nth-child(1) { transition: opacity 0.3s 0.05s, transform 0.3s 0.05s; }
.dropdown-menu li:nth-child(2) { transition: opacity 0.3s 0.1s, transform 0.3s 0.1s; }
.dropdown-menu li:nth-child(3) { transition: opacity 0.3s 0.15s, transform 0.3s 0.15s; }
.dropdown-menu li:nth-child(4) { transition: opacity 0.3s 0.2s, transform 0.3s 0.2s; }
.dropdown-menu li:nth-child(5) { transition: opacity 0.3s 0.25s, transform 0.3s 0.25s; }
.dropdown-menu li:nth-child(6) { transition: opacity 0.3s 0.3s, transform 0.3s 0.3s; }
.dropdown-menu li:nth-child(7) { transition: opacity 0.3s 0.35s, transform 0.3s 0.35s; }
.dropdown-menu li:nth-child(8) { transition: opacity 0.3s 0.4s, transform 0.3s 0.4s; }
.dropdown-menu li:nth-child(9) { transition: opacity 0.3s 0.45s, transform 0.3s 0.45s; }
.dropdown-menu li:nth-child(10) { transition: opacity 0.3s 0.5s, transform 0.3s 0.5s; }
.dropdown-menu li:nth-child(11) { transition: opacity 0.3s 0.55s, transform 0.3s 0.55s; }

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #EAE4D8;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(176, 141, 87, 0.1);
    color: #B08D57;
    padding-left: 26px;
    border-left-color: #B08D57;
    text-decoration: none;
}

/* === HAMBURGER === */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #F5F1E8;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === MOBILE NAV === */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: #1C1A18;
    z-index: 1050;
    flex-direction: column;
    padding: 70px 0 30px 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}

.mobile-nav-overlay.open {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.mobile-nav-close svg {
    width: 28px;
    height: 28px;
    stroke: #F5F1E8;
    transition: stroke 0.3s;
}

.mobile-nav-close:hover svg {
    stroke: #B08D57;
}

.mobile-nav-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-overlay > ul > li > a {
    display: block;
    padding: 14px 24px;
    color: #F5F1E8;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.mobile-nav-overlay > ul > li > a:hover {
    color: #B08D57;
    text-decoration: none;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 24px;
    color: #F5F1E8;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
}

.mobile-dropdown-toggle:hover {
    color: #B08D57;
}

.mobile-dropdown-toggle svg {
    width: 16px;
    height: 16px;
    stroke: #B08D57;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.mobile-dropdown {
    display: none;
    background: rgba(0,0,0,0.2);
    padding: 4px 0;
}

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

.mobile-dropdown a {
    display: block;
    padding: 10px 24px 10px 40px;
    color: #EAE4D8;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    text-align: left;
}

.mobile-dropdown a:hover {
    color: #B08D57;
    text-decoration: none;
}

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

.mobile-backdrop.open {
    display: block;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28,26,24,0.85) 0%, rgba(28,26,24,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    color: #F5F1E8;
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

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

.hero-text p {
    color: rgba(245, 241, 232, 0.85);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28,26,24,0.88) 0%, rgba(28,26,24,0.6) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: #F5F1E8;
    font-size: 2.6rem;
}

.page-hero p {
    color: rgba(245, 241, 232, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
}

.breadcrumb {
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: #B08D57;
}

.breadcrumb span {
    color: rgba(245, 241, 232, 0.6);
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #B08D57;
    color: #1C1A18;
    border-color: #B08D57;
}

.btn-primary:hover {
    background: transparent;
    color: #B08D57;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #F5F1E8;
    border-color: #F5F1E8;
}

.btn-outline:hover {
    background: #F5F1E8;
    color: #1C1A18;
    text-decoration: none;
}

.btn-dark {
    background: #1C1A18;
    color: #F5F1E8;
    border-color: #1C1A18;
}

.btn-dark:hover {
    background: #B08D57;
    border-color: #B08D57;
    color: #1C1A18;
    text-decoration: none;
}

.btn-bronze-outline {
    background: transparent;
    color: #B08D57;
    border-color: #B08D57;
}

.btn-bronze-outline:hover {
    background: #B08D57;
    color: #1C1A18;
    text-decoration: none;
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
}

.section-dark {
    background: #1C1A18;
    color: #F5F1E8;
}

.section-dark h2, .section-dark h3 {
    color: #F5F1E8;
}

.section-beige {
    background: #EAE4D8;
}

.section-linen {
    background: #F7F3EC;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #B08D57;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 16px auto 0;
}

/* === GRID LAYOUTS === */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* === CARDS === */
.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.card-body {
    padding: 24px;
}

.card-body h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.card-body h3 a {
    color: #2A2724;
}

.card-body h3 a:hover {
    color: #B08D57;
}

/* === CONTENT SECTIONS === */
.content-section {
    padding: 60px 0;
}

.content-block {
    margin-bottom: 40px;
}

.content-block img {
    border-radius: 8px;
    margin: 20px 0;
}

/* === FORM STYLES === */
.feedback-form-container {
    background: rgba(28, 26, 24, 0.95);
    padding: 36px;
    border-radius: 12px;
    border: 1px solid rgba(176, 141, 87, 0.2);
    max-width: 500px;
}

.feedback-form-container h3 {
    color: #F5F1E8;
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 0;
    text-align: center;
}

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

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(176, 141, 87, 0.3);
    border-radius: 6px;
    color: #F5F1E8;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 241, 232, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B08D57;
    background: rgba(255,255,255,0.12);
}

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

.form-submit {
    text-align: center;
    margin-top: 8px;
}

.submit-btn {
    background: #B08D57;
    color: #1C1A18;
    border: 2px solid #B08D57;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: inherit;
}

.submit-btn:hover {
    background: transparent;
    color: #B08D57;
}

#form-success p {
    color: #B08D57;
    text-align: center;
    font-size: 1rem;
    padding: 20px;
}

/* === MAP === */
.map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

/* === FAQ === */
.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(176, 141, 87, 0.05);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #B08D57;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding: 0 24px 20px;
    max-height: 500px;
}

/* === FOOTER === */
.site-footer {
    background: #1C1A18;
    color: #EAE4D8;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    color: rgba(234, 228, 216, 0.7);
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-col h4 {
    color: #B08D57;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(234, 228, 216, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #B08D57;
    text-decoration: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(234, 228, 216, 0.7);
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: #B08D57;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(234, 228, 216, 0.5);
}

/* === STICKY QUOTE BUTTON === */
.sticky-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #B08D57;
    color: #1C1A18;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(176, 141, 87, 0.4);
    transition: all 0.3s;
    border: none;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.sticky-quote-btn:hover {
    background: #9a7a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(176, 141, 87, 0.5);
}

/* === MODAL === */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

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

.modal-content {
    position: relative;
    max-width: 520px;
    width: 100%;
    animation: modalIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: #1C1A18;
    border: 2px solid #B08D57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.modal-close:hover {
    background: #B08D57;
}

.modal-close svg {
    width: 16px;
    height: 16px;
    stroke: #F5F1E8;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* === CTA BANNER === */
.cta-banner {
    background: #1C1A18;
    padding: 50px 0;
    text-align: center;
}

.cta-banner h2 {
    color: #F5F1E8;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inline {
    background: rgba(176, 141, 87, 0.08);
    border: 1px solid rgba(176, 141, 87, 0.2);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}

.cta-inline p {
    margin-bottom: 16px;
}

/* === FEATURES / ICON BOXES === */
.icon-box {
    text-align: center;
    padding: 30px 20px;
}

.icon-box-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 141, 87, 0.1);
    border-radius: 12px;
}

.icon-box-icon svg {
    width: 30px;
    height: 30px;
    stroke: #B08D57;
    fill: none;
    stroke-width: 1.5;
}

/* === SERVICE LIST (for city pages) === */
.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.service-list-item:hover {
    transform: translateX(4px);
}

.service-list-item svg {
    width: 20px;
    height: 20px;
    stroke: #B08D57;
    flex-shrink: 0;
}

.service-list-item a {
    color: #2A2724;
    font-weight: 500;
}

.service-list-item a:hover {
    color: #B08D57;
}

/* === NEIGHBORHOODS === */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.neighborhood-tag {
    background: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    border: 1px solid rgba(176, 141, 87, 0.15);
}

/* === IMAGE GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .feedback-form-container {
        max-width: 100%;
    }

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

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .header-top {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav-overlay {
        display: flex;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .section {
        padding: 50px 0;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

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

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

    .service-list {
        grid-template-columns: 1fr;
    }

    .sticky-quote-btn {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
        white-space: nowrap;
    }

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

    .mobile-nav-overlay {
        width: 55%;
    }
}

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

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

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

    .mobile-nav-overlay {
        width: 65%;
    }
}
