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

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

:root {
    --navy: #182334;
    --slate: #273445;
    --parchment: #F2ECE2;
    --ivory: #F8F5EF;
    --charcoal: #2A2E32;
    --brass: #BA9763;
    --brass-hover: #A58353;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 10px;
    --shadow: 0 4px 20px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
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: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.header-contact a {
    color: var(--ivory);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-contact a:hover { color: var(--brass); }

.header-contact svg {
    width: 16px;
    height: 16px;
    fill: var(--brass);
    flex-shrink: 0;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--ivory);
}

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

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

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

.nav-item { position: relative; }

.nav-link {
    color: var(--ivory);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.nav-link:hover { color: var(--brass); background: rgba(186,151,99,0.08); }

.nav-link svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* ===== DROPDOWN ===== */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--navy);
    border: 1px solid rgba(186,151,99,0.2);
    border-radius: var(--radius);
    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: 100;
}

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

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--ivory);
    font-size: 14px;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(-10px);
    animation: dropdownItemIn 0.3s ease forwards;
}

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

@keyframes dropdownItemIn {
    to { opacity: 1; transform: translateX(0); }
}

.dropdown a:hover {
    background: rgba(186,151,99,0.12);
    color: var(--brass);
    padding-left: 26px;
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--ivory);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: var(--navy);
    z-index: 2000;
    padding: 70px 24px 30px;
    overflow-y: auto;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
}

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

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
    fill: var(--ivory);
}

.mobile-nav-close:hover svg { fill: var(--brass); }

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

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

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

.mobile-nav-list a {
    display: block;
    color: var(--ivory);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: left;
}

.mobile-nav-list a:hover { color: var(--brass); }

.mobile-nav-list .mobile-dropdown-title {
    color: var(--brass);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 0 8px;
    border-bottom: none;
}

.mobile-nav-list .mobile-sub a {
    padding-left: 16px;
    font-size: 14px;
    color: rgba(248,245,239,0.8);
}

.mobile-nav-list .mobile-sub a:hover { color: var(--brass); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

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

.hero-text h1 {
    font-size: clamp(32px, 4vw, 52px);
    color: var(--ivory);
    margin-bottom: 20px;
}

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

.hero-text p {
    color: rgba(248,245,239,0.85);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 520px;
}

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

.hero-trust-item {
    text-align: center;
    color: var(--ivory);
}

.hero-trust-item .number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--brass);
}

.hero-trust-item .label {
    font-size: 13px;
    opacity: 0.8;
}

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

.btn-primary {
    background: var(--brass);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--brass-hover);
    box-shadow: 0 6px 20px rgba(186,151,99,0.3);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--brass);
    color: var(--navy);
}

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

.section-dark {
    background: var(--navy);
    color: var(--ivory);
}

.section-slate {
    background: var(--slate);
    color: var(--ivory);
}

.section-light {
    background: var(--parchment);
}

.section-title {
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    opacity: 0.8;
    max-width: 600px;
    margin-bottom: 40px;
}

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

.service-card {
    background: var(--ivory);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

.service-card-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--navy);
}

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

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

.area-card {
    background: var(--slate);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.area-card:hover {
    background: var(--brass);
    color: var(--navy);
    transform: translateY(-3px);
}

.area-card a {
    color: var(--ivory);
    font-weight: 600;
    font-size: 15px;
}

.area-card:hover a { color: var(--navy); }

/* ===== FORM STYLES ===== */
.feedback-form-container {
    background: var(--slate);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 560px;
}

.feedback-form-container h3 {
    color: var(--ivory);
    font-size: 24px;
    margin-bottom: 24px;
}

.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(255,255,255,0.06);
    border: 1px solid rgba(186,151,99,0.3);
    border-radius: 8px;
    color: var(--ivory);
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(248,245,239,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brass);
    background: rgba(186,151,99,0.06);
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--brass);
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-heading);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    min-height: 56px;
}

.submit-btn:hover {
    background: var(--brass-hover);
    box-shadow: 0 6px 20px rgba(186,151,99,0.3);
}

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

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

/* ===== CTA SECTION ===== */
.cta-block {
    background: var(--slate);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    margin: 40px 0;
}

.cta-block h3 {
    color: var(--ivory);
    font-size: 24px;
    margin-bottom: 12px;
}

.cta-block p {
    color: rgba(248,245,239,0.8);
    margin-bottom: 20px;
}

/* ===== MAP ===== */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

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

/* ===== CONTENT PAGES ===== */
.page-hero {
    background: var(--navy);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--ivory);
    font-size: clamp(28px, 3.5vw, 44px);
}

.page-hero p {
    color: rgba(248,245,239,0.8);
    font-size: 17px;
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-section h2:first-child { margin-top: 0; }

.content-section h3 {
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 12px;
    margin-top: 30px;
}

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

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

.content-section ul { list-style: disc; }
.content-section ol { list-style: decimal; }

.content-section li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.7;
}

.content-section a {
    color: var(--brass);
    font-weight: 500;
}

.content-section a:hover { text-decoration: underline; }

.content-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin: 30px 0;
    box-shadow: var(--shadow);
}

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

/* ===== FAQ ===== */
.faq-item {
    background: var(--ivory);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    margin-bottom: 16px;
    padding: 24px;
}

.faq-item h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: var(--ivory);
    padding: 60px 0 30px;
}

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

.footer-brand p {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 12px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--brass);
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: rgba(248,245,239,0.7);
    font-size: 14px;
    padding: 4px 0;
}

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

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

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    background: var(--brass);
    color: var(--navy);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
    box-shadow: 0 6px 30px rgba(186,151,99,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.sticky-quote-btn:hover {
    background: var(--brass-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(186,151,99,0.5);
}

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

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

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

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.modal-close svg {
    width: 18px;
    height: 18px;
    fill: var(--ivory);
}

.modal-close:hover { background: rgba(186,151,99,0.3); }

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

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

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

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-item svg {
    width: 22px;
    height: 22px;
    fill: var(--brass);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item h4 {
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--charcoal);
}

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

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

    .hero { min-height: 70vh; }
    .hero-content { padding: 60px 20px; }
    .hero-text h1 { font-size: 28px; }

    .section { padding: 50px 0; }
    .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: 20px;
        right: 50%;
        transform: translateX(50%);
        width: calc(100% - 40px);
        max-width: 320px;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero-trust { flex-direction: column; gap: 16px; align-items: flex-start; }
}
