/* ===== PRO WALLPAPER HANGER - STYLE.CSS ===== */
/* Color Palette:
   Primary BG: #2A221E (dark walnut)
   Secondary BG: #3A312C (espresso taupe)
   Light sections: #F5EFE5 (warm parchment)
   Text on dark: #F7F4ED (soft ivory)
   Text on light: #2F2A27 (walnut charcoal)
   Accent: #BA9766 (aged brass)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ===== 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;
    font-weight: 400;
    line-height: 1.7;
    color: #2F2A27;
    background-color: #F5EFE5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

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

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

ul, ol {
    list-style: none;
}

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

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

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    background: #1E1815;
    font-size: 0.85rem;
}

.header-top a {
    color: #BA9766;
    font-weight: 500;
}

.header-top a:hover {
    color: #F7F4ED;
}

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

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #F7F4ED;
}

.header-contact-item svg {
    width: 16px;
    height: 16px;
    fill: #BA9766;
    flex-shrink: 0;
}

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

.logo a {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #F7F4ED;
    letter-spacing: -0.5px;
}

.logo span {
    color: #BA9766;
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    color: #F7F4ED;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #BA9766;
}

/* Dropdown */
.nav-item.has-dropdown > .nav-link::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #BA9766;
    border-bottom: 1.5px solid #BA9766;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover > .nav-link::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #2A221E;
    border: 1px solid rgba(186,151,102,0.2);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    z-index: 1001;
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #F7F4ED;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-5px);
}

.nav-item.has-dropdown:hover .dropdown-menu a {
    opacity: 1;
    transform: translateY(0);
}

.nav-item.has-dropdown:hover .dropdown-menu a:nth-child(1) { transition-delay: 0.05s; }
.nav-item.has-dropdown:hover .dropdown-menu a:nth-child(2) { transition-delay: 0.1s; }
.nav-item.has-dropdown:hover .dropdown-menu a:nth-child(3) { transition-delay: 0.15s; }
.nav-item.has-dropdown:hover .dropdown-menu a:nth-child(4) { transition-delay: 0.2s; }
.nav-item.has-dropdown:hover .dropdown-menu a:nth-child(5) { transition-delay: 0.25s; }
.nav-item.has-dropdown:hover .dropdown-menu a:nth-child(6) { transition-delay: 0.3s; }
.nav-item.has-dropdown:hover .dropdown-menu a:nth-child(7) { transition-delay: 0.35s; }
.nav-item.has-dropdown:hover .dropdown-menu a:nth-child(8) { transition-delay: 0.4s; }
.nav-item.has-dropdown:hover .dropdown-menu a:nth-child(9) { transition-delay: 0.45s; }
.nav-item.has-dropdown:hover .dropdown-menu a:nth-child(10) { transition-delay: 0.5s; }

.dropdown-menu a:hover {
    background: rgba(186,151,102,0.1);
    color: #BA9766;
    padding-left: 26px;
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #F7F4ED;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #2A221E;
    z-index: 1050;
    transition: right 0.4s ease;
    overflow-y: auto;
    padding: 80px 30px 30px;
}

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

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(186,151,102,0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(186,151,102,0.1);
    border-color: #BA9766;
}

.mobile-nav-close svg {
    width: 18px;
    height: 18px;
    stroke: #F7F4ED;
}

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

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

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

.mobile-nav-list a {
    display: block;
    padding: 14px 0;
    color: #F7F4ED;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(186,151,102,0.1);
    text-align: left;
}

.mobile-nav-list a:hover {
    color: #BA9766;
}

.mobile-nav-list .mobile-dropdown-title {
    color: #BA9766;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 0 8px;
    border-bottom: none;
    cursor: pointer;
}

.mobile-dropdown-items {
    padding-left: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-dropdown-items.open {
    max-height: 600px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: #BA9766;
    color: #2A221E;
}

.btn-primary:hover {
    background: #A28153;
    color: #2A221E;
    box-shadow: 0 8px 25px rgba(186,151,102,0.3);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: #BA9766;
    color: #2A221E;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: #2A221E;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42,34,30,0.85) 0%, rgba(42,34,30,0.5) 100%);
}

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

.hero-text h1 {
    font-size: 3rem;
    color: #F7F4ED;
    margin-bottom: 20px;
    line-height: 1.15;
}

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

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

.hero-trust {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.trust-item .number {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #BA9766;
}

.trust-item .label {
    font-size: 0.8rem;
    color: rgba(247,244,237,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.section-dark {
    background: #2A221E;
    color: #F7F4ED;
}

.section-alt {
    background: #3A312C;
    color: #F7F4ED;
}

.section-light {
    background: #F5EFE5;
    color: #2F2A27;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 50px;
    max-width: 600px;
}

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

.service-card {
    background: #3A312C;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(186,151,102,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-color: rgba(186,151,102,0.3);
}

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

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

.service-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #F7F4ED;
}

.service-card-content p {
    font-size: 0.9rem;
    color: rgba(247,244,237,0.7);
    margin-bottom: 16px;
}

.service-card-content a {
    color: #BA9766;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card-content a:hover {
    color: #F7F4ED;
}

/* ===== SPLIT LAYOUT ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

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

.split-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

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

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.split-text p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.split-text ul {
    margin-bottom: 20px;
}

.split-text ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 0.95rem;
}

.split-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #BA9766;
    border-radius: 50%;
}

/* ===== CONTACT FORM ===== */
.feedback-form-container {
    background: #3A312C;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(186,151,102,0.2);
}

.feedback-form-container h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    color: #F7F4ED;
    margin-bottom: 24px;
    text-align: center;
}

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

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(247,244,237,0.05);
    border: 1px solid rgba(186,151,102,0.3);
    border-radius: 8px;
    color: #F7F4ED;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #BA9766;
    background: rgba(247,244,237,0.08);
    box-shadow: 0 0 0 3px rgba(186,151,102,0.1);
}

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

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

.contact-form .form-group:last-of-type {
    margin-bottom: 16px;
}

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

.submit-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #BA9766;
    color: #2A221E;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #A28153;
    box-shadow: 0 8px 25px rgba(186,151,102,0.3);
    transform: translateY(-2px);
}

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

#form-success p {
    color: #BA9766;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 60px 0;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 2px solid rgba(186,151,102,0.2);
}

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

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

.area-link {
    display: block;
    padding: 16px 20px;
    background: rgba(186,151,102,0.08);
    border: 1px solid rgba(186,151,102,0.2);
    border-radius: 8px;
    color: #F7F4ED;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.area-link:hover {
    background: rgba(186,151,102,0.15);
    border-color: #BA9766;
    transform: translateY(-2px);
}

/* ===== CTA BLOCK ===== */
.cta-block {
    text-align: center;
    padding: 40px;
    margin: 40px 0;
    background: rgba(186,151,102,0.08);
    border-radius: 12px;
    border: 1px solid rgba(186,151,102,0.15);
}

.cta-block h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.cta-block p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.section-light .cta-block {
    background: rgba(42,34,30,0.05);
    border-color: rgba(42,34,30,0.1);
}

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

.faq-item {
    margin-bottom: 16px;
    border: 1px solid rgba(186,151,102,0.2);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(186,151,102,0.03);
}

.faq-question {
    padding: 20px 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(186,151,102,0.08);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: #BA9766;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    font-size: 0.9rem;
    line-height: 1.8;
}

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

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

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(247,244,237,0.7);
    margin-top: 12px;
    line-height: 1.7;
}

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

.footer-col a {
    display: block;
    padding: 4px 0;
    color: rgba(247,244,237,0.7);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #BA9766;
}

.footer-bottom {
    border-top: 1px solid rgba(186,151,102,0.15);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(247,244,237,0.5);
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    padding: 16px 28px;
    background: #BA9766;
    color: #2A221E;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    box-shadow: 0 8px 30px rgba(186,151,102,0.4);
    transition: all 0.3s ease;
}

.sticky-quote-btn:hover {
    background: #A28153;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(186,151,102,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: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-content {
    background: #2A221E;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(186,151,102,0.2);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(186,151,102,0.3);
    border-radius: 50%;
    background: none;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(186,151,102,0.1);
    border-color: #BA9766;
}

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

/* ===== PAGE HERO (Internal pages) ===== */
.page-hero {
    background: #2A221E;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #F7F4ED;
    margin-bottom: 12px;
}

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

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

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: #2F2A27;
}

.content-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2F2A27;
}

.content-section p {
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.content-section ul li {
    padding: 6px 0 6px 24px;
    position: relative;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #BA9766;
    border-radius: 50%;
}

.content-section ol {
    counter-reset: step-counter;
}

.content-section ol li {
    counter-increment: step-counter;
    padding: 8px 0 8px 36px;
    position: relative;
}

.content-section ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 6px;
    width: 24px;
    height: 24px;
    background: #BA9766;
    color: #2A221E;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: #2A221E;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 20px;
    border: 1px solid rgba(186,151,102,0.15);
}

.contact-info-card h3 {
    font-size: 1.1rem;
    color: #F7F4ED;
    margin-bottom: 16px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(247,244,237,0.8);
    font-size: 0.9rem;
}

.contact-detail svg {
    width: 20px;
    height: 20px;
    fill: #BA9766;
    flex-shrink: 0;
}

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

.neighborhoods-grid span {
    padding: 8px 14px;
    background: rgba(186,151,102,0.06);
    border: 1px solid rgba(186,151,102,0.15);
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
}

/* ===== INTERNAL LINKS SECTION ===== */
.internal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.internal-links a {
    padding: 10px 18px;
    background: rgba(186,151,102,0.08);
    border: 1px solid rgba(186,151,102,0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #BA9766;
    transition: all 0.3s ease;
}

.internal-links a:hover {
    background: #BA9766;
    color: #2A221E;
}

/* ===== PAGE IMAGE ===== */
.page-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }

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

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

    .split-section.reverse {
        direction: ltr;
    }

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

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

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

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero {
        min-height: 70vh;
    }

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

    .hero-trust {
        gap: 20px;
    }

    .section {
        padding: 50px 0;
    }

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

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

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

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

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

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

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

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

    .modal-content {
        padding: 24px 16px;
    }
}

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

.error-message {
    animation: fadeIn 0.3s ease;
}
