:root {
    --primary: #1a3a52;
    --secondary: #c9a959;
    --accent: #8b5e3c;
    --light: #f8f6f3;
    --dark: #2c2c2c;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --border: #e0dcd5;
    --shadow: rgba(26, 58, 82, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

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

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.header-top {
    background: var(--primary);
    color: var(--white);
    padding: 6px 0;
    font-size: 12px;
    text-align: center;
}

.header-top span {
    opacity: 0.9;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
}

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

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

.nav a {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 85px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--primary);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 24px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-content h1 strong {
    font-weight: 600;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 540px;
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* Intro Section */
.intro {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-image {
    flex: 1;
    background-color: var(--border);
    min-height: 450px;
    position: relative;
}

.intro-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 36px;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 24px;
}

.intro-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 40px var(--shadow);
}

.service-image {
    height: 220px;
    background-color: var(--border);
    position: relative;
}

.service-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

/* Features */
.features-row {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.feature h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature p {
    font-size: 15px;
    color: var(--text-light);
}

/* Process */
.process-steps {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 200px;
    max-width: 260px;
    text-align: center;
    padding: 32px 20px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* Testimonials */
.testimonials-wrap {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 340px;
    max-width: 400px;
    background: var(--white);
    padding: 36px;
    border-left: 4px solid var(--secondary);
}

.testimonial-text {
    font-size: 17px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-light);
}

/* Gallery */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.gallery-item {
    flex: 1 1 280px;
    height: 280px;
    background-color: var(--border);
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a5a7a 100%);
    color: var(--white);
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    background: var(--light);
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

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

/* Contact Info */
.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
}

.contact-item h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-form-wrap {
    flex: 1 1 400px;
}

/* About Page */
.about-hero {
    padding: 160px 0 80px;
    background: var(--light);
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: var(--border);
    overflow: hidden;
    position: relative;
}

.team-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.team-member h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 4px;
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: var(--light);
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary);
}

/* Legal Pages */
.legal-content {
    padding: 60px 0 100px;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--primary);
    margin: 40px 0 16px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--primary);
    margin: 32px 0 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Thanks Page */
.thanks-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px;
}

.thanks-content {
    max-width: 500px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-content h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-logo {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

/* Disclaimer */
.disclaimer {
    background: var(--light);
    padding: 32px;
    margin-top: 48px;
    border-left: 4px solid var(--secondary);
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-text {
    flex: 1;
    font-size: 14px;
}

.cookie-text a {
    color: var(--secondary);
}

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--primary);
}

.cookie-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cookie-btn:hover {
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .intro {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image {
        min-height: 350px;
        width: 100%;
    }

    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border);
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .form-container {
        padding: 32px 20px;
    }

    .contact-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
