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

:root {
    --primary: #1a1a2e;
    --secondary: #c4a35a;
    --accent: #e8d5b7;
    --dark: #0f0f1a;
    --light: #f8f6f2;
    --text: #2d2d3a;
    --text-light: #6b6b7a;
    --gradient-gold: linear-gradient(135deg, #c4a35a 0%, #e8d5b7 50%, #c4a35a 100%);
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.97);
    z-index: 1000;
    padding: 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: all 0.3s ease;
}

/* Split Screen Sections */
.split-section {
    display: flex;
    min-height: 100vh;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
}

.split-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, transparent 100%);
}

/* Hero Section */
.hero {
    padding-top: 80px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.hero .split-left {
    padding: 100px 60px;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--light);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.hero-text {
    color: var(--accent);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-image {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%231a1a2e" width="800" height="600"/><circle cx="400" cy="250" r="120" fill="%23c4a35a" opacity="0.3"/><rect x="200" y="400" width="400" height="150" rx="10" fill="%23e8d5b7" opacity="0.2"/><circle cx="250" cy="475" r="30" fill="%23c4a35a" opacity="0.4"/><circle cx="400" cy="475" r="30" fill="%23c4a35a" opacity="0.4"/><circle cx="550" cy="475" r="30" fill="%23c4a35a" opacity="0.4"/><path d="M350 200 L450 200 L400 280 Z" fill="%23e8d5b7" opacity="0.5"/></svg>');
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 1rem;
    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(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 163, 90, 0.3);
}

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

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

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

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

/* Section Titles */
.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-title.light {
    color: var(--light);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 550px;
    margin-bottom: 35px;
}

/* Stats Section */
.stats-section {
    background: var(--dark);
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Split */
.about-split {
    background: var(--light);
}

.about-split .split-image {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 800"><rect fill="%23e8d5b7" width="600" height="800"/><rect x="50" y="100" width="500" height="300" rx="20" fill="%231a1a2e" opacity="0.1"/><circle cx="300" cy="500" r="150" fill="%23c4a35a" opacity="0.2"/><rect x="150" y="600" width="300" height="100" rx="10" fill="%231a1a2e" opacity="0.15"/></svg>');
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Services */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header .section-desc {
    margin: 0 auto;
}

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

.service-card {
    flex: 1 1 350px;
    max-width: 380px;
    background: #fff;
    padding: 45px 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 20px;
}

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

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
}

/* Testimonials */
.testimonials-section {
    background: var(--primary);
    padding: 100px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1 1 350px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-left: 3px solid var(--secondary);
}

.testimonial-text {
    color: var(--accent);
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.author-info h4 {
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info span {
    color: var(--secondary);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-gold);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Split */
.contact-split {
    background: #fff;
}

.contact-split .split-left {
    background: var(--primary);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

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

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(196, 163, 90, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-details h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--accent);
    font-size: 0.95rem;
}

/* Form Styles */
.form-section {
    padding: 60px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #e5e5e5;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.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-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
}

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

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.footer-col p {
    color: var(--accent);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--accent);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 25px 40px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-text {
    color: var(--accent);
    font-size: 0.95rem;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
    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 var(--accent);
    color: var(--accent);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta .btn {
    box-shadow: 0 10px 40px rgba(196, 163, 90, 0.4);
}

/* Page Headers */
.page-header {
    background: var(--primary);
    padding: 140px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--light);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--accent);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Pages */
.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.content-wrapper h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

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

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-wrapper li {
    margin-bottom: 10px;
    color: var(--text);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 40px;
}

.thanks-box {
    background: #fff;
    padding: 80px 60px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-box h1 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-box p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.thanks-service {
    background: var(--light);
    padding: 20px;
    margin-bottom: 30px;
}

.thanks-service span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.thanks-service strong {
    font-size: 1.2rem;
    color: var(--primary);
}

/* About Page */
.about-intro {
    padding: 80px 0;
}

.about-story {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-story-content {
    flex: 1 1 400px;
}

.about-story-image {
    flex: 1 1 400px;
    min-height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 400"><rect fill="%231a1a2e" width="500" height="400"/><circle cx="250" cy="200" r="100" fill="%23c4a35a" opacity="0.3"/><rect x="100" y="280" width="300" height="80" rx="10" fill="%23e8d5b7" opacity="0.2"/></svg>');
    background-size: cover;
}

.team-section {
    background: var(--light);
    padding: 80px 0;
}

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

.team-card {
    flex: 1 1 280px;
    max-width: 320px;
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.team-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Page */
.contact-page-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1 1 350px;
}

.contact-map-block {
    flex: 1 1 350px;
    min-height: 400px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-item-content h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-item-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

    .split-left,
    .split-right {
        padding: 60px 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .split-left,
    .split-right {
        padding: 50px 25px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .form-row {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}
