:root {
    --navy: #0b1a2e;
    --deep-blue: #132a42;
    --gold: #c49b4c;
    --gold-light: #dbb45c;
    --white: #ffffff;
    --off-white: #f5f4f0;
    --gray-light: #e6e3dd;
    --gray: #5e5b54;
    --text-dark: #1a1a1a;
    --transition: 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 26, 46, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo span {
    color: var(--gold-light);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}
.nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    transition: color var(--transition);
    padding: 6px 0;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.cta-btn {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 22px !important;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 6px 18px rgba(196, 155, 76, 0.4);
}
.cta-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    color: var(--navy) !important;
}
.hero {
    background: linear-gradient(135deg, #0b1a2e 0%, #1a3a5c 100%);
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800" opacity="0.08"><path d="M0 400 L200 300 L400 450 L600 200 L800 400 L1000 250 L1200 500 L1200 800 L0 800 Z" fill="%23ffffff"/></svg>') no-repeat center bottom;
    background-size: cover;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 100px 0;
}
.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: normal;
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 3px;
}
.hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 2.5rem;
    max-width: 520px;
}
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.4px;
    transition: background var(--transition), transform var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: background var(--transition), color var(--transition);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}
.stats-bar {
    background: var(--off-white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-light);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}
.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.services-section {
    padding: 6rem 0;
    background: var(--white);
}
.section-tag {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.section-title {
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}
.service-card {
    background: var(--off-white);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(0,0,0,0.08);
}
.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}
.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--navy);
}
.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}
.service-card a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.quote-section {
    background: var(--navy);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.quote-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.quote-text {
    flex: 1;
}
.quote-text h2 {
    color: var(--white);
    font-size: 2.6rem;
}
.quote-form {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: border var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
}
.form-row {
    display: flex;
    gap: 1rem;
}
.form-row .form-group {
    flex: 1;
}
.submit-btn {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    padding: 16px;
    border: none;
    width: 100%;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition);
}
.submit-btn:hover {
    background: var(--gold-light);
}
.testimonials {
    padding: 6rem 0;
}
.review-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.review-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}
.review-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.review-card blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--gray);
}
.reviewer {
    font-weight: 700;
    color: var(--navy);
}
.map-section {
    padding: 4rem 0;
    background: var(--off-white);
}
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
iframe {
    width: 100%;
    height: 400px;
    border: none;
}
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-grid h4 {
    color: var(--white);
    margin-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.footer-grid ul {
    list-style: none;
}
.footer-grid ul li {
    margin-bottom: 0.7rem;
}
.footer-grid a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-grid a:hover {
    color: var(--gold-light);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.12);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}
.cookie-consent.show {
    transform: translateY(0);
}
.cookie-consent p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}
.cookie-buttons {
    display: flex;
    gap: 0.8rem;
}
.cookie-btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background var(--transition);
}
.cookie-accept {
    background: var(--gold);
    color: var(--navy);
}
.cookie-settings {
    background: var(--off-white);
    color: var(--navy);
}
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
}
.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: var(--white);
    border-radius: 24px;
    padding: 2.8rem;
    max-width: 520px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
}
@media (max-width: 1024px) {
    .services-grid, .review-cards {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .quote-flex {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
}
@media (max-width: 640px) {
    .nav-links {
        display: none;
    }
    .services-grid, .review-cards, .stats-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}