/*
Theme Name: Kastelli
Description: Kastelli Theme
Text Domain: kastelli
Version: 1
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

body.admin-bar .header {
    top: 32px;
    /* Adjust for WordPress admin bar */
}


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

.nav-logo {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1c224e;
    margin-left: 10px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1c224e;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    background: white;
    font-size: 14px;
}

.cta-button {
    background: #1c224e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 16px;
    font-size: 14px;
}

.cta-button:hover {
    background: #dd7d2f;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    margin: 0 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 0 20px;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid #f0f0f0;
        overflow: scroll;
        max-height: calc(100vh - 70px);
    }

    .nav-logo img {
        height: 24px;

    }

    .nav-menu.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .nav-menu a:hover {
        color: #1c224e;
    }

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

    .nav-actions {
        gap: 10px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 12px;
    }

    .language-switcher select {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}



.footer {
    background: #1c224e;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #dd7d2f;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dd7d2f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}


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




/* Projects Page Styles */

/* Projects Hero */
.projects-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.projects-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.projects-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projects-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 34, 78, 0.6);
    z-index: -1;
}

.projects-hero .hero-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.projects-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.projects-hero .hero-description {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Filter Section */
.projects-filter {
    padding: 60px 0;
    background: white;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #1c224e;
    border: 2px solid #1c224e;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1c224e;
    color: white;
}

.filter-btn.active:hover {
    background: #dd7d2f;
    border-color: #dd7d2f;
}

/* Projects Grid */
.projects-grid {
    padding: 80px 0;
    background: #f6f0e8;

    h2 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .description {
        margin: 0 auto 50px;
        max-width: 800px;

        p {
            margin-bottom: 8px;
        }
    }
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;

    .project-link-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
}

.project-card.featured {
    border: 3px solid #dd7d2f;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 34, 78, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    background: #dd7d2f;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.project-link:hover {
    background: #c16a1f;
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1c224e;
}

.project-type {
    color: #dd7d2f;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.spec {
    background: #f6f0e8;
    color: #1c224e;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.projects-cta {
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    background: #1c224e;
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background: #dd7d2f;
    transform: translateY(-2px);
}

/* Active Navigation */
.nav-menu a.active {
    color: #1c224e;
    font-weight: 600;
}

/* Filter Animation */
.project-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.project-card.visible {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .projects-hero .hero-title {
        font-size: 2.2rem;
    }

    .projects-hero .hero-description {
        font-size: 1.1rem;
    }

    .filter-controls {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .projects-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-specs {
        gap: 10px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}


/* Project detail */

/* Project Detail Page Styles */

/* Project Hero */
.project-template-default .project-hero {
    height: 70vh;
}

.project-hero {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.project-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-image {
    width: 100%;
    height: 100%;
}

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

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-btn {
    background: rgba(28, 34, 78, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.gallery-btn:hover {
    background: #dd7d2f;
    transform: scale(1.1);
}

/* Project Info */
section.project-info {
    padding: 80px 0;
    background: #f6f0e8;
}

.project-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #1c224e;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #dd7d2f;
}

.project-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1c224e;
    margin-bottom: 25px;
    line-height: 1.2;
}

.project-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.project-intro strong {
    color: #1c224e;
}

.project-features {
    margin-bottom: 40px;
}

.project-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1c224e;
    margin-bottom: 20px;
}

.project-features ul {
    list-style: none;
    padding: 0;
}

.project-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.project-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dd7d2f;
    font-weight: bold;
}

.project-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1c224e;
    margin-bottom: 20px;
}

.project-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Project Specs */
.specs-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.specs-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1c224e;
    margin-bottom: 25px;
    text-align: center;
}

.specs-table {
    margin-bottom: 25px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: #666;
    font-weight: 500;
}

.spec-value {
    color: #1c224e;
    font-weight: 600;
}

.spec-note {
    background: #f6f0e8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.spec-note p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.spec-note strong {
    color: #1c224e;
}

/* Delivery Options */
.delivery-options {
    padding: 100px 0;

    h2.section-title {
        color: #1c224e;
    }
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.delivery-card {
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;

    .delivery-image {
        height: 250px;
    }
    
    img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .inner {
        padding: 20px 30px 40px;
    }
}

.delivery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.delivery-card.featured {
    border: 3px solid #dd7d2f;
    transform: scale(1.05);
}

.delivery-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1c224e;
    margin-bottom: 10px;
}

.delivery-subtitle {
    color: #dd7d2f;
    font-style: italic;
    margin-bottom: 25px;
}

.delivery-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.delivery-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.delivery-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dd7d2f;
    font-weight: bold;
}

.delivery-btn {
    background: #1c224e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.delivery-btn:hover {
    background: #dd7d2f;
}

/* Why Kastelli */
.why-kastelli {
    padding: 100px 0;
    background: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1c224e;
    margin-bottom: 40px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: #f6f0e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1c224e;
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
}

.why-testimonial {
    background: #f6f0e8;
    padding: 40px;
    border-radius: 12px;
}

.why-testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-testimonial cite {
    color: #dd7d2f;
    font-weight: 600;
    font-style: normal;
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cta-button-large.primary {
    background: #1c224e;
    color: white;
}

.cta-button-large.primary:hover {
    background: #dd7d2f;
    transform: translateY(-2px);
}

.cta-button-large.secondary {
    background: transparent;
    color: #1c224e;
    border: 2px solid #1c224e;
}

.cta-button-large.secondary:hover {
    background: #1c224e;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .project-hero {
        height: 50vh;
    }

    .project-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specs-card {
        position: static;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-intro {
        font-size: 1.1rem;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .delivery-card.featured {
        transform: none;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button-large {
        width: 100%;
        max-width: 300px;
    }
}




/* Front page* /
/* Cold Contact Optimized Homepage Styles */
body.home {

    /* 1. Hero Banner - Emotional Connection */
    .hero-emotional {
        position: relative;
        height: 100vh;
        min-height: 700px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    4 .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(28, 34, 78, 0.8) 0%, rgba(28, 34, 78, 0.6) 50%, rgba(221, 125, 47, 0.3) 100%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .hero-text {
        max-width: 700px;
        color: white;
        text-align: left;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 24px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 1.4rem;
        line-height: 1.6;
        margin-bottom: 40px;
        opacity: 0.95;
        font-weight: 400;
    }

    .hero-actions {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn-large {
        padding: 18px 32px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }

    .btn-primary {
        background: #dd7d2f;
        color: white;
        box-shadow: 0 4px 15px rgba(221, 125, 47, 0.4);
    }

    .btn-primary:hover {
        background: #c66d28;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(221, 125, 47, 0.5);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.15);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    .hero-scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .scroll-arrow {
        color: white;
        font-size: 24px;
        opacity: 0.8;
        cursor: pointer;
    }

    /* 2. Trust Section - Immediate Trust Building */
    .trust-section {
        padding: 80px 0;
        background: #f6f0e8;
    }

    .trust-stats {
        display: flex;
        justify-content: center;
        gap: 80px;
        margin-bottom: 60px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        color: #1c224e;
        margin-bottom: 8px;
        display: block;
    }

    .stat-label {
        font-size: 16px;
        color: #666;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .trust-logos {
        text-align: center;
    }

    .trust-logos h3 {
        font-size: 1.5rem;
        color: #1c224e;
        margin-bottom: 40px;
        font-weight: 600;
    }

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

    .logo-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .logo-item:hover {
        transform: translateY(-5px);
    }

    .logo-item img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .logo-item span {
        font-size: 14px;
        font-weight: 600;
        color: #1c224e;
        text-align: center;
    }

    /* 3. House Types Teaser */
    .house-types-teaser {
        padding: 100px 0;
        background: white;
    }

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

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .house-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .house-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .house-link-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .house-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .house-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .house-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .house-card:hover .house-image img {
        transform: scale(1.05);
    }

    .house-content {
        padding: 30px;
    }

    .house-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 12px;
    }

    .house-content p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .house-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .house-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        font-size: 14px;
        color: #333;
    }

    .house-features i {
        color: #dd7d2f;
        font-size: 12px;
    }

    .section-cta {
        text-align: center;
    }

    /* 4. Portfolio Showcase */
    .portfolio-showcase {
        padding: 100px 0;
        background: #f8f9fa;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .portfolio-item {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .portfolio-link-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .portfolio-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .portfolio-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .portfolio-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .portfolio-item:hover .portfolio-image img {
        transform: scale(1.05);
    }

    .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
        display: flex;
        align-items: flex-end;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .portfolio-item:hover .portfolio-overlay {
        opacity: 1;
    }

    .portfolio-info {
        color: white;
    }

    .portfolio-info h4 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .portfolio-info p {
        font-size: 14px;
        opacity: 0.9;
        margin-bottom: 8px;
    }

    .portfolio-type {
        font-size: 12px;
        background: rgba(221, 125, 47, 0.9);
        padding: 4px 12px;
        border-radius: 12px;
        display: inline-block;
    }

    .portfolio-details {
        padding: 30px;
    }

    .portfolio-details h4 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 12px;
    }

    .portfolio-details p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        font-style: italic;
    }

    .client-info {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .client-info img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

    .client-info span {
        font-size: 14px;
        color: #1c224e;
        font-weight: 500;
    }

    /* 5. Process Simple */
    .process-simple {
        padding: 100px 0;
        background: white;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 80px;
    }

    .process-step {
        text-align: center;
        position: relative;
    }

    .process-step::after {
        content: '';
        position: absolute;
        top: 60px;
        right: -20px;
        width: 40px;
        height: 2px;
        background: #dd7d2f;
        opacity: 0.3;
    }

    .process-step:last-child::after {
        display: none;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: #dd7d2f;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        margin: 0 auto 20px;
        position: relative;
        z-index: 2;
    }

    .step-icon {
        font-size: 48px;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .step-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 12px;
    }

    .step-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .step-time {
        font-size: 14px;
        color: #dd7d2f;
        font-weight: 600;
        background: rgba(221, 125, 47, 0.1);
        padding: 4px 12px;
        border-radius: 12px;
        display: inline-block;
    }

    .process-cta {
        text-align: center;
        background: #f6f0e8;
        padding: 60px;
        border-radius: 20px;
    }

    .cta-content h3 {
        font-size: 2rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 16px;
    }

    .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-outline {
        background: transparent;
        color: #1c224e;
        border: 2px solid #1c224e;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-outline:hover {
        background: #1c224e;
        color: white;
        transform: translateY(-2px);
    }

    /* 6. Why Choose Us */
    .why-choose-us {
        padding: 100px 0;
        background: #f8f9fa;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .benefit-card {
        background: white;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        display: flex;
        gap: 24px;
        transition: all 0.3s ease;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #dd7d2f, #e8944a);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: white;
        flex-shrink: 0;
    }

    .benefit-content h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 12px;
    }

    .benefit-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .benefit-highlight {
        display: flex;
        align-items: baseline;
        gap: 8px;
    }

    .highlight-number {
        font-size: 2rem;
        font-weight: 700;
        color: #dd7d2f;
    }

    .highlight-text {
        font-size: 14px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* 7. Reviews Teaser */
    .reviews-teaser {
        padding: 100px 0;
        background: white;
    }

    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .review-card {
        background: #f8f9fa;
        padding: 40px;
        border-radius: 16px;
        border-left: 4px solid #dd7d2f;
        transition: all 0.3s ease;
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .review-stars {
        color: #ffc107;
        margin-bottom: 20px;
        font-size: 18px;
    }

    .review-card blockquote {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 24px;
        font-style: italic;
    }

    .review-author {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .review-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .author-info h4 {
        font-size: 16px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 4px;
    }

    .author-info p {
        font-size: 14px;
        color: #666;
    }

    .reviews-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-bottom: 40px;
    }

    .reviews-stats .stat {
        text-align: center;
    }

    .reviews-stats .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1c224e;
        display: block;
        margin-bottom: 8px;
    }

    .reviews-stats .stat-label {
        font-size: 14px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* 8. Blog Teaser */
    .blog-teaser {
        padding: 100px 0;
        background: #f6f0e8;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 60px;
    }

    .blog-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;

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

            &:hover {
                text-decoration: underline;
            }
        }
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .blog-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .blog-card:hover .blog-image img {
        transform: scale(1.05);
    }

    .blog-category {
        position: absolute;
        top: 16px;
        left: 16px;
        background: #dd7d2f;
        color: white;
        padding: 6px 12px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .blog-content {
        padding: 30px;
    }

    .blog-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .blog-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .blog-meta {
        display: flex;
        gap: 16px;
        font-size: 14px;
        color: #999;
    }

    /* 9. About Teaser */
    .about-teaser {
        padding: 100px 0;
        background: white;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-description {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #666;
        margin-bottom: 24px;
    }

    .about-values {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 40px;
    }

    .value-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        color: #333;
    }

    .value-item i {
        color: #dd7d2f;
        font-size: 20px;
        width: 24px;
    }

    .about-visual {
        position: relative;
    }

    .about-image {
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .about-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .about-stats {
        display: flex;
        gap: 20px;
    }

    .about-stats .stat-card {
        background: #f6f0e8;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        flex: 1;
    }

    .about-stats .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 4px;
    }

    .about-stats .stat-label {
        font-size: 12px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* 10. Final CTA */
    .final-cta {
        padding: 100px 0;
        background: linear-gradient(135deg, #1c224e 0%, #2a3166 100%);
        color: white;
        text-align: center;
    }

    .cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cta-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .cta-actions {
        display: flex;
        justify-content: center;
        gap: 24px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

    .btn-xl {
        padding: 20px 40px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 12px;
    }

    .final-cta .btn-primary {
        background: #dd7d2f;
        color: white;
    }

    .final-cta .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .final-cta .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .cta-contact-info {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        opacity: 0.9;
    }

    .contact-item i {
        font-size: 18px;
        color: #dd7d2f;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .trust-stats {
            gap: 40px;
        }

        .house-grid,
        .portfolio-grid,
        .reviews-grid,
        .blog-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .process-steps {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 20px;
        }

        .process-step::after {
            display: none;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .about-content {
            grid-template-columns: 1fr;
            gap: 60px;
        }
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .hero-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .btn-large {
            justify-content: center;
        }

        .trust-stats {
            flex-direction: column;
            gap: 30px;
            text-align: center;
        }

        .logo-grid {
            gap: 20px;
        }

        .house-grid,
        .portfolio-grid,
        .reviews-grid,
        .blog-grid {
            grid-template-columns: 1fr;
        }

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

        .benefit-card {
            flex-direction: column;
            text-align: center;
        }

        .reviews-stats {
            flex-direction: column;
            gap: 20px;
        }

        .cta-actions {
            flex-direction: column;
            align-items: center;
        }

        .cta-contact-info {
            flex-direction: column;
            gap: 20px;
        }

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

        .cta-title {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .hero-emotional {
            min-height: 600px;
        }

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

        .hero-subtitle {
            font-size: 1rem;
        }

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

        .trust-section,
        .house-types-teaser,
        .portfolio-showcase,
        .process-simple,
        .why-choose-us,
        .reviews-teaser,
        .blog-teaser,
        .about-teaser,
        .final-cta {
            padding: 60px 0;
        }

        .house-card,
        .portfolio-item,
        .review-card,
        .blog-card {
            margin-bottom: 20px;
        }

        .benefit-card {
            padding: 30px 20px;
        }

        .process-cta {
            padding: 40px 20px;
        }
    }
}

.house-card,
.project-card {

    .house-badge,
    .badge-right {
        position: absolute;
        top: 16px;
        right: 16px;
        background: #1c224e;
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
    }

    .popular-badge,
    .badge-left {
        position: absolute;
        top: 16px;
        left: 16px;
        background: #dd7d2f;
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
}

.animate-slide-in-bottom {
    animation: slideInFromBottom 0.8s ease-out forwards;
    opacity: 0;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Staggered Animation Delays */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

.animate-delay-6 {
    animation-delay: 0.6s;
}

.animate-delay-7 {
    animation-delay: 0.7s;
}

.animate-delay-8 {
    animation-delay: 0.8s;
}

/* Parallax Effect */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Hover Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Icon Animations */
.icon-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Loading Animation */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

/* Smooth Transitions */
.smooth-transition {
    transition: all 0.3s ease;
}

/* Intersection Observer Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button Animations */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-animated:hover::before {
    left: 100%;
}

/* Card Animations */
.card-animated {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-animated:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;

}

.text-reveal:not(.revealing) {
    visibility: hidden;
}

.text-reveal span {
    display: inline-block;
    animation: textReveal 0.8s ease forwards;
    opacity: 0;
    transform: translateY(100%);
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress Bar Animation */
.progress-bar {
    width: 0%;
    transition: width 2s ease;
}

.progress-bar.animate {
    width: var(--progress-width);
}

/* Responsive Animations */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 768px) {

    .animate-fade-in-up,
    .animate-fade-in-left,
    .animate-fade-in-right,
    .animate-scale-in,
    .animate-slide-in-bottom {
        animation-duration: 0.6s;
    }
}


.page-404 {
    padding: 100px 0;
}

.block-separator {
    background: #f6f0e8;
    padding: 100px 0;
}




/* project model page */
.single-project_model {
    .cta-button {
        background: #1c224e;
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

    .cta-button:hover {
        background: #dd7d2f;
    }

    /* Hero Section - Clean Design */
    .project-hero {
        background: #f6f0e8;
        padding: 0;
        position: relative;
    }

    .hero-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 70vh;
        align-items: center;
    }

    .hero-content {
        padding: 4rem;
        max-width: 600px;
    }

    .project-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .project-subtitle {
        font-size: 1.25rem;
        color: #666;
        margin-bottom: 2rem;
        font-weight: 400;
    }

    .project-specs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .spec-item {
        text-align: center;
    }

    .spec-number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #dd7d2f;
        line-height: 1;
    }

    .spec-label {
        font-size: 0.9rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 0.5rem;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: #1c224e;
        color: white;
        border: none;
        padding: 1rem 2rem;
        border-radius: 4px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }

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

    .btn-secondary {
        background: transparent;
        color: #1c224e;
        border: 2px solid #1c224e;
        padding: 1rem 2rem;
        border-radius: 4px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: inline-block;
        text-align: center;
    }

    .btn-secondary:hover {
        background: #1c224e;
        color: white;
    }

    .hero-image {
        position: relative;
        height: 70vh;
        overflow: hidden;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .image-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: #1c224e;
        transition: all 0.3s;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .image-nav:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
    }

    .image-nav.prev {
        left: 2rem;
    }

    .image-nav.next {
        right: 2rem;
    }

    /* Main Content */
    .main-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 4rem 2rem;
    }

    .content-section {
        margin-bottom: 4rem;
    }

    .content-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .content-section h3 {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    .content-section p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 1.5rem;
    }

    /* Specifications Table */
    .specs-table {
        background: #f6f0e8;
        border-radius: 8px;
        padding: 2rem;
        margin: 2rem 0;
    }

    .specs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .spec-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid #ddd;
    }

    .spec-row:last-child {
        border-bottom: none;
    }

    .spec-row strong {
        color: #1c224e;
        font-weight: 600;
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin: 2rem 0;
    }

    .feature-card {
        text-align: center;
        padding: 0 0 2rem;
        background: #f9f9f9;
        border-radius: 8px;
        transition: transform 0.3s;
    }

    .feature-image {
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .feature-card h4 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        color: #666;
        font-size: 1rem;
    }

    /* Testimonial */
    .testimonial {
        background: #f6f0e8;
        border-radius: 8px;
        padding: 3rem;
        margin: 3rem 0;
        text-align: center;
    }

    .testimonial-quote {
        font-size: 1.25rem;
        font-style: italic;
        color: #555;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .author-info h5 {
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 0.25rem;
    }

    .author-info span {
        color: #666;
        font-size: 0.9rem;
    }

    .author-info img {
        border-radius: 50%;
        max-width: 100px;
    }

    /* Footer */
    .footer {
        background: #1c224e;
        color: white;
        padding: 3rem 0 2rem;
        margin-top: 4rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section h4 {
        color: #dd7d2f;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-section ul li a:hover {
        color: #dd7d2f;
    }

    .footer-logo img {
        height: 40px;
        margin-bottom: 1rem;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid #333;
        color: #999;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-container {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .hero-content {
            padding: 2rem;
            order: 2;
        }

        .hero-image {
            height: 50vh;
            order: 1;
        }

        .project-title {
            font-size: 2.5rem;
        }

        .project-specs {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .hero-actions {
            flex-direction: column;
        }

        .btn-primary,
        .btn-secondary {
            width: 100%;
            text-align: center;
        }

        .main-content {
            padding: 2rem 1rem;
        }

        .content-section h2 {
            font-size: 2rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .nav-container {
            padding: 1rem;
        }

        .nav-menu {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .project-title {
            font-size: 2rem;
        }

        .spec-number {
            font-size: 2rem;
        }

        .testimonial {
            padding: 2rem 1rem;
        }

        .image-nav {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }

        .image-nav.prev {
            left: 1rem;
        }

        .image-nav.next {
            right: 1rem;
        }
    }

    .plans {
        position: relative;
    }
    .plans-nav {
        position: absolute;
        top: 40%;
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .invisible {
        visibility: hidden;
    }
    .d-none {
        display: none;
    }
    .plan-nav {
        border: none;
        background: transparent;
        font-size: 30px;
        cursor: pointer;
    }
}

body.blog,
body.archive {

    /* Blog Page Styles */
    section a {
        color: inherit;
        text-decoration: none;

        &:hover {
            text-decoration: underline;
        }
    }

    /* Blog Hero */
    .blog-hero {
        padding: 150px 0 80px;
        background: linear-gradient(135deg, #f6f0e8 0%, #fff 100%);
        text-align: center;
    }

    .blog-hero .hero-title {
        font-size: 3rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .blog-hero .hero-description {
        font-size: 1.3rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Featured Article */
    .featured-article {
        padding: 80px 0;
        background: white;
    }

    .featured-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .featured-image {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .featured-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .featured-tag {
        display: inline-block;
        background: #dd7d2f;
        color: white;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 15px;
    }

    .featured-text h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .featured-excerpt {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .article-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }

    .article-meta span {
        color: #999;
        font-size: 0.9rem;
    }

    .author {
        font-weight: 500;
        color: #1c224e !important;
    }

    .read-more-btn {
        background: #1c224e;
        color: white;
        padding: 12px 24px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .read-more-btn:hover {
        background: #dd7d2f;
        transform: translateY(-2px);
    }

    /* Blog Categories */
    .blog-categories {
        padding: 60px 0;
        background: #f6f0e8;
    }

    .category-filters {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .category-btn {
        background: transparent;
        color: #1c224e;
        border: 2px solid #1c224e;
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .category-btn:hover,
    .category-btn.active {
        background: #1c224e;
        color: white;
    }

    .category-btn.active:hover {
        background: #dd7d2f;
        border-color: #dd7d2f;
    }

    /* Blog Grid */
    .blog-grid {
        padding: 80px 0;
        background: white;
    }

    .articles-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 60px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .blog-image {
        position: relative;
        height: 220px;
        overflow: hidden;
    }

    .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .blog-card:hover .blog-image img {
        transform: scale(1.05);
    }

    .blog-category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(28, 34, 78, 0.9);
        color: white;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 500;
        text-transform: uppercase;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .blog-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .blog-content .article-meta {
        margin-bottom: 15px;
        gap: 15px;
    }

    .blog-link {
        color: #1c224e;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .blog-link:hover {
        color: #dd7d2f;
    }

    /* Load More */
    .load-more-section {
        text-align: center;
    }

    .load-more-btn {
        background: transparent;
        color: #1c224e;
        border: 2px solid #1c224e;
        padding: 15px 30px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .load-more-btn:hover {
        background: #1c224e;
        color: white;
    }

    /* Newsletter Signup */
    .newsletter-signup {
        text-align: center;
        padding: 100px 0;
    }

    .newsletter-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 15px;
    }

    .newsletter-content p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .newsletter-form input {
        flex: 1;
        padding: 15px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 6px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

    .newsletter-form input:focus {
        outline: none;
        border-color: #1c224e;
    }

    .newsletter-form button {
        background: #1c224e;
        color: white;
        border: none;
        padding: 15px 25px;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
        white-space: nowrap;
    }

    .newsletter-form button:hover {
        background: #dd7d2f;
    }

    /* Filter Animation */
    .blog-card.hidden {
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s ease;
    }

    .blog-card.visible {
        opacity: 1;
        transform: scale(1);
        transition: all 0.3s ease;
    }

    /* Mobile Responsive */
    @media (max-width: 1200px) {
        .articles-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
    }

    @media (max-width: 768px) {
        .blog-hero .hero-title {
            font-size: 2.2rem;
        }

        .blog-hero .hero-description {
            font-size: 1.1rem;
        }

        .featured-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .featured-text h2 {
            font-size: 1.8rem;
        }

        .category-filters {
            gap: 10px;
        }

        .category-btn {
            padding: 8px 16px;
            font-size: 0.9rem;
        }

        .articles-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .article-meta {
            gap: 10px;
        }

        .newsletter-form {
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form button {
            padding: 15px 20px;
        }
    }


}



.house-type-card,
.process-step,
.blog-card,
.stat {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.house-type-card.animate-in.is-visible,
.process-step.animate-in.is-visible,
.blog-card.animate-in.is-visible,
.stat.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}


body.single-post {
    /* Blog Article Styles - Eesti Haldus Inspired */

    /* Breadcrumb */
    .breadcrumb {
        background: #f6f0e8;
        padding: 20px 0;
        margin-top: 70px;
    }

    .breadcrumb-nav {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .breadcrumb-nav a {
        color: #1c224e;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb-nav a:hover {
        color: #dd7d2f;
    }

    .separator {
        color: #999;
    }

    .current {
        color: #666;
    }

    /* Article Header */
    .article-header {
        background: linear-gradient(135deg, #1c224e 0%, #2a3166 100%);
        color: white;
        padding: 80px 0 60px;
        position: relative;
        overflow: hidden;
    }

    .article-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

    .article-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }

    .category {
        background: #dd7d2f;
        color: white;
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .date,
    .read-time {
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    .article-title {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }

    .article-subtitle {
        font-size: 1.25rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        max-width: 800px;
        position: relative;
        z-index: 2;
    }

    .author-info {
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
        z-index: 2;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid rgba(255, 255, 255, 0.2);
    }

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

    .author-name {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .author-title {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }

    /* Article Content */
    .article-content {
        padding: 80px 0;
        background: white;
    }

    .content-wrapper {
        display: grid;
        grid-template-columns: 1fr 350px;
        gap: 60px;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .main-content {
        max-width: none;
    }

    /* Featured Image */
    .featured-image {
        margin-bottom: 50px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .featured-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .featured-image:hover img {
        transform: scale(1.02);
    }

    .image-caption {
        background: #f6f0e8;
        padding: 15px 20px;
        font-size: 14px;
        color: #666;
        font-style: italic;
        margin: 0;
    }

    /* Article Body */
    .article-body {
        font-size: 18px;
        line-height: 1.8;
        color: #333;
    }

    .lead {
        font-size: 22px;
        font-weight: 500;
        color: #1c224e;
        margin-bottom: 40px;
        padding-left: 20px;
        border-left: 4px solid #dd7d2f;
        line-height: 1.6;
    }

    .article-body h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #1c224e;
        margin: 50px 0 25px;
        position: relative;
    }

    .article-body h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: #dd7d2f;
        border-radius: 2px;
    }

    .article-body p {
        margin-bottom: 25px;
    }

    .feature-list {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
        margin: 30px 0;
        border-left: 4px solid #dd7d2f;
    }

    .feature-list li {
        margin-bottom: 15px;
        padding-left: 10px;
    }

    .feature-list li:last-child {
        margin-bottom: 0;
    }

    /* Highlight Box */
    .highlight-box {
        background: linear-gradient(135deg, #dd7d2f 0%, #e8944a 100%);
        color: white;
        padding: 30px;
        border-radius: 12px;
        margin: 40px 0;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(221, 125, 47, 0.3);
    }

    .highlight-icon {
        font-size: 24px;
        margin-top: 5px;
        opacity: 0.9;
    }

    .highlight-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .highlight-content p {
        margin: 0;
        line-height: 1.6;
    }

    /* Statistics Grid */
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 40px 0;
    }

    .stat-card {
        background: white;
        padding: 30px 20px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid #f0f0f0;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 14px;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Comparison Table */
    .comparison-table {
        margin: 40px 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .comparison-table th {
        background: #1c224e;
        color: white;
        padding: 20px;
        text-align: left;
        font-weight: 600;
    }

    .comparison-table td {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        background: white;
    }

    .comparison-table tr:nth-child(even) td {
        background: #f8f9fa;
    }

    .savings {
        color: #28a745;
        font-weight: 600;
    }

    /* Testimonial */
    .testimonial {
        background: #f6f0e8;
        padding: 40px;
        border-radius: 12px;
        margin: 40px 0;
        border-left: 4px solid #dd7d2f;
        font-style: italic;
        position: relative;
    }

    .testimonial::before {
        content: '"';
        font-size: 4rem;
        color: #dd7d2f;
        position: absolute;
        top: 10px;
        left: 20px;
        font-family: serif;
        opacity: 0.3;
    }

    .testimonial p {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 20px;
        padding-left: 40px;
    }

    .testimonial cite {
        font-weight: 600;
        color: #1c224e;
        font-style: normal;
        padding-left: 40px;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #1c224e 0%, #2a3166 100%);
        color: white;
        padding: 50px;
        border-radius: 12px;
        text-align: center;
        margin: 50px 0;
    }

    .cta-section h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-section p {
        font-size: 18px;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .cta-button-large {
        background: #dd7d2f;
        color: white;
        border: none;
        padding: 18px 40px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .cta-button-large:hover {
        background: #c66d28;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(221, 125, 47, 0.3);
    }

    /* Social Share */
    .social-share {
        margin: 50px 0;
        padding: 30px 0;
        border-top: 1px solid #f0f0f0;
        border-bottom: 1px solid #f0f0f0;
    }

    .social-share h4 {
        margin-bottom: 20px;
        color: #1c224e;
    }

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

    .share-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .share-btn.facebook {
        background: #1877f2;
        color: white;
    }

    .share-btn.twitter {
        background: #1da1f2;
        color: white;
    }

    .share-btn.linkedin {
        background: #0077b5;
        color: white;
    }

    .share-btn.email {
        background: #666;
        color: white;
    }

    .share-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Comments Section */
    .comments-section {
        margin-top: 60px;
    }

    .comments-section h3 {
        font-size: 1.5rem;
        color: #1c224e;
        margin-bottom: 30px;
    }

    .comment {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #f0f0f0;
    }

    .comment:last-child {
        border-bottom: none;
    }

    .comment-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
    }

    .comment-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .comment-content {
        flex: 1;
    }

    .comment-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 10px;
    }

    .comment-author {
        font-size: 16px;
        font-weight: 600;
        color: #1c224e;
    }

    .author-badge {
        background: #dd7d2f;
        color: white;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
    }

    .comment-date {
        font-size: 14px;
        color: #666;
    }

    .comment-text {
        margin-bottom: 15px;
        line-height: 1.6;
    }

    .reply-btn {
        background: none;
        border: none;
        color: #dd7d2f;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .reply-btn:hover {
        color: #c66d28;
    }

    .author-reply {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid #dd7d2f;
    }

    /* Comment Form */
    .comment-form {
        background: #f8f9fa;
        padding: 40px;
        border-radius: 12px;
        margin-top: 40px;
    }

    .comment-form h4 {
        margin-bottom: 25px;
        color: #1c224e;
    }

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

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #333;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #dd7d2f;
    }

    .submit-btn {
        background: #1c224e;
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

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

    /* Sidebar */
    .sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
    }

    .sidebar-widget {
        background: white;
        border-radius: 12px;
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
    }

    .sidebar-widget h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 20px;
    }

    /* Author Bio */
    .author-bio {
        text-align: center;
    }

    .author-avatar-large {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 20px;
        border: 4px solid #f0f0f0;
    }

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

    .author-bio h3 {
        margin-bottom: 5px;
        text-align: center;
    }

    .author-bio .author-title {
        color: #dd7d2f;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .author-description {
        font-size: 14px;
        line-height: 1.6;
        color: #666;
        margin-bottom: 20px;
    }

    .author-social {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .author-social a {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666;
        transition: all 0.3s ease;
    }

    .author-social a:hover {
        background: #dd7d2f;
        color: white;
    }

    /* Related Articles */
    .related-article {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .related-article:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .related-image {
        width: 80px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
    }

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

    .related-content h4 {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 5px;
    }

    .related-content h4 a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .related-content h4 a:hover {
        color: #dd7d2f;
    }

    .related-meta {
        font-size: 12px;
        color: #666;
    }

    /* Newsletter */
    .newsletter p {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        padding: 12px 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 14px;
    }

    .newsletter-form button {
        background: #dd7d2f;
        color: white;
        border: none;
        padding: 12px 16px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .newsletter-form button:hover {
        background: #c66d28;
    }

    /* Categories */
    .categories ul {
        list-style: none;
    }

    .categories li {
        margin-bottom: 10px;
    }

    .categories li:last-child {
        margin-bottom: 0;
    }

    .categories a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .categories a:hover {
        color: #dd7d2f;
    }

    .categories span {
        background: #f0f0f0;
        color: #666;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 12px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .content-wrapper {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .sidebar {
            position: static;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .article-title {
            font-size: 2rem;
        }

        .article-subtitle {
            font-size: 1.1rem;
        }

        .article-meta {
            flex-wrap: wrap;
            gap: 10px;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .share-buttons {
            justify-content: center;
        }

        .comment {
            flex-direction: column;
            gap: 15px;
        }

        .comment-header {
            flex-wrap: wrap;
        }

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

        .cta-section {
            padding: 30px 20px;
        }

        .comparison-table {
            overflow-x: auto;
        }

        .sidebar-widget {
            padding: 20px;
        }
    }


}

body.page-template-quality {
    /* Quality Page Styles */

    .quality-hero {
        background: linear-gradient(135deg, #f6f0e8 0%, #ffffff 100%);
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 24px;
        color: #666;
        margin-bottom: 40px;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 40px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: #dd7d2f;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 16px;
        color: #666;
    }

    /* Green Technology Section */
    .green-technology {
        padding: 80px 0;
        background-color: #ffffff;
    }

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

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .section-header p {
        font-size: 20px;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .green-feature {
        text-align: center;
        padding: 30px 20px;
        border-radius: 12px;
        background-color: #f6f0e8;
        transition: transform 0.3s ease;
    }

    .green-feature:hover {
        transform: translateY(-5px);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background-color: #dd7d2f;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: white;
        flex-shrink: 0;
    }

    .green-feature h3 {
        font-size: 24px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 15px;
    }

    .green-feature p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
    }

    /* Quality Standards Section */
    .quality-standards {
        padding: 80px 0;
        background-color: #f6f0e8;
    }

    .standards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .standards-content h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .standards-content>p {
        font-size: 20px;
        color: #666;
        margin-bottom: 40px;
    }

    .quality-points {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .quality-point {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .point-icon {
        width: 50px;
        height: 50px;
        background-color: #dd7d2f;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        flex-shrink: 0;
    }

    .point-content h4 {
        font-size: 20px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 5px;
    }

    .point-content p {
        font-size: 16px;
        color: #666;
    }

    .certificate-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .certificate {
        background-color: white;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .certificate:hover {
        transform: translateY(-5px);
    }

    .cert-icon {
        width: 60px;
        height: 60px;
        background-color: #f6f0e8;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        color: #1c224e;
        font-size: 24px;
    }

    .cert-title {
        font-size: 20px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 5px;
    }

    .cert-subtitle {
        font-size: 14px;
        color: #666;
    }

    /* Warranty Section */
    .warranty-section {
        padding: 80px 0;
        background-color: #ffffff;
    }

    .warranty-content {
        text-align: center;
    }

    .warranty-content h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .warranty-content>p {
        font-size: 20px;
        color: #666;
        margin-bottom: 60px;
    }

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

    .warranty-item {
        text-align: center;
        padding: 40px 20px;
        border-radius: 12px;
        background-color: #f6f0e8;
        transition: transform 0.3s ease;
    }

    .warranty-item:hover {
        transform: translateY(-5px);
    }

    .warranty-icon {
        width: 80px;
        height: 80px;
        background-color: #1c224e;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 32px;
    }

    .warranty-item h3 {
        font-size: 20px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 10px;
    }

    .warranty-years {
        font-size: 28px;
        font-weight: 700;
        color: #dd7d2f;
        margin-bottom: 15px;
    }

    .warranty-item p {
        font-size: 16px;
        color: #666;
    }

    /* Quality Control Section */
    .quality-control {
        padding: 80px 0;
        background-color: #f6f0e8;
    }

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

    .control-step {
        text-align: center;
        padding: 40px 20px;
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .control-step:hover {
        transform: translateY(-5px);
    }

    .step-number {
        width: 60px;
        height: 60px;
        background-color: #dd7d2f;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 24px;
        font-weight: 700;
    }

    .control-step h3 {
        font-size: 20px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 15px;
    }

    .control-step p {
        font-size: 16px;
        color: #666;
    }

    /* CTA Section */
    .quality-cta {
        padding: 80px 0;
        background-color: #1c224e;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 36px;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 40px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn {
        padding: 15px 30px;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn-primary {
        background-color: #dd7d2f;
        color: white;
    }

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

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

    .btn-secondary:hover {
        background-color: white;
        color: #1c224e;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-stats {
            flex-direction: column;
            gap: 30px;
        }

        .standards-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .certificate-grid {
            grid-template-columns: 1fr;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 36px;
        }

        .section-header h2 {
            font-size: 28px;
        }

        .form-container {
            padding: 30px 20px;
        }
    }
}



body.page-template-contact {
    /* Contacts Page Styles */

    .contacts-hero {
        background: linear-gradient(135deg, #f6f0e8 0%, #ffffff 100%);
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 24px;
        color: #666;
        margin-bottom: 40px;
    }

    /* Contact Information Section */
    .contact-info {
        padding: 80px 0;
        background-color: #ffffff;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: flex-start;
    }

    .contact-methods h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .contact-methods>p {
        font-size: 18px;
        color: #666;
        margin-bottom: 40px;
    }

    .contact-method {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .method-icon {
        width: 60px;
        height: 60px;
        background-color: #dd7d2f;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        flex-shrink: 0;
    }

    .method-content h3 {
        font-size: 20px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 8px;
    }

    .method-content p {
        font-size: 18px;
        color: #333;
        margin-bottom: 5px;
        line-height: 1.4;
    }

    .method-content span {
        font-size: 14px;
        color: #666;
    }

    /* Contact Form - Contact Form 7 Integration */
    .form-container {
        background-color: #f6f0e8;
        border-radius: 12px;
        padding: 40px;
    }

    .form-container h2 {
        font-size: 28px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 15px;
    }

    .form-container>p {
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
    }

    /* Contact Form 7 Wrapper */
    .wpcf7 {
        width: 100%;
    }

    .wpcf7-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Form Row for Side-by-Side Fields */
    .wpcf7-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Form Group Styling */
    .wpcf7-form .form-group {
        display: flex;
        flex-direction: column;

        br {
            display: none;
        }
    }

    .wpcf7-form .form-group label {
        font-size: 16px;
        font-weight: 500;
        color: #1c224e;
        margin-bottom: 8px;
        display: block;
    }

    /* Input, Select, Textarea Styling */
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #ddd;
        border-radius: 12px;
        font-size: 16px;
        font-family: 'Inter', sans-serif;
        transition: border-color 0.3s ease;
        background-color: white;
        box-sizing: border-box;
    }

    .wpcf7-form input:focus,
    .wpcf7-form select:focus,
    .wpcf7-form textarea:focus {
        outline: none;
        border-color: #dd7d2f;
    }

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

    /* Form Control Wrapper */
    .wpcf7-form-control-wrap {
        display: block;
        width: 100%;
    }

    /* Checkbox Groups */
    .wpcf7-form .checkbox-group {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        margin: 10px 0;
    }

    .wpcf7-form .wpcf7-list-item {
        margin: 0;
    }

    .wpcf7-form .wpcf7-list-item-label {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 14px;
        color: #666;
        cursor: pointer;
        line-height: 1.4;
    }

    /* Custom Checkbox Styling */
    .wpcf7-form input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border: 2px solid #ddd;
        border-radius: 4px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
        margin: 2px 0 0 0;
        cursor: pointer;
        position: relative;
    }

    .wpcf7-form input[type="checkbox"]:checked {
        background-color: #dd7d2f;
        border-color: #dd7d2f;
    }

    .wpcf7-form input[type="checkbox"]:checked::after {
        content: '✓';
        color: white;
        font-size: 14px;
        font-weight: bold;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .wpcf7-form .wpcf7-acceptance {
        margin: 10px 0;

        label {
            display: flex;
        }
    }

    /* Links in Form */
    .wpcf7-form a {
        color: #dd7d2f;
        text-decoration: none;
    }

    .wpcf7-form a:hover {
        text-decoration: underline;
    }

    /* Submit Button */
    .wpcf7-form .wpcf7-submit {
        background: linear-gradient(135deg, #1c224e 0%, #2d3470 100%);
        color: white;
        border: none;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
        width: auto;
    }

    .wpcf7-form .wpcf7-submit:hover {
        background: linear-gradient(135deg, #dd7d2f 0%, #e8945a 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(221, 125, 47, 0.3);
    }

    .wpcf7-form .wpcf7-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    /* Validation Messages */
    .wpcf7-form .wpcf7-not-valid-tip {
        color: #d32f2f;
        font-size: 14px;
        margin-top: 5px;
        display: block;
    }

    .wpcf7-form .wpcf7-not-valid {
        border-color: #d32f2f !important;
    }

    /* Response Messages */
    .wpcf7-form .wpcf7-response-output {
        margin: 20px 0 0;
        padding: 15px 20px;
        border-radius: 12px;
        font-size: 16px;
        border: 2px solid transparent;
    }

    .wpcf7-form .wpcf7-mail-sent-ok {
        background: #d4edda;
        color: #155724;
        border-color: #c3e6cb;
    }

    .wpcf7-form .wpcf7-validation-errors,
    .wpcf7-form .wpcf7-mail-sent-ng {
        background: #f8d7da;
        color: #721c24;
        border-color: #f5c6cb;
    }

    .wpcf7-form .wpcf7-spam-blocked {
        background: #fff3cd;
        color: #856404;
        border-color: #ffeaa7;
    }

    /* Loading Spinner */
    .wpcf7-form .wpcf7-spinner {
        margin-left: 10px;
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: white;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .wpcf7-form .form-row {
            grid-template-columns: 1fr;
        }

        .locations-grid {
            grid-template-columns: 1fr;
        }

        .hero-content h1 {
            font-size: 36px;
        }

        .section-header h2 {
            font-size: 28px;
        }

        .form-container {
            padding: 30px 20px;
        }

        .wpcf7-form .wpcf7-submit {
            width: 100%;
        }
    }

    /* Contacts Page Styles */

    .contacts-hero {
        background: linear-gradient(135deg, #f6f0e8 0%, #ffffff 100%);
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 24px;
        color: #666;
        margin-bottom: 40px;
    }

    /* Contact Information Section */
    .contact-info {
        padding: 80px 0;
        background-color: #ffffff;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: flex-start;
    }

    .contact-methods h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .contact-methods>p {
        font-size: 18px;
        color: #666;
        margin-bottom: 40px;
    }

    .contact-method {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .method-icon {
        width: 60px;
        height: 60px;
        background-color: #dd7d2f;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        flex-shrink: 0;
    }

    .method-content h3 {
        font-size: 20px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 8px;
    }

    .method-content p {
        font-size: 18px;
        color: #333;
        margin-bottom: 5px;
        line-height: 1.4;
    }

    .method-content span {
        font-size: 14px;
        color: #666;
    }

    /* Contact Form */
    .form-container {
        background-color: #f6f0e8;
        border-radius: 12px;
        padding: 40px;
    }

    .form-container h2 {
        font-size: 28px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 15px;
    }

    .form-container>p {
        font-size: 16px;
        color: #666;
        margin-bottom: 30px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-size: 16px;
        font-weight: 500;
        color: #1c224e;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        border: 2px solid #ddd;
        border-radius: 12px;
        font-size: 16px;
        font-family: 'Inter', sans-serif;
        transition: border-color 0.3s ease;
        background-color: white;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #dd7d2f;
    }

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

    .checkbox-group {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 14px;
        color: #666;
        cursor: pointer;
        line-height: 1.4;
    }

    .checkbox-label input[type="checkbox"] {
        display: none;
    }

    .checkmark {
        width: 20px;
        height: 20px;
        border: 2px solid #ddd;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
        margin-top: 2px;
    }

    .checkbox-label input[type="checkbox"]:checked+.checkmark {
        background-color: #dd7d2f;
        border-color: #dd7d2f;
    }

    .checkbox-label input[type="checkbox"]:checked+.checkmark::after {
        content: '✓';
        color: white;
        font-size: 14px;
        font-weight: bold;
    }

    .checkbox-label a {
        color: #dd7d2f;
        text-decoration: none;
    }

    .checkbox-label a:hover {
        text-decoration: underline;
    }

    .submit-btn {
        background: linear-gradient(135deg, #1c224e 0%, #2d3470 100%);
        color: white;
        border: none;
        padding: 16px 32px;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }

    .submit-btn:hover {
        background: linear-gradient(135deg, #dd7d2f 0%, #e8945a 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(221, 125, 47, 0.3);
    }

    /* Office Locations */
    .office-locations {
        padding: 80px 0;
        background-color: #f6f0e8;
    }

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

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .section-header p {
        font-size: 20px;
        color: #666;
    }

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

    .location-card {
        background-color: white;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .location-card:hover {
        transform: translateY(-5px);
    }

    .location-image {
        width: 80px;
        height: 80px;
        background-color: #f6f0e8;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: #1c224e;
        font-size: 32px;
    }

    .location-card h3 {
        font-size: 24px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 15px;
    }

    .location-address {
        font-size: 16px;
        color: #333;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .location-description {
        font-size: 14px;
        color: #666;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .location-hours {
        font-size: 14px;
        color: #666;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .location-btn {
        display: inline-block;
        padding: 10px 20px;
        background-color: #dd7d2f;
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .location-btn:hover {
        background-color: #c66d1f;
    }

    /* FAQ Section */
    .faq-section {
        padding: 80px 0;
        background-color: #ffffff;
    }

    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background-color: #f6f0e8;
        border-radius: 12px;
        overflow: hidden;
    }

    .faq-question {
        padding: 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
    }

    .faq-question:hover {
        background-color: #f0e8d8;
    }

    .faq-question h3 {
        font-size: 18px;
        font-weight: 600;
        color: #1c224e;
        margin: 0;
    }

    .faq-question i {
        color: #dd7d2f;
        transition: transform 0.3s ease;
    }

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

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

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
        max-height: 200px;
    }

    .faq-answer p {
        font-size: 16px;
        color: #666;
        line-height: 1.5;
        margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .locations-grid {
            grid-template-columns: 1fr;
        }

        .hero-content h1 {
            font-size: 36px;
        }

        .section-header h2 {
            font-size: 28px;
        }

        .form-container {
            padding: 30px 20px;
        }
    }


}


body.page-template-process {
    /* Process Page Styles */

    /* Process Hero */
    .process-hero {
        padding: 150px 0 100px;
        background: linear-gradient(135deg, #f6f0e8 0%, #fff 100%);
        text-align: center;
    }

    .process-hero .hero-title {
        font-size: 3rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .process-hero .hero-description {
        font-size: 1.3rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

    /* Kastelli System */
    .kastelli-system {
        padding: 100px 0;
        background: white;
    }

    .system-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .system-text h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 25px;
    }

    .system-intro {
        font-size: 1.2rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .system-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

    .feature-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        background: #f6f0e8;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature-content h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 8px;
    }

    .feature-content p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .system-visual {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .system-visual img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    /* Process Steps */
    .process-steps {
        padding: 100px 0;
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .step-card {
        background: white;
        border-radius: 12px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
    }

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .step-number {
        position: absolute;
        top: -20px;
        left: 30px;
        width: 50px;
        height: 50px;
        background: #1c224e;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
    }

    .step-content h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .step-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .step-content ul {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }

    .step-content li {
        padding: 6px 0;
        padding-left: 25px;
        position: relative;
        color: #666;
        font-size: 0.95rem;
    }

    .step-content li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #dd7d2f;
        font-weight: bold;
    }

    .step-duration {
        background: #f6f0e8;
        color: #1c224e;
        padding: 10px 15px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.9rem;
        text-align: center;
    }

    /* Why Kastelli */
    .why-kastelli {
        padding: 100px 0;
        background: white;
    }

    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .advantage-card {
        text-align: center;
        padding: 40px 20px;
        background: #f6f0e8;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

    .advantage-card:hover {
        transform: translateY(-5px);
    }

    .advantage-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        display: block;
    }

    .advantage-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 15px;
    }

    .advantage-card p {
        color: #666;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* Technology Section */
    .technology-section {
        padding: 100px 0;
    }

    .tech-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .tech-text h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .tech-intro {
        font-size: 1.1rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .tech-features {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .tech-feature h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 8px;
    }

    .tech-feature p {
        color: #666;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .tech-visual {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .tech-visual img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    /* Process CTA */
    .process-cta {
        padding: 100px 0;
        background: white;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-button-large {
        padding: 18px 36px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }

    .cta-button-large.primary {
        background: #1c224e;
        color: white;
    }

    .cta-button-large.primary:hover {
        background: #dd7d2f;
        transform: translateY(-2px);
    }

    .cta-button-large.secondary {
        background: transparent;
        color: #1c224e;
        border: 2px solid #1c224e;
    }

    .cta-button-large.secondary:hover {
        background: #1c224e;
        color: white;
        transform: translateY(-2px);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .process-hero .hero-title {
            font-size: 2.2rem;
        }

        .process-hero .hero-description {
            font-size: 1.1rem;
        }

        .system-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .system-text h2 {
            font-size: 2rem;
        }

        .system-features {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .steps-container {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .step-card {
            padding: 50px 25px 30px;
        }

        .advantages-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .tech-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .tech-text h2 {
            font-size: 1.8rem;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .cta-button-large {
            width: 100%;
            max-width: 300px;
        }
    }


}



body.page-template-process2 {
    /* Enhanced Process Page Styles */

    .process-hero {
        background: linear-gradient(135deg, #f6f0e8 0%, #ffffff 100%);
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 24px;
        color: #666;
        margin-bottom: 60px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin-top: 40px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 36px;
        font-weight: 700;
        color: #dd7d2f;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 16px;
        color: #666;
    }

    /* Process Timeline */
    .process-timeline {
        padding: 100px 0;
        background-color: #ffffff;
    }

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

    .section-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .section-header p {
        font-size: 20px;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

    .timeline {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, #dd7d2f, #1c224e);
        transform: translateX(-50%);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 80px;
        display: flex;
        align-items: flex-start;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .timeline-marker {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 40px;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #dd7d2f, #e8945a);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
        box-shadow: 0 4px 12px rgba(221, 125, 47, 0.3);
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        background-color: #1c224e;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
    }

    .timeline-content {
        flex: 1;
        background-color: #f6f0e8;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        position: relative;
        max-width: 400px;
    }

    .timeline-item:nth-child(odd) .timeline-content::before {
        content: '';
        position: absolute;
        left: -15px;
        top: 30px;
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-right: 15px solid #f6f0e8;
    }

    .timeline-item:nth-child(even) .timeline-content::before {
        content: '';
        position: absolute;
        right: -15px;
        top: 30px;
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 15px solid #f6f0e8;
    }

    .timeline-duration {
        font-size: 14px;
        color: #dd7d2f;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .timeline-content h3 {
        font-size: 24px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 15px;
    }

    .timeline-content>p {
        font-size: 16px;
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .timeline-details {
        margin-bottom: 20px;
    }

    .timeline-details ul {
        list-style: none;
        padding: 0;
    }

    .timeline-details li {
        font-size: 14px;
        color: #666;
        margin-bottom: 8px;
        padding-left: 20px;
        position: relative;
    }

    .timeline-details li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #dd7d2f;
        font-weight: bold;
    }

    .timeline-result {
        background-color: white;
        border-radius: 12px;
        padding: 15px;
        font-size: 14px;
        color: #333;
        border-left: 4px solid #dd7d2f;
    }

    /* Why Kastelli Section */
    .why-kastelli {
        padding: 100px 0;
        background-color: #f6f0e8;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .benefit-item {
        background-color: white;
        border-radius: 12px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .benefit-item:hover {
        transform: translateY(-5px);
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #dd7d2f, #e8945a);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: white;
        font-size: 32px;
    }

    .benefit-item h3 {
        font-size: 24px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 15px;
    }

    .benefit-item p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .benefit-stat {
        font-size: 18px;
        font-weight: 700;
        color: #dd7d2f;
        background-color: #f6f0e8;
        padding: 10px 20px;
        border-radius: 12px;
        display: inline-block;
    }

    /* Kastelli System */
    .kastelli-system {
        padding: 100px 0;
        background-color: #ffffff;
    }

    .system-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .system-text h2 {
        font-size: 36px;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .system-intro {
        font-size: 20px;
        color: #666;
        margin-bottom: 40px;
        line-height: 1.6;
    }

    .system-features {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

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

    .feature-icon {
        width: 60px;
        height: 60px;
        background-color: #f6f0e8;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1c224e;
        font-size: 24px;
        flex-shrink: 0;
    }

    .feature-content h4 {
        font-size: 20px;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 8px;
    }

    .feature-content p {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
    }

    .visual-container {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .visual-container img {
        width: 100%;
        height: auto;
        display: block;
    }

    .visual-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .overlay-item {
        position: absolute;
        cursor: pointer;
    }

    .overlay-point {
        width: 20px;
        height: 20px;
        background-color: #dd7d2f;
        border: 3px solid white;
        border-radius: 12px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(221, 125, 47, 0.7);
        }

        70% {
            box-shadow: 0 0 0 10px rgba(221, 125, 47, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(221, 125, 47, 0);
        }
    }

    .overlay-tooltip {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #1c224e;
        color: white;
        padding: 8px 12px;
        border-radius: 12px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .overlay-item:hover .overlay-tooltip {
        opacity: 1;
    }

    /* CTA Section */
    .process-cta {
        padding: 100px 0;
        background: linear-gradient(135deg, #1c224e 0%, #2d3470 100%);
        text-align: center;
    }

    .cta-content h2 {
        font-size: 36px;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .btn {
        padding: 15px 30px;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
    }

    .btn-primary {
        background: linear-gradient(135deg, #dd7d2f, #e8945a);
        color: white;
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, #c66d1f, #d7834a);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(221, 125, 47, 0.3);
    }

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

    .btn-secondary:hover {
        background-color: white;
        color: #1c224e;
    }

    .cta-guarantee {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    .cta-guarantee i {
        color: #dd7d2f;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-stats {
            flex-direction: column;
            gap: 30px;
        }

        .timeline::before {
            left: 30px;
        }

        .timeline-item {
            flex-direction: row !important;
            margin-left: 60px;
        }

        .timeline-marker {
            position: absolute;
            left: -90px;
            margin: 0;
        }

        .timeline-content {
            max-width: none;
        }

        .timeline-content::before {
            left: -15px !important;
            right: auto !important;
            border-right: 15px solid #f6f0e8 !important;
            border-left: none !important;
        }

        .system-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .benefits-grid {
            grid-template-columns: 1fr;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 36px;
        }

        .section-header h2 {
            font-size: 28px;
        }
    }

    .interior-design {

        /* Interior Design Section */
        padding: 100px 0;
        background: white;

        .design-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .design-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1c224e;
            margin-bottom: 20px;
        }

        .design-intro {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .design-features {
            margin-bottom: 40px;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #dd7d2f, #ff9f4a);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .feature-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .feature-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1c224e;
            margin-bottom: 8px;
        }

        .feature-content p {
            color: #666;
            line-height: 1.5;
        }

        .design-cta {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .cta-note {
            color: #666;
            font-size: 0.9rem;
        }
    }

    .faq {
        padding: 100px 0;
        background: #f8f9fa;
    }

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

    .faq-item {
        background: white;
        border-radius: 12px;
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .faq-question {
        padding: 25px 30px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
    }

    .faq-question:hover {
        background: #f8f9fa;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1c224e;
        margin: 0;
    }

    .faq-question i {
        color: #dd7d2f;
        transition: transform 0.3s ease;
    }

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

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

    .faq-item.active .faq-answer {
        padding: 0 30px 25px;
        max-height: 200px;
    }

    .faq-answer p {
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

}

.split {
    display: flex;
    gap: 20px;
}

.split-left,
.split-right {
    flex: 1;
    width: 50%;
}

.split-right {
    padding-top: 2rem;

    img {
        border-radius: 8px;
    }
}

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

    .split-left,
    .split-right {
        width: 100%;
    }
}

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

body.page-template-about {
    /* About Page Styles */

    /* About Hero */
    .about-hero {
        padding: 150px 0 100px;
        background: linear-gradient(135deg, #f6f0e8 0%, #fff 100%);
        text-align: center;
    }

    .about-hero .hero-title {
        font-size: 3rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .about-hero .hero-description {
        font-size: 1.3rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Company Story */
    .company-story {
        padding: 100px 0;
        background: white;
    }

    .story-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .story-text h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 25px;
    }

    .story-intro {
        font-size: 1.2rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .story-highlights {
        display: flex;
        gap: 40px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .highlight {
        text-align: center;
    }

    .highlight h4 {
        font-size: 2rem;
        font-weight: 700;
        color: #dd7d2f;
        margin-bottom: 8px;
    }

    .highlight p {
        color: #666;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .story-text p:last-child {
        color: #666;
        line-height: 1.6;
        font-size: 1rem;
    }

    .story-image {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .story-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    /* Values Section */
    .values-section {
        padding: 100px 0;
    }

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

    .value-card {
        text-align: center;
        padding: 40px 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .value-icon {
        font-size: 3rem;
        margin-bottom: 20px;
        display: block;
    }

    .value-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 15px;
    }

    .value-card p {
        color: #666;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* Team Section */
    .team-section {
        padding: 100px 0;
        background: white;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 60px;
    }

    .team-member {
        background: #f6f0e8;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .team-member:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .member-photo {
        height: 250px;
        overflow: hidden;
    }

    .member-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .team-member:hover .member-photo img {
        transform: scale(1.05);
    }

    .member-info {
        padding: 30px;
    }

    .member-info h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 8px;
    }

    .member-role {
        color: #dd7d2f;
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    .member-description {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .member-contact {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .member-contact span {
        color: #1c224e;
        font-size: 0.85rem;
        font-weight: 500;
    }

    /* Certifications */
    .certifications {
        padding: 100px 0;
    }

    .cert-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 60px;
    }

    .cert-item {
        text-align: center;
        padding: 30px 20px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .cert-item:hover {
        transform: translateY(-5px);
    }

    .cert-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        display: block;
    }

    .cert-item h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1c224e;
        margin-bottom: 10px;
    }

    .cert-item p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* About CTA */
    .about-cta {
        padding: 100px 0;
        background: white;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1c224e;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .cta-button-large {
        padding: 18px 36px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
    }

    .cta-button-large.primary {
        background: #1c224e;
        color: white;
    }

    .cta-button-large.primary:hover {
        background: #dd7d2f;
        transform: translateY(-2px);
    }

    .cta-button-large.secondary {
        background: transparent;
        color: #1c224e;
        border: 2px solid #1c224e;
    }

    .cta-button-large.secondary:hover {
        background: #1c224e;
        color: white;
        transform: translateY(-2px);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .about-hero .hero-title {
            font-size: 2.2rem;
        }

        .about-hero .hero-description {
            font-size: 1.1rem;
        }

        .story-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .story-text h2 {
            font-size: 2rem;
        }

        .story-highlights {
            gap: 20px;
            justify-content: center;
        }

        .highlight h4 {
            font-size: 1.5rem;
        }

        .values-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .team-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .cert-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }

        .cta-button-large {
            width: 100%;
            max-width: 300px;
        }
    }

    @media (max-width: 480px) {
        .cert-grid {
            grid-template-columns: 1fr;
        }

        .story-highlights {
            flex-direction: column;
            gap: 15px;
        }
    }

}