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

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0F0F10;
    --bg-secondary: #1E1E20;
    --bg-light: #F4EFE7;
    --text-light: #FFFFFF;
    --text-dark: #1F1F1F;
    --accent: #B58B5A;
    --accent-hover: #9F7648;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 15, 16, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(181, 139, 90, 0.15);
    transition: background var(--transition);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 8px 24px;
    background: var(--bg-secondary);
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

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

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

.header-top .separator {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
}

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

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

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

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

.main-nav > a,
.nav-dropdown > .nav-link {
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.main-nav > a:hover,
.nav-dropdown > .nav-link:hover {
    color: var(--accent);
    background: rgba(181, 139, 90, 0.08);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    cursor: pointer;
}

.nav-link .arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-link .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--bg-secondary);
    border: 1px solid rgba(181, 139, 90, 0.2);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    transition: all var(--transition);
    opacity: 0;
    transform: translateX(-8px);
}

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

.nav-dropdown:hover .dropdown-menu a:nth-child(1) { transition-delay: 0.05s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(2) { transition-delay: 0.08s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(3) { transition-delay: 0.11s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(4) { transition-delay: 0.14s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(5) { transition-delay: 0.17s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(6) { transition-delay: 0.20s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(7) { transition-delay: 0.23s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(8) { transition-delay: 0.26s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(9) { transition-delay: 0.29s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(10) { transition-delay: 0.32s; }
.nav-dropdown:hover .dropdown-menu a:nth-child(11) { transition-delay: 0.35s; }

.dropdown-menu a:hover {
    background: rgba(181, 139, 90, 0.1);
    color: var(--accent);
    padding-left: 28px;
}

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

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1050;
    padding: 80px 24px 40px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(181, 139, 90, 0.2);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(181, 139, 90, 0.1);
    border: 1px solid rgba(181, 139, 90, 0.3);
    transition: all var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(181, 139, 90, 0.2);
}

.mobile-menu-close svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-light);
}

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

.mobile-overlay.active {
    opacity: 1;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-nav > a,
.mobile-nav .mobile-dropdown-title {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: left;
}

.mobile-nav > a:hover,
.mobile-nav .mobile-dropdown-title:hover {
    color: var(--accent);
}

.mobile-dropdown-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-dropdown-title .arrow-mob {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform var(--transition);
}

.mobile-dropdown-title.open .arrow-mob {
    transform: rotate(180deg);
}

.mobile-dropdown-list {
    display: none;
    padding-left: 16px;
    width: 100%;
}

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

.mobile-dropdown-list a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-align: left;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15,15,16,0.4) 0%, rgba(15,15,16,0.9) 100%);
}

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

.hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

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

.hero-text p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
    max-width: 520px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    height: 56px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(181, 139, 90, 0.3);
}

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

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

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

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

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

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

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-light .section-subtitle {
    color: rgba(31,31,31,0.65);
}

/* ===== 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(181, 139, 90, 0.12);
    border-radius: 12px;
    padding: 32px;
    transition: all var(--transition);
}

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

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

.service-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
}

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

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

.service-card .card-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

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

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    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);
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.why-list {
    list-style: none;
}

.why-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
}

.why-list li .check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(181, 139, 90, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.why-list li .check-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2.5;
}

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

.areas-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg-secondary);
    border: 1px solid rgba(181, 139, 90, 0.1);
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition);
}

.areas-list a:hover {
    border-color: var(--accent);
    background: rgba(181, 139, 90, 0.06);
    color: var(--accent);
    transform: translateX(4px);
}

.areas-list a svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
}

/* ===== MAP ===== */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(181, 139, 90, 0.2);
    margin-top: 40px;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT FORM ===== */
.feedback-form-container {
    background: var(--bg-secondary);
    border: 1px solid rgba(181, 139, 90, 0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
}

.feedback-form-container h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    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.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    outline: none;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

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

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

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

.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(181, 139, 90, 0.3);
}

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

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

/* ===== FOOTER ===== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(181, 139, 90, 0.1);
    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 {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--accent);
}

.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    padding: 16px 28px;
    background: var(--accent);
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(181, 139, 90, 0.4);
    transition: all var(--transition);
    font-family: var(--font-body);
}

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

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

.modal-content {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.modal-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border: 1px solid rgba(181, 139, 90, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition);
}

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

.modal-close svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-light);
    fill: none;
    stroke-width: 2;
}

/* ===== PAGE HERO (internal pages) ===== */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
}

.page-hero h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto;
}

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

.content-section h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

.content-section ul,
.content-section ol {
    margin: 16px 0 24px 24px;
    color: rgba(255,255,255,0.75);
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-section .cta-inline {
    margin: 32px 0;
}

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

.faq-item {
    border: 1px solid rgba(181, 139, 90, 0.12);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
}

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

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-info-list .info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(181, 139, 90, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-list .info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
}

.contact-info-list .info-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--accent);
}

.contact-info-list .info-text p,
.contact-info-list .info-text a {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
}

/* ===== 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: 450px;
    object-fit: cover;
}

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .header-top {
        font-size: 12px;
        gap: 12px;
        padding: 6px 16px;
    }
    
    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .feedback-form-container {
        padding: 24px;
    }
    
    .sticky-quote-btn {
        bottom: 16px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .sticky-quote-btn:hover {
        transform: translateX(50%) translateY(-3px);
    }
    
    .areas-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 130px 0 60px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

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