:root {
    --primary: #1a1a2e;
    --secondary: #c9a227;
    --accent: #e8d5b7;
    --text-dark: #1a1a2e;
    --text-light: #f5f5f5;
    --bg-light: #faf9f7;
    --bg-dark: #1a1a2e;
    --bg-warm: #f0e6d3;
    --border: #d4c4a8;
    --fallback-img: #2d2d44;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Header */
.site-header {
    background: var(--bg-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

.ad-disclosure {
    background: var(--secondary);
    color: var(--text-dark);
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 3px;
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 8px 0;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* Split Section Layout */
.split-section {
    display: flex;
    min-height: 500px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content,
.split-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-content {
    padding: 60px 50px;
    background: var(--bg-light);
}

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

.split-section.warm .split-content {
    background: var(--bg-warm);
}

.split-image {
    background-color: var(--fallback-img);
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.content-inner {
    max-width: 480px;
}

.content-inner h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-inner h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-inner p {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: #b8921f;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--secondary);
    color: var(--text-dark);
}

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

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

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

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

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

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

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.85;
}

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

.service-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card-image {
    height: 200px;
    background-color: var(--fallback-img);
    position: relative;
    overflow: hidden;
}

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

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #555;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    max-width: 380px;
    flex: 1;
    min-width: 280px;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--fallback-img);
    overflow: hidden;
}

.testimonial-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info strong {
    display: block;
    font-size: 1rem;
}

.testimonial-author-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

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

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.contact-item span,
.contact-item p {
    font-size: 1.05rem;
}

/* Form Styles */
.form-section {
    flex: 1.2;
    min-width: 320px;
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-light);
    transition: border-color 0.3s;
}

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

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

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.disclaimer {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    margin-top: 30px;
    border-radius: 4px;
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

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

.cookie-reject {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

.cookie-accept:hover {
    background: #b8921f;
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Thanks Page */
.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 35px 0 15px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 8px;
}

/* About Page */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

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

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-member span {
    font-size: 0.9rem;
    color: var(--secondary);
}

/* Full Width Section */
.full-width-image {
    height: 400px;
    background-color: var(--fallback-img);
    position: relative;
    overflow: hidden;
}

.full-width-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.4) 100%);
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.overlay-content {
    max-width: 500px;
    color: var(--text-light);
}

.overlay-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: var(--secondary);
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 900px) {
    .split-section {
        flex-direction: column;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-image {
        min-height: 350px;
    }

    .content-inner h1 {
        font-size: 2.2rem;
    }

    .service-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul {
        justify-content: center;
    }

    .split-content {
        padding: 40px 25px;
    }

    .content-inner h1 {
        font-size: 1.9rem;
    }

    .service-card {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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