:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --accent-color: #f5e6d3;
    --dark-color: #2c2c2c;
    --light-color: #ffffff;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary-color: #d4a574;
    --secondary-color: #a68a5f;
    --accent-color: #3a3a3a;
    --dark-color: #1a1a1a;
    --light-color: #2c2c2c;
    --text-color: #e0e0e0;
    --text-light: #b0b0b0;
    --border-color: #444444;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.container-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--secondary-color);
}

.theme-toggle i {
    color: var(--light-color);
    font-size: 20px;
}

.header-main {
    background: var(--light-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

.navbar-primary {
    padding: 15px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

.hero-section,
.page-hero {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('images/1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content,
.page-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title,
.page-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle,
.page-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.cta-button,
.cta-button-large {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1.4s ease;
}

.cta-button:hover,
.cta-button-large:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.section-heading {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

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

.services-showcase,
.pricing-section,
.testimonials-section,
.faq-section,
.about-intro,
.team-section,
.certifications-section,
.blog-section,
.contact-section {
    padding: 80px 0;
}

.services-grid,
.pricing-grid,
.testimonials-grid,
.values-grid,
.team-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card,
.pricing-card,
.testimonial-card,
.value-card,
.team-card,
.blog-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.value-card:hover,
.team-card:hover,
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon,
.value-icon {
    font-size: 48px;
    color: var(--primary-color);
    text-align: center;
    padding: 20px;
}

.service-image,
.team-image,
.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-title,
.pricing-title,
.value-title,
.team-name,
.blog-title {
    font-size: 24px;
    margin: 20px;
    color: var(--text-color);
}

.service-description,
.testimonial-text,
.value-description,
.team-bio {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.process-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('images/3.jpg') center/cover fixed;
    padding: 80px 0;
    color: var(--light-color);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.step-description {
    color: #e0e0e0;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    padding: 20px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-button {
    display: block;
    margin: 20px;
    padding: 12px;
    background: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.pricing-button:hover {
    background: var(--secondary-color);
}

.rating {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding: 20px 20px 0;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
    padding: 0 20px 20px;
    color: var(--text-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--light-color);
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.cta-section {
    background: linear-gradient(rgba(212, 165, 116, 0.9), rgba(139, 111, 71, 0.9)), 
                url('images/5.jpg') center/cover fixed;
    padding: 100px 0;
    text-align: center;
    color: var(--light-color);
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 30px;
}

.footer-main {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-text {
    color: #b0b0b0;
    line-height: 1.8;
}

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

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
}

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

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

.footer-contact li {
    margin-bottom: 15px;
    color: #b0b0b0;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--light-color);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.cookie-text p {
    color: var(--text-light);
}

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

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn.accept-all {
    background: var(--primary-color);
    color: var(--light-color);
}

.cookie-btn.accept-all:hover {
    background: var(--secondary-color);
}

.cookie-btn.decline,
.cookie-btn.customize {
    background: var(--border-color);
    color: var(--text-color);
}

.cookie-btn.decline:hover,
.cookie-btn.customize:hover {
    background: var(--text-light);
}

.cookie-settings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    max-width: 500px;
    width: 90%;
    display: none;
}

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

.cookie-option {
    margin: 20px 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.cookie-option p {
    margin-left: 30px;
    color: var(--text-light);
    font-size: 14px;
}

.settings-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.blog-image-wrapper {
    position: relative;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

.newsletter-section {
    background: var(--accent-color);
    padding: 60px 0;
    text-align: center;
}

.newsletter-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.newsletter-text {
    color: var(--text-light);
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-button {
    padding: 15px 30px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-button:hover {
    background: var(--secondary-color);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-image-wrapper {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    padding: 0 20px;
    margin-bottom: 10px;
}

.values-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('images/4.jpg') center/cover fixed;
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.cert-item {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cert-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.info-icon i {
    color: var(--light-color);
    font-size: 20px;
}

.info-content h3 {
    margin-bottom: 5px;
    color: var(--text-color);
}

.info-content p,
.info-content a {
    color: var(--text-light);
    text-decoration: none;
}

.info-content a:hover {
    color: var(--primary-color);
}

.studio-image {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

.form-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--secondary-color);
}

.map-section {
    padding: 60px 0;
    background: var(--accent-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.success-modal.show {
    display: flex;
}

.modal-content {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
}

.modal-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.modal-close {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--secondary-color);
}

.post-content {
    padding: 40px 0;
}

.post-header {
    margin-bottom: 40px;
}

.post-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.post-header-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-category {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.post-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 30px;
    color: var(--text-light);
    flex-wrap: wrap;
}

.post-body {
    margin: 60px 0;
}

.lead-paragraph {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.post-body h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--text-color);
}

.post-body h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.post-body p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.post-conclusion {
    background: var(--accent-color);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    margin: 40px 0;
}

.post-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: var(--light-color);
    margin: 40px 0;
}

.post-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.post-cta p {
    margin-bottom: 20px;
    color: var(--light-color);
}

.post-navigation {
    text-align: center;
    margin: 40px 0;
}

.back-to-blog {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.back-to-blog:hover {
    background: var(--secondary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--light-color);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title,
    .page-title {
        font-size: 36px;
    }

    .hero-subtitle,
    .page-subtitle {
        font-size: 18px;
    }

    .section-heading {
        font-size: 32px;
    }

    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .post-title {
        font-size: 32px;
    }

    .post-featured-image {
        height: 300px;
    }

    .theme-toggle {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 18px;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .cta-title {
        font-size: 32px;
    }

    .post-body h2 {
        font-size: 24px;
    }

    .post-body p,
    .lead-paragraph {
        font-size: 16px;
    }
}