:root {
    --primary: #1a3a5c;
    --secondary: #c9a227;
    --accent: #2d5a7b;
    --dark: #0f1c2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

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

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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 35px;
}

.nav-desktop a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

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

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

.header-cta {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 20px;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-mobile a {
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

/* Hero Split Section */
.hero-split {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
}

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

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

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

.hero-image {
    flex: 1;
    min-height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%231a3a5c" width="800" height="600"/><rect fill="%232d5a7b" x="50" y="100" width="300" height="400" rx="8"/><rect fill="%23c9a227" x="80" y="150" width="240" height="20" rx="4"/><rect fill="%23f8f9fa" x="80" y="190" width="180" height="10" rx="2"/><rect fill="%23f8f9fa" x="80" y="210" width="200" height="10" rx="2"/><rect fill="%23e9ecef" x="80" y="250" width="240" height="120" rx="4"/><rect fill="%23c9a227" x="80" y="400" width="100" height="40" rx="4"/><rect fill="%232d5a7b" x="450" y="80" width="300" height="440" rx="8"/><rect fill="%23c9a227" x="480" y="130" width="60" height="60" rx="30"/><rect fill="%23f8f9fa" x="480" y="210" width="200" height="15" rx="2"/><rect fill="%23f8f9fa" x="480" y="240" width="180" height="10" rx="2"/><rect fill="%23e9ecef" x="480" y="280" width="240" height="150" rx="4"/><circle fill="%23c9a227" cx="600" cy="355" r="40"/><rect fill="%23f8f9fa" x="480" y="460" width="120" height="35" rx="4"/></svg>') center/cover no-repeat;
}

/* Split Section Generic */
.split-section {
    display: flex;
    flex-direction: column;
}

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

.split-content {
    flex: 1;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.split-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.split-content p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* Services Grid */
.services-section {
    padding: 80px 20px;
    background: var(--light);
}

.services-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.services-intro {
    text-align: center;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    height: 180px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-info {
    padding: 25px;
}

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

.service-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

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

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

.service-price .unit {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: var(--primary);
    color: var(--white);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

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

/* Stats Section */
.stats-section {
    padding: 60px 20px;
    background: var(--dark);
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
}

.step-content h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, #b8921f 100%);
    text-align: center;
}

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

.cta-section p {
    color: var(--dark);
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: var(--light);
}

.form-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.form-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 4px;
    transition: var(--transition);
    font-family: inherit;
}

.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;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

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

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    opacity: 0.8;
    font-size: 0.95rem;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta .btn {
    box-shadow: var(--shadow-lg);
    padding: 16px 24px;
}

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

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1280px;
    margin: 0 auto;
}

.cookie-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

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

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    margin-top: 70px;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Page */
.content-page {
    padding: 60px 20px;
}

.content-page .container {
    max-width: 800px;
}

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

.content-page h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 30px 0 15px;
}

.content-page p {
    color: var(--gray);
    margin-bottom: 15px;
}

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

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

/* About Page Specific */
.about-split {
    display: flex;
    flex-direction: column;
}

.about-image {
    min-height: 300px;
    background: var(--primary);
}

.about-content {
    padding: 60px 20px;
}

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

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

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

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

.value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.value-item h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.value-item p {
    font-size: 0.9rem;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: var(--light);
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-photo {
    height: 200px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo svg {
    width: 80px;
    height: 80px;
    fill: var(--secondary);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

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

/* Contact Page */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px 20px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.contact-info-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Services Page */
.service-detail {
    padding: 60px 20px;
    border-bottom: 1px solid var(--gray-light);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-image {
    min-height: 250px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image svg {
    width: 100px;
    height: 100px;
    fill: var(--secondary);
}

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

.service-detail-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

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

.service-detail-price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

/* Thanks Page */
.thanks-section {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
}

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

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.selected-service {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.selected-service p {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

/* Media Queries */
@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .header-cta {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

    .hero-content {
        padding: 80px 60px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-image {
        min-height: auto;
    }

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

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

    .split-content {
        padding: 80px 60px;
    }

    .split-content h2 {
        font-size: 2.5rem;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .testimonials-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

    .stats-grid {
        gap: 60px;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: calc(50% - 15px);
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        flex: 2;
    }

    .footer-links {
        flex: 1;
    }

    .about-split {
        flex-direction: row;
    }

    .about-image {
        flex: 1;
        min-height: 400px;
    }

    .about-content {
        flex: 1;
        padding: 80px 60px;
    }

    .team-grid {
        flex-direction: row;
    }

    .team-card {
        flex: 1;
    }

    .contact-info-grid {
        flex-direction: row;
    }

    .contact-info-card {
        flex: 1;
    }

    .service-detail-inner {
        flex-direction: row;
        align-items: center;
    }

    .service-detail-image {
        flex: 1;
        min-height: 300px;
    }

    .service-detail-content {
        flex: 1;
    }

    .service-detail:nth-child(even) .service-detail-inner {
        flex-direction: row-reverse;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .service-card {
        min-width: calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }

    .process-step {
        min-width: calc(25% - 25px);
    }

    .team-grid {
        gap: 40px;
    }
}
