@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --bg-primary: #F9F6F0;
    --bg-secondary: #FFFFFF;
    --text-primary: #1A1D20;
    --text-secondary: #555555;
    --accent-gold: #C5A059;
    --accent-gold-hover: #A4803D;
    --bg-dark: #141619;
    --border-color: #E2DDD5;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 18px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-gold-hover);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Menu */
header {
    background-color: var(--bg-dark);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-wrapper img {
    height: 40px;
    width: 40px;
}

.logo-wrapper span {
    color: white;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    color: #E2DDD5;
    font-weight: 500;
}

nav a:hover {
    color: var(--accent-gold);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -60px;
    left: 0;
    background: var(--accent-gold);
    color: white;
    padding: 10px 20px;
    z-index: 2000;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Sections */
section {
    padding: 80px 0;
}

.hero-section {
    position: relative;
    background-color: var(--bg-dark);
    color: white;
    padding: 160px 0 100px;
    background-image: 
        linear-gradient(rgba(20, 22, 25, 0.85), rgba(20, 22, 25, 0.95)),
        radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #CCCCCC;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: white;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    color: white;
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Stats */
.stats-section {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

/* Feature Row */
.feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.feature-img, .feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Pricing Table */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 2px solid var(--accent-gold);
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-gold);
    color: white;
    padding: 4px 15px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 20px;
}

.price {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    margin: 20px 0;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin: 20px 0 30px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li i {
    color: var(--accent-gold);
    margin-right: 10px;
}

/* Lead Form */
.form-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
}

.form-control:focus {
    border-color: var(--accent-gold);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.checkbox-group input {
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Trust Layer & Footer */
.trust-layer {
    background-color: #EFECE6;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.trust-layer h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

footer {
    background-color: var(--bg-dark);
    color: #CCCCCC;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer .footer-links {
    margin-top: 15px;
}

footer a {
    color: #BBBBBB;
    margin: 0 10px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--bg-dark);
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 5000;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    font-size: 0.95rem;
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept {
    background-color: var(--accent-gold);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.btn-cookie-decline {
    background-color: transparent;
    color: white;
    border: 1px solid #777777;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-cookie-accept:hover {
    background-color: var(--accent-gold-hover);
}

/* FAQ Accordion */
.faq-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-gold);
}

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

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-secondary);
}

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

/* Maps wrapper */
.maps-container {
    margin-top: 30px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    nav ul.active {
        display: flex;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .pricing-card.popular {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}