:root {
    --primary: #1a4d5c;
    --secondary: #c9a45c;
    --accent: #2d7a8c;
    --dark: #0f2a33;
    --light: #f5f7f6;
    --text: #2c3e40;
    --muted: #6b8a8f;
    --white: #ffffff;
    --error: #c25a5a;
}

* {
    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);
    background-color: var(--light);
}

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

ul {
    list-style: none;
}

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

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

.header {
    background-color: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

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

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

.nav-main a:hover {
    color: var(--primary);
}

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

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

.ad-disclosure {
    background-color: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background-color: #b8944d;
}

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

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

.hero {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
    background-color: var(--white);
}

.hero-image {
    flex: 1;
    background-color: var(--muted);
    position: relative;
    overflow: hidden;
}

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

.hero h1 {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
}

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

.hero p {
    font-size: 1.15rem;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.split-section {
    display: flex;
    min-height: 70vh;
}

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

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

.split-image {
    flex: 1;
    background-color: var(--muted);
    position: relative;
    overflow: hidden;
}

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

.section-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.section-title {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-text {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

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

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

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

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

.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

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

.service-card {
    background-color: var(--light);
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

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

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

.service-body {
    padding: 28px;
}

.service-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-desc {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-price span {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 400;
}

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
}

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

.testimonials-header .section-label {
    color: var(--secondary);
}

.testimonials-header .section-title {
    color: var(--white);
}

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

.testimonial-card {
    background-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 36px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    max-width: 380px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-text {
    color: var(--light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

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

.author-info h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

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

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

.cta-box {
    background-color: var(--white);
    border-radius: 16px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.cta-content {
    max-width: 520px;
}

.cta-content .section-title {
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--muted);
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-column a {
    color: var(--muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: var(--muted);
    font-size: 0.85rem;
}

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

.footer-legal a {
    color: var(--muted);
    font-size: 0.85rem;
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 16px;
}

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

.page-content {
    padding: 80px 0;
    background-color: var(--white);
}

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

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    color: var(--dark);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.content-section h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 12px;
    margin-top: 28px;
}

.content-section p {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 1rem;
}

.content-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    color: var(--text);
    margin-bottom: 8px;
    list-style: disc;
}

.about-intro {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
}

.about-intro-content {
    flex: 1;
}

.about-intro-image {
    flex: 1;
    background-color: var(--muted);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

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

.values-grid {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--light);
    padding: 32px;
    border-radius: 12px;
}

.value-card h3 {
    color: var(--dark);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

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

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
}

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

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e6e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

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

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

.form-group input.error,
.form-group select.error {
    border-color: var(--error);
}

.error-message {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
}

.services-list-page {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e6e8;
}

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

.service-detail.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--muted);
    border-radius: 12px;
    overflow: hidden;
    min-height: 320px;
    position: relative;
}

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

.service-detail h2 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-detail p {
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-detail .service-price {
    margin-bottom: 24px;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
    background-color: var(--white);
}

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

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

.thanks-section h1 {
    color: var(--dark);
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.thanks-section p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 32px;
}

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

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

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

.cookie-text {
    color: var(--light);
    font-size: 0.92rem;
    flex: 1;
    min-width: 280px;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background-color: #b8944d;
}

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

.cookie-reject:hover {
    border-color: var(--light);
}

.disclaimer {
    background-color: var(--light);
    padding: 32px;
    border-radius: 8px;
    margin-top: 48px;
    border-left: 4px solid var(--secondary);
}

.disclaimer h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 12px;
}

.disclaimer p {
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 0;
}

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

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

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
    }

    .hero-content {
        padding: 48px 32px;
    }

    .hero-image {
        min-height: 400px;
    }

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

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

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

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

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

    .testimonial-card {
        width: calc(50% - 14px);
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

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

    .about-intro {
        flex-direction: column;
    }

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

    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 32px;
        gap: 24px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    }

    .nav-main.active {
        right: 0;
    }

    .nav-main a {
        font-size: 1.1rem;
    }

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

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

    .service-card {
        width: 100%;
    }

    .testimonial-card {
        width: 100%;
    }

    .cta-box {
        padding: 40px 28px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
