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

/* Global Button Reset - Prevent any unexpected behavior */
button {
    outline: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button:focus {
    outline: none;
}

button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #0084ff;
    --dark-blue: #0066ff;
    --accent-orange: #f1a528;
    --light-gray: #f1f0f0;
    --white: #ffffff;
    --dark-text: #0d1321;
    --light-text: #161e2e;
    --green-accent: #26c281;
    --border-color: #e2e8f0;
    --shadow: 0 7px 15px 1px rgba(55, 62, 70, 0.07);
    --gradient-primary: linear-gradient(135deg, #0084ff 0%, #0066ff 100%);
    --gradient-secondary: linear-gradient(135deg, #f1a528 0%, #f97316 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background-color: var(--white);
    font-weight: 400;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow', sans-serif;
}

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

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 0;
    box-shadow: none;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    position: relative;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 180px; /* Increased by 100% from 90px */
    width: auto;
    object-fit: contain;
}

/* Partners Section */
.partners-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.partners-text {
    font-size: 0.7rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.partner-logos {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.partner-logo {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.partner-logo:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.partner-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    margin: 0;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    align-items: center;
    padding: 1.5rem 2rem;
    margin: 0;
    position: relative;
}



.nav-item {
    position: relative;
}

    .nav-link {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 14px;
    }
    
    @media (max-width: 768px) {
        .partners-section {
            margin-top: 0.3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .partners-text {
            font-size: 0.6rem;
            color: white;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 0;
        }
        
        .partner-logos {
            gap: 0.6rem;
            display: flex;
            align-items: center;
        }
        
        .partner-logo-img {
            height: 55px;
            width: auto;
            object-fit: contain;
        }
        
        /* Показываем логотипы партнёров в мобильной версии */
        .nav-logo .partners-section {
            display: flex;
        }
        
        .nav-link {
            font-size: 18px;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            justify-content: center;
        }
        
        .nav-link:hover {
            color: var(--primary-blue);
            background: rgba(255, 255, 255, 0.05);
        }
        
        .nav-item {
            width: 100%;
            margin: 0.5rem 0;
        }
        
        .nav-item.active .nav-link {
            color: var(--primary-blue);
            background: rgba(0, 132, 255, 0.1);
        }
    }

.nav-link:hover {
    color: #0084ff;
}

.nav-item.active .nav-link {
    color: #0084ff;
}

.nav-item.active .nav-link i {
    color: #0084ff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1001;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin-top: 0;
        border-left: 3px solid var(--primary-blue);
        transition: all 0.3s ease;
    }
    
    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        margin-top: 0.5rem;
    }
    
    .dropdown-menu li a {
        color: #ffffff !important;
        padding: 0.75rem 1rem;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--primary-blue) !important;
    }
    
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    /* Стили для кнопки выпадающего меню */
    .dropdown .nav-link {
        cursor: pointer;
        position: relative;
    }
    
    .dropdown .nav-link::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 1rem;
        transition: transform 0.3s ease;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown.active .nav-link::after {
        transform: rotate(180deg);
    }
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #0084ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        position: fixed;
        right: 1.5rem;
        top: 1.5rem;
        transform: none;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 8px;
        padding: 12px;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://arteedomki.pl/wp-content/uploads/2025/03/configurator-bg-finall.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    will-change: opacity;
    background-repeat: no-repeat;
    transition: opacity 0.6s ease-in-out;
    width: 100%;
    background-clip: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    margin-bottom: 0;
    line-height: 1;
}





.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-top: 120px;
    width: 100%;
}

.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0;
}

.hero-bottom .social-links {
    display: flex;
    gap: 1rem;
}

.hero-bottom .social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.hero-bottom .social-links a:hover {
    color: #0084ff;
}

.hero-description {
    flex: 1;
    max-width: 800px;
    margin: 0 2rem;
    text-align: left;
}

.hero-description p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}



.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}



.cta-button {
    background: #0084ff;
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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



/* Configuration Section */
.configuration {
    padding: 5rem 0;
    background: var(--light-gray);
    text-align: center;
}

.configuration h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0084ff;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.configuration h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.configuration p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* House Models Grid */
.house-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.model-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.model-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.model-image {
    height: 220px;
    background: linear-gradient(135deg, #0084ff 0%, #0066ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.model-placeholder {
    text-align: center;
    color: white;
}

.model-placeholder i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #0084ff;
    opacity: 0.9;
}

.model-info {
    padding: 1.5rem;
}

.model-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.model-info p {
    color: var(--light-text);
    margin-bottom: 1rem;
    text-align: left;
}

.model-link {
    display: inline-block;
    color: #0084ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.model-link:hover {
    color: #0066ff;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0084ff;
    margin-bottom: 2rem;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.read-more {
    background: transparent;
    color: #0084ff;
    border: 2px solid #0084ff;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 2rem auto 0;
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.read-more:hover {
    background: #0084ff;
    color: var(--white);
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--light-gray);
}

.why-choose h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0084ff;
    margin-bottom: 3rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

.feature-card i {
    font-size: 3.5rem;
    color: #0084ff;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Process Section Styles */

.process {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.process::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="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.process h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 20px 20px 0 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(0, 132, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    position: relative;
}

.step h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
}

.step p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Добавляем соединительные линии между шагами */
.process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    z-index: -1;
}

/* Анимации для появления элементов */
.step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.3s;
}

.step:nth-child(3) {
    animation-delay: 0.5s;
}

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

/* Responsive Design for Process Section */
@media (max-width: 768px) {
    .process {
        padding: 3rem 0;
    }
    
    .process h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .step {
        padding: 2rem 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .process h2 {
        font-size: 1.8rem;
    }
    
    .step {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
}

/* Дополнительные эффекты для интерактивности */
.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 132, 255, 0.4);
}

.step:hover .step-number::after {
    animation: pulse 1s infinite;
}

/* Градиентный фон для секции */
.process {
    background: linear-gradient(135deg, 
        #f8f9fa 0%, 
        #e9ecef 25%, 
        #f8f9fa 50%, 
        #e9ecef 75%, 
        #f8f9fa 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



/* Company Section */
.company {
    padding: 5rem 0;
    background: white;
}

.company h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0084ff;
    margin-bottom: 1rem;
    text-align: center;
}

.company h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 2rem;
    text-align: center;
}

.company p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #0084ff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6c757d;
    font-weight: 500;
    margin: 0;
}





/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0084ff;
    margin-bottom: 1rem;
    text-align: center;
}

.contact h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    text-align: center;
}

.contact > .container > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #0084ff;
    width: 40px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6c757d;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-group.checkbox input {
    margin-top: 0.25rem;
}

.form-group.checkbox span {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

.submit-button {
    background: linear-gradient(135deg, #0084ff 0%, #0066ff 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(199, 166, 110, 0.3);
}

.submit-button:hover {
    background: #0066ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(199, 166, 110, 0.4);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-image {
    height: 160px; /* Increased by 100% from 80px */
    width: auto;
    object-fit: contain;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #0084ff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-section p {
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-section p strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-section p i {
    color: #0084ff;
    margin-right: 0.5rem;
    width: 16px;
}

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

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

.footer-section ul li a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0084ff;
    border-color: #0084ff;
    transform: translateY(-2px);
}

.social-links a i {
    font-size: 1.1rem;
}

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

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom p strong {
    color: #0084ff;
}
/* Footer Openingstijden tekst */
.opening-indent {
    display: inline-block;
    margin-left: 29px; /* afstemmen op icoonbreedte */
  }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .logo-image {
        height: 80px; /* Оптимизировано для мобильных устройств */
        width: auto;
        object-fit: contain;
    }
    
    .nav-container {
        padding: 0;
        justify-content: flex-start;
        position: relative;
    }
    
    .nav-logo {
        margin-left: 0;
        padding: 0.8rem 1rem;
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Стили для логотипов партнёров в мобильной версии */
    .nav-logo .partners-section {
        margin-top: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
    
    .nav-logo .partners-text {
        font-size: 0.5rem;
        color: white;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        margin: 0;
    }
    
    .nav-logo .partner-logos {
        display: flex;
        gap: 0.4rem;
        align-items: center;
    }
    
    .nav-logo .partner-logo-img {
        height: 30px;
        width: auto;
        object-fit: contain;
    }
    
    .hamburger {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1000;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s ease-in-out;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
        padding: 100px 1.5rem 2rem;
        z-index: 999;
        overflow-y: auto;
        display: flex;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    .hero {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 100vh;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        padding-top: 80px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-description {
        margin: 0;
        order: 2;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-description p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }

    .hero-bottom .social-links {
        order: 1;
    }
    
    /* Мобильные стили для CTA кнопки */
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 200px;
    }


    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .process-steps,
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Дополнительные мобильные стили */
    .house-models {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .whatsapp-float {
        right: 10px;
        bottom: 10px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    /* Оптимизация форм для мобильных устройств */
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px;
        font-size: 16px; /* Предотвращает зум на iOS */
    }
    
    /* Оптимизация кнопок для мобильных устройств */
    .contact-form button,
    .form-submit {
        padding: 12px 24px;
        font-size: 16px;
        min-height: 44px; /* Минимальная высота для касания */
    }
    
    /* Оптимизация контактной формы для мобильных устройств */
    .contact-form-section {
        padding: 2rem 0 !important;
        margin-top: 2rem !important;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    
    .contact-form {
        padding: 1.5rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Оптимизация контактной информации для мобильных устройств */
    .contact-info h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .contact-info p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .contact-details {
        gap: 0.8rem !important;
    }
    
    .contact-item {
        padding: 1rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.8rem !important;
    }
    
    .contact-text {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.3rem !important;
    }
    
    .contact-label {
        min-width: auto !important;
        font-size: 0.7rem !important;
    }
    
    .contact-value {
        font-size: 0.9rem !important;
    }
    
    /* Дополнительные стили для очень маленьких экранов */
    .contact-form-section {
        padding: 1.5rem 0 !important;
    }
    
    .contact-form-wrapper {
        padding: 0 0.5rem !important;
    }
    
    .contact-form {
        padding: 1rem !important;
    }
    
    .contact-info h2 {
        font-size: 1.8rem !important;
    }
    
    .contact-info h3 {
        font-size: 0.7rem !important;
    }
    
    .contact-item {
        padding: 0.8rem !important;
    }
    
    .contact-icon {
        width: 30px !important;
        height: 30px !important;
    }
    
    .contact-icon i {
        font-size: 0.8rem !important;
    }
    
    /* Оптимизация чекбоксов и радио-кнопок для мобильных устройств */
    .radio-group,
    .checkbox-group {
        gap: 0.8rem !important;
    }
    
    .radio-option,
    .checkbox-option {
        padding: 0.5rem 0 !important;
        font-size: 0.9rem !important;
    }
    
    .radio-custom,
    .checkbox-custom {
        width: 18px !important;
        height: 18px !important;
        flex-shrink: 0 !important;
    }
    
    .consent-checkbox {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
        padding: 0.5rem 0 !important;
    }
    
    /* Улучшение кнопки отправки */
    .submit-btn {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 0.9rem !important;
        min-height: 50px !important;
    }
    
    /* Улучшение текстовых полей для мобильных устройств */
    .form-group input,
    .form-group textarea {
        padding: 12px !important;
        font-size: 16px !important;
        border-radius: 8px !important;
        border: 1px solid #ddd !important;
        background: white !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none !important;
        border-color: #0084ff !important;
        box-shadow: 0 0 0 2px rgba(0, 132, 255, 0.1) !important;
    }
    
    .form-group label {
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        color: #333 !important;
        margin-bottom: 0.3rem !important;
    }
    
    /* Улучшение отступов между группами полей */
    .form-group {
        margin-bottom: 1rem !important;
    }
    
    .whatsapp-tooltip {
        right: 65px;
        font-size: 13px;
        padding: 6px 10px;
    }
    
    /* Оптимизация галереи для мобильных устройств */
    .house-gallery {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-image {
        height: 250px;
    }
    
    .thumbnail-images {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0.5rem 0;
    }
    
    .thumbnail {
        min-width: 80px;
        height: 60px;
        flex-shrink: 0;
    }
    
    /* Оптимизация таблиц для мобильных устройств */
    .specs-table {
        font-size: 0.9rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 8px 6px;
    }
    
    /* Оптимизация спецификаций для мобильных устройств */
    .house-specs {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .spec-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Оптимизация цен для мобильных устройств */
    .product-price {
        font-size: 1.5rem;
        margin: 1rem 0;
    }
    
    /* Дополнительные оптимизации для мобильных устройств */
    .container {
        padding: 0 1rem;
    }
    
    /* Улучшение читаемости текста */
    p {
        line-height: 1.6;
    }
    
    /* Оптимизация заголовков */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }
    
    /* Улучшение навигации по касанию */
    a, button {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Оптимизация скролла */
    html {
        scroll-behavior: smooth;
    }
    
    /* Улучшение производительности */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Оптимизация для устройств с высоким DPI */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .logo-image,
        .partner-logo-img {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
        }
    }
    
    /* Улучшение доступности */
    .nav-link:focus,
    .cta-button:focus,
    a:focus {
        outline: 2px solid #0084ff;
        outline-offset: 2px;
    }
    
    /* Оптимизация для устройств с поддержкой hover */
    @media (hover: hover) {
        .nav-link:hover,
        .cta-button:hover {
            transform: translateY(-1px);
        }
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
        line-height: 1.1;
    }
    
    .logo-image {
        height: 70px; /* Оптимизировано для очень маленьких экранов */
        width: auto;
        object-fit: contain;
    }
    
    .nav-container {
        padding: 0;
        justify-content: flex-start;
        position: relative;
    }
    
    .nav-logo {
        margin-left: 0;
        padding: 0.8rem 1rem;
        text-decoration: none;
        color: inherit;
    }
    
    .hamburger {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .hero {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: 100vh;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .configuration h2,
    .about h2,
    .why-choose h2,
    .process h2,
    .company h2,
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    /* Оптимизация отступов для мобильных устройств */
    .configuration,
    .about,
    .why-choose,
    .process,
    .company,
    .contact {
        padding: 3rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Оптимизация карточек для мобильных устройств */
    .model-item,
    .product-card,
    .mission-card,
    .vision-card,
    .values-card {
        margin-bottom: 1.5rem;
    }
    
    .whatsapp-float {
        right: 5px;
        bottom: 5px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    /* Оптимизация изображений для мобильных устройств */
    .model-image {
        height: 180px;
    }
    
    .product-image {
        height: 200px;
    }
    
    /* Оптимизация текста для мобильных устройств */
    .model-item h3,
    .product-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .model-item p,
    .product-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .whatsapp-button i {
        font-size: 22px;
    }
    
    .whatsapp-tooltip {
        right: 60px;
        font-size: 12px;
        padding: 5px 8px;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loading-spinner {
    margin: 2rem 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}



/* Product Showcase */
.product-showcase {
    padding: 5rem 0;
    background: #f8fafc;
}

.product-showcase h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.product-showcase h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #0084ff;
    margin-bottom: 1rem;
}

.product-showcase > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

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

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

.product-placeholder {
    text-align: center;
    color: #4a5568;
    position: relative;
}

.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: #0084ff;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.spec i {
    color: #0084ff;
}

.product-price {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0084ff;
    display: block;
}

.price-note {
    font-size: 0.9rem;
    color: #718096;
}

.product-cta {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #0084ff 0%, #0066ff 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(199, 166, 110, 0.3);
}

.product-cta:hover {
    background: #0066ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 166, 110, 0.4);
}

/* Technology Section */
.technology {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.technology h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.technology h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0084ff;
    margin-bottom: 2rem;
}

.technology p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.technology .cta-button {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.technology .cta-button:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Gallery */
.gallery {
    padding: 5rem 0;
    background: var(--light-gray);
}

.gallery h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.gallery h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #0084ff;
    margin-bottom: 1rem;
}

.gallery > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

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

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

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

/* Fullscreen Modal Styles */
.fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.fullscreen-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-fullscreen {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-fullscreen:hover {
    color: #ff4444;
}

/* OUDE fullscreen-nav definitie VERWIJDERD - zie nieuwe definitie verderop */
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    font-size: 20px;
    cursor: pointer;
/* OUDE .nav-btn, .prev-btn, .next-btn definities VERWIJDERD - zie nieuwe definities verderop */

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    text-align: center;
    padding: 1rem;
}

.gallery-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0084ff;
}

.gallery-placeholder p {
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    

}

@media (max-width: 480px) {
    .product-card {
        margin: 0 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://arteedomki.pl/wp-content/uploads/2025/03/configurator-bg-finall.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

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

/* Houses Page Styles */
.houses-overview {
    padding: 80px 0;
    background: var(--light-gray);
}

.houses-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.houses-overview > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.houses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.house-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.house-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.house-placeholder {
    text-align: center;
    color: #4a5568;
}

.house-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0084ff;
}

.house-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #0084ff;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.house-info {
    padding: 2rem;
}

.house-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.house-info > p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.house-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.house-specs .spec {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.house-specs .spec i {
    color: #0084ff;
}

.house-price {
    margin-bottom: 1.5rem;
}

.house-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0084ff;
}

.house-price .price-note {
    font-size: 0.9rem;
    color: #4a5568;
    margin-left: 0.5rem;
}

.house-cta {
    display: inline-block;
    background: #0084ff;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.house-cta:hover {
    background: #0066ff;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.benefit-card i {
    font-size: 3rem;
    color: #0084ff;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Configurator Styles */
.house-configurator {
    padding: 80px 0;
    background: var(--light-gray);
}

.configurator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.configurator-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.configurator-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.config-step {
    display: none;
    margin-bottom: 2rem;
}

.config-step.active {
    display: block;
}

.config-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.model-options,
.finishing-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.model-option,
.finishing-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.model-option:hover,
.finishing-option:hover,
.model-option.selected,
.finishing-option.selected {
    border-color: var(--primary-blue);
    background: rgba(0, 132, 255, 0.05);
}

.model-preview {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.model-details h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.model-details p {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.model-details .price {
    font-weight: 700;
    color: #0084ff;
}

.extras-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.extra-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
}

.extra-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #0084ff;
}

.extra-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.extra-name {
    font-weight: 500;
    color: var(--dark-text);
}

.extra-price {
    font-weight: 700;
    color: #0084ff;
}

.config-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.config-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.config-btn.prev {
    background: var(--light-gray);
    color: var(--dark-text);
}

.config-btn.next {
    background: #0084ff;
    color: white;
}

.config-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.config-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.configurator-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.house-preview {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-placeholder {
    text-align: center;
    color: #4a5568;
}

.preview-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #0084ff;
}

.house-summary {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.house-summary h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-blue);
}

.summary-item .label {
    color: #4a5568;
}

.summary-item .value {
    color: var(--dark-text);
    font-weight: 500;
}

/* Projects Page Styles */
.project-categories {
    padding: 40px 0;
    background: white;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #0084ff;
    background: transparent;
    color: #0084ff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0084ff;
    color: white;
}

.projects-grid {
    padding: 80px 0;
    background: var(--light-gray);
}

.projects-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.project-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder {
    text-align: center;
    color: #4a5568;
}

.project-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0084ff;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.view-project {
    background: #0084ff;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.view-project:hover {
    background: #0066ff;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.project-location {
    color: #0084ff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-specs .spec {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tags .tag {
    background: #0084ff;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Project Statistics */
.project-stats {
    padding: 80px 0;
    background: white;
}

.project-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0084ff;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #4a5568;
    line-height: 1.6;
}



/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: #0084ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--dark-text);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #4a5568;
}

/* OLD CONTACT STYLES - REMOVED */

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #0084ff;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.quick-contact-btn:hover {
    background: #0066ff;
}

.quick-contact-btn.whatsapp {
    background: #25d366;
}

.quick-contact-btn.whatsapp:hover {
    background: #128c7e;
}

.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.hours-item .day {
    color: var(--dark-text);
    font-weight: 500;
}

.hours-item .time {
    color: #4a5568;
}

.address-info p {
    color: var(--dark-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0084ff;
    text-decoration: none;
    font-weight: 600;
}

.map-link:hover {
    text-decoration: underline;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-align: center;
}

.map-info p {
    color: var(--light-text);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info p i {
    color: var(--primary-blue);
    width: 16px;
    text-align: center;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.map-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.4);
    color: white;
    text-decoration: none;
}

.map-button i {
    font-size: 0.8rem;
}

/* Responsive Design for Map */
@media (max-width: 768px) {
    .map-section {
        padding: 3rem 0;
    }
    
    .map-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
        max-width: none;
        border-radius: 15px;
    }
    
    .map-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .map-section h2 {
        font-size: 1.8rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-overlay {
        padding: 1rem;
        margin: 1rem;
    }
    
    .map-info h3 {
        font-size: 1.2rem;
    }
    
    .map-info p {
        font-size: 0.9rem;
    }
    
    .map-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0084ff 0%, #0066ff 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #0084ff;
    color: #0084ff;
    font-weight: 600;
}

.cta-button.secondary:hover {
    background: #0084ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .houses-grid,
    .projects-wrapper {
        grid-template-columns: 1fr;
    }
    
    .configurator-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .category-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    

    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .houses-overview h2,
    .project-stats h2,
    .contact-faq h2,
    .map-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .house-card,
    .project-card {
        margin: 0 1rem;
    }
    
    .configurator-sidebar,
    .contact-form-wrapper,
    .sidebar-card {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.company-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    text-align: center;
}

.image-placeholder {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 4rem 2rem;
    color: #4a5568;
}

.story-image .image-placeholder {
    padding: 2rem 2rem;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.story-image .image-placeholder img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.image-placeholder i {
    font-size: 4rem;
    color: #0084ff;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.1rem;
    margin: 0;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card,
.vision-card,
.values-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #0084ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p,
.values-card p {
    color: #4a5568;
    line-height: 1.6;
}




/* Company Stats */
.company-stats {
    padding: 80px 0;
    background: var(--light-gray);
}

.company-stats h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

/* Certifications */
.certifications {
    padding: 80px 0;
    background: white;
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.certifications > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.cert-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.cert-icon {
    width: 80px;
    height: 80px;
    background: #0084ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.cert-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.cert-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Timeline */
.company-timeline {
    padding: 80px 0;
    background: var(--light-gray);
}

.company-timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: #0084ff;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-date::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #0084ff;
}

.timeline-item:nth-child(odd) .timeline-date::after {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-date::after {
    left: -20px;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    

    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-date {
        margin-right: 2rem;
    }
    
    .timeline-date::after {
        right: -20px !important;
        left: auto !important;
    }
    
    .timeline-content {
        margin: 0;
        margin-left: 2rem;
    }
}

@media (max-width: 480px) {
    .story-text h2,

    .certifications h2,
    .company-timeline h2 {
        font-size: 2rem;
    }
    
    .mission-card,
    .vision-card,
    .values-card,
    .cert-card {
        padding: 1.5rem;
    }
    

    
    .timeline-content {
        padding: 1.5rem;
    }
}

/* FAQ Page Styles */
.faq-categories {
    padding: 40px 0;
    background: white;
}

.faq-content {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 132, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.faq-question i {
    color: #0084ff;
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 2rem 2rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-question {
    background: rgba(0, 132, 255, 0.05);
}

/* FAQ Contact Section */
.faq-contact {
    padding: 80px 0;
    background: white;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.faq-contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-option {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.contact-option i {
    font-size: 2.5rem;
    color: #0084ff;
    margin-bottom: 1rem;
}

.contact-option h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.contact-option p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-block;
    background: #0084ff;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #0066ff;
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .faq-contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
    }
    
    .contact-option {
        padding: 1.5rem;
    }
}

/* Footer Mobile Responsive Styles */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-logo .logo-image {
        height: 130px; /* Increased by 100% from 65px */
        width: auto;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .footer-logo h3 {
        font-size: 1.3rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .social-links a i {
        font-size: 1rem;
    }
    
    .footer-logo .logo-image {
        height: 110px; /* Increased by 100% from 55px */
        width: auto;
        object-fit: contain;
    }
}

/* Additional Page Styles */

/* Order Process Page */
.order-process {
    padding: 5rem 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    margin: 1rem 0 1.5rem;
}

.step-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.step-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-btn {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.step-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

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

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

/* Financing Page */
.financing-options {
    padding: 5rem 0;
    background: white;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.option-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

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

.option-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.option-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.option-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
}

.option-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-align: center;
}

.option-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.option-features {
    list-style: none;
    margin-bottom: 2rem;
}

.option-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.option-features li i {
    color: var(--green-accent);
    font-size: 0.9rem;
}

.option-btn {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.option-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Technology Page */
.technology-overview {
    padding: 5rem 0;
    background: var(--light-gray);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.tech-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tech-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.benefit-item span {
    font-weight: 500;
    color: var(--dark-text);
}

.tech-image {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.building-process {
    padding: 5rem 0;
    background: white;
}

.building-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

.building-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.building-process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

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

.building-process-step .step-number {
    position: static;
    transform: none;
    margin-bottom: 1rem;
    display: inline-block;
}

.building-process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.building-process-step p {
    color: var(--light-text);
    line-height: 1.6;
}

/* More Options Page */
.additional-services {
    padding: 5rem 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: bold;
}

.service-btn {
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Responsive Design for Additional Pages */
@media (max-width: 768px) {
    .tech-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-benefits {
        grid-template-columns: 1fr;
    }
    
    .building-process-steps {
        grid-template-columns: 1fr;
    }
    
    .options-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card,
    .option-card,
    .service-card {
        padding: 2rem;
        padding-top: 3rem;
    }
    
    .process-steps,
    .steps-grid {
        margin-top: 4rem;
    }
    
    .how-it-works h2 {
        margin-bottom: 2rem;
    }
    
    .tech-text h2,
    .building-process h2 {
        font-size: 2rem;
    }
    
    .image-placeholder {
        height: 200px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .step-card,
    .option-card,
    .service-card {
        padding: 1.5rem;
        padding-top: 2.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -10px;
    }
    
    .process-steps,
    .steps-grid {
        margin-top: 4.5rem;
    }
    
    .how-it-works h2 {
        margin-bottom: 2.5rem;
    }
    
    .tech-text h2,
    .building-process h2 {
        font-size: 1.8rem;
    }
    
    .step-icon i,
    .option-icon i,
    .service-icon i {
        font-size: 2.5rem;
    }
    
    .image-placeholder {
        height: 150px;
        font-size: 2.5rem;
    }
}

/* Technology Page Additional Styles */

/* Materials Section */
.materials-section {
    padding: 5rem 0;
    background: white;
}

.materials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.material-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.material-icon {
    margin-bottom: 1.5rem;
}

.material-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
}

.material-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.material-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.material-features {
    list-style: none;
    text-align: left;
}

.material-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.material-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: bold;
}

/* Quality Standards */
.quality-standards {
    padding: 5rem 0;
    background: var(--light-gray);
}

.quality-standards h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

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

.standard-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.standard-icon {
    margin-bottom: 1rem;
}

.standard-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.standard-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.standard-card p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Innovation Section */
.innovation-section {
    padding: 5rem 0;
    background: white;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.innovation-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.innovation-text p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.innovation-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

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

.innovation-image {
    text-align: center;
}

/* Technical Specifications */
.tech-specs {
    padding: 5rem 0;
    background: var(--light-gray);
}

.tech-specs h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

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

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.spec-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-blue);
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 0.5rem 0;
    color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
}

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

.spec-list li strong {
    color: var(--dark-text);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: white;
    color: var(--primary-blue);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #0084ff;
    border: 2px solid #0084ff;
    font-weight: 600;
}

.cta-button.secondary:hover {
    background: #0084ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

/* Responsive Design for Technology Page */
@media (max-width: 768px) {
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .materials-grid,
    .standards-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .material-card,
    .standard-card,
    .spec-category {
        padding: 1.5rem;
    }
    
    .materials-section h2,
    .quality-standards h2,
    .tech-specs h2,
    .innovation-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .material-card,
    .standard-card,
    .spec-category {
        padding: 1rem;
    }
    
    .materials-section h2,
    .quality-standards h2,
    .tech-specs h2,
    .innovation-text h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .material-icon i,
    .standard-icon i {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        margin: 0 auto 0.5rem;
    }
}

/* Financing Page Additional Styles */

/* Payment Calculator */
.payment-calculator {
    padding: 5rem 0;
    background: var(--light-gray);
}

.payment-calculator h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.calculator-form .form-group {
    margin-bottom: 1.5rem;
}

.calculator-form label {
    display: block;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.calculator-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.calculator-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.calculator-results {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.calculator-results h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.result-label {
    font-weight: 500;
}

.result-value {
    font-weight: 700;
    font-size: 1.2rem;
}

/* Payment Plans */
.payment-plans {
    padding: 5rem 0;
    background: white;
}

.payment-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

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

.plan-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

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

.plan-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.plan-structure {
    margin-bottom: 1.5rem;
}

.payment-phase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.payment-phase:last-child {
    margin-bottom: 0;
}

.phase-percentage {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

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

.plan-card p {
    color: var(--light-text);
    line-height: 1.6;
    text-align: center;
}

/* Financing Requirements */
.financing-requirements {
    padding: 5rem 0;
    background: var(--light-gray);
}

.financing-requirements h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

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

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.requirement-icon {
    margin-bottom: 1rem;
}

.requirement-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.requirement-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.requirement-card p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Financing FAQ */
.financing-faq {
    padding: 5rem 0;
    background: white;
}

.financing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

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

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e8e8e8;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Financing Page */
@media (max-width: 768px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plans-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card,
    .requirement-card {
        padding: 1.5rem;
    }
    
    .payment-calculator h2,
    .payment-plans h2,
    .financing-requirements h2,
    .financing-faq h2 {
        font-size: 2rem;
    }
    
    .calculator-form,
    .calculator-results {
        padding: 2rem;
    }
    
    .plan-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .plan-card,
    .requirement-card {
        padding: 1rem;
    }
    
    .payment-calculator h2,
    .payment-plans h2,
    .financing-requirements h2,
    .financing-faq h2 {
        font-size: 1.8rem;
    }
    
    .calculator-form,
    .calculator-results {
        padding: 1.5rem;
    }
    
    .payment-phase {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
}

/* House Detail Pages Styles */

/* House Overview */
.house-overview {
    padding: 5rem 0;
    background: white;
}

.house-content {
    display: grid;
    grid-template-columns: 48% 1fr;
    gap: 3rem;
    align-items: start;
}

/* ============================================
   HOUSE GALLERY - INSTANT SWITCHING SYSTEM
   Version 2.0 - Completely Rewritten
   ============================================ */

.house-gallery {
    position: relative;
    max-width: 100%;
    width: 100%;
}

/* Main image area - FIXED height, no shifts */
.hg-stage {
    position: relative;
    width: 100%;
    height: 420px;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #f5f5f5;
}

/* Stacked images container - all images overlap */
.hg-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

/* Individual stacked images - INSTANT switching via opacity */
.hg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    /* NO TRANSITIONS - instant switching */
    /* Force browser to render/decode ALL images immediately */
    will-change: opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hg-img.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

/* Navigation Arrows - ULTRA STABLE, NEVER DISAPPEAR */
.hg-arrow {
    position: absolute !important;
    top: 50% !important;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    border: none !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    z-index: 200 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

.hg-arrow:hover,
.hg-arrow:focus,
.hg-arrow:active {
    background: rgba(0, 0, 0, 0.85) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    outline: none !important;
}

.hg-prev {
    left: 15px !important;
}

.hg-next {
    right: 15px !important;
}

/* Gallery Counter */
.gallery-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
}

.gallery-counter .current-image {
    font-weight: 700;
    color: #0084ff;
}

/* Thumbnails */
.hg-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hg-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
    flex-shrink: 0;
}

.hg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hg-thumb.is-active {
    border-color: var(--primary-blue);
}

.hg-thumb:hover {
    border-color: var(--accent-orange);
}

/* Fullscreen Button */
.fullscreen-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: none;
    z-index: 10;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transform: none;
    padding: 0;
    margin: 0;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: none;
}

.fullscreen-btn:active {
    background: rgba(0, 0, 0, 0.8);
    transform: none;
}

.fullscreen-btn:focus {
    outline: none;
    transform: none;
}

.fullscreen-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
    transform: none;
}

.fullscreen-btn i {
    color: white;
    font-size: 16px;
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.fullscreen-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-fullscreen {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transform: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.close-fullscreen:hover {
    color: #ff6b35;
    transform: none;
}

.close-fullscreen:active {
    color: #ff4444;
    transform: none;
}

.close-fullscreen:focus {
    outline: none;
    transform: none;
}

.close-fullscreen:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
    transform: none;
}

.fullscreen-nav {
    position: absolute !important;
    bottom: 30px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    gap: 20px !important;
    z-index: 10000 !important;
    pointer-events: none !important;
    transform: none !important;
    justify-content: center !important;
    align-items: center !important;
}

.fullscreen-nav .nav-btn {
    pointer-events: auto !important;
}

.nav-btn {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    transform: none !important;
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    animation: none !important;
}

.nav-btn:hover,
.nav-btn:focus,
.nav-btn:active {
    background: rgba(255, 255, 255, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: none !important;
    outline: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Fullscreen Modal */
@media (max-width: 768px) {
    .fullscreen-btn {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
    
    .fullscreen-btn i {
        font-size: 14px;
    }
    
    .close-fullscreen {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
    
    .fullscreen-nav {
        bottom: 20px;
        gap: 15px;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-width: 1px;
    }
    
    .fullscreen-nav {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-width: 1px;
    }
    
    .fullscreen-nav {
        padding: 0 10px;
    }
}

.thumbnail-images {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.thumbnail {
    flex: 0 1 calc(20% - 0.6rem);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    min-width: 60px;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.thumbnail img {
    width: 100%;
    height: 65px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

.thumbnail .image-placeholder {
    width: 100%;
    height: 65px;
    background: linear-gradient(135deg, var(--light-gray), #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* Mobile responsiveness for NEW house-gallery */
@media (max-width: 768px) {
    .hg-stage {
        height: 300px;
    }
    
    .hg-arrow {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        font-size: 18px;
    }
    
    .hg-prev {
        left: 10px;
    }
    
    .hg-next {
        right: 10px;
    }
    
    .gallery-counter {
        bottom: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .hg-stage {
        height: 300px;
    }
    
    .hg-arrow {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        font-size: 18px;
    }
    
    .hg-prev {
        left: 10px;
    }
    
    .hg-next {
        right: 10px;
    }
    
    .hg-thumbs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .hg-thumb {
        min-width: 70px;
        height: 55px;
    }
}


.house-info {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.house-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.house-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
}

.house-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.house-info p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.house-specs {
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.spec-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 20px;
}

.spec-item span {
    color: var(--dark-text);
    font-weight: 500;
}

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

.house-actions .cta-button {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

/* Floor Plan */
.floor-plan {
    padding: 5rem 0;
    background: var(--light-gray);
}

.floor-plan h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

.plan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.plan-image {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.plan-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-gray), #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-blue);
    border-radius: 10px;
}

.plan-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.plan-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.plan-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.room-list {
    margin-bottom: 2rem;
}

.room-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.room-name {
    font-weight: 600;
    color: var(--dark-text);
}

.room-size {
    color: var(--primary-blue);
    font-weight: 700;
}

.plan-features h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

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

.plan-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* House Specifications */
.house-specifications {
    padding: 5rem 0;
    background: white;
}

.house-specifications h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

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

.spec-category {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.spec-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--light-text);
}

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

.spec-list strong {
    color: var(--dark-text);
    font-weight: 600;
}

/* Contact Form Section - NEW STYLES */
.contact-form-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin-top: 4rem;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Contact Information */
.contact-info h3 {
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-info h2 {
    color: var(--dark-text);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-info p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 80px;
    height: 100%;
    width: calc(50% - 0.5rem);
    box-sizing: border-box;
    flex-shrink: 0;
}

.contact-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 80px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.contact-value {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

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

.contact-icon i {
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    justify-content: center;
}

.contact-label {
    color: var(--light-text);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--dark-text);
    font-size: 1rem;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(0, 132, 255, 0.1);
}

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

/* Radio and Checkbox Groups */
.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--dark-text);
    padding: 0.3rem 0;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    display: none;
}

.radio-custom,
.checkbox-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-custom {
    border-radius: 3px;
}

.radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
}

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

.consent-checkbox {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--light-text);
    padding: 0.8rem 0;
}

/* Submit Button */
.submit-btn {
    background: var(--dark-text);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: inherit;
}

.submit-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
}

/* Customization Options */
.customization-options {
    padding: 5rem 0;
    background: var(--light-gray);
}

.customization-options h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.customization-options p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.option-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.option-category h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.option-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

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

.option-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    background: var(--light-gray);
    border-radius: 12px;
    color: var(--dark-text);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.option-list li:hover {
    background: #f8f9fa;
    border-left-color: var(--primary-blue);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 132, 255, 0.1);
}

.option-list li::before {
    content: '✓';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-list li:hover::before {
    opacity: 1;
}

/* Similar Houses */
.similar-houses {
    padding: 5rem 0;
    background: white;
}

.similar-houses h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

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

.house-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

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

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

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

.house-card .house-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray), #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-blue);
}

.house-card .house-info {
    padding: 1.5rem;
    background: white;
}

.house-card .house-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.house-card .house-info p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.house-card .house-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.house-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.house-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Responsive Design for House Pages */
@media (max-width: 768px) {
    .house-overview {
        padding: 3rem 0;
    }
    
    .house-content,
    .plan-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Make house-content full-width to allow gallery to break out */
    .house-overview .container {
        padding: 0 !important;
    }
    
    .house-content {
        padding: 0 1rem !important;
    }
    
    /* Gallery full-width on mobile - break out of house-content padding */
    .house-gallery {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: -1rem !important;
        margin-right: -1rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .hg-stage {
        height: 180px;
        margin-bottom: 0.6rem;
        border-radius: 12px;
    }
    
    .hg-arrow {
        width: 40px !important;
        height: 40px !important;
        margin-top: -20px !important;
        font-size: 16px !important;
    }
    
    .hg-prev {
        left: 8px !important;
    }
    
    .hg-next {
        right: 8px !important;
    }
    
    .hg-thumbs {
        gap: 0.4rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    
    .hg-thumb {
        min-width: 65px;
        width: 65px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .gallery-counter {
        bottom: 8px !important;
        padding: 5px 10px !important;
        font-size: 11px !important;
    }
    
    .fullscreen-btn {
        width: 32px !important;
        height: 32px !important;
        top: 8px !important;
        right: 8px !important;
    }
    
    .fullscreen-btn i {
        font-size: 13px !important;
    }
    
    .house-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .house-header h2 {
        font-size: 1.75rem;
    }
    
    .house-info {
        padding: 1.5rem;
    }
    
    .house-actions {
        flex-direction: column;
    }
    
    .house-actions .cta-button {
        width: 100%;
    }
    
    .specs-grid,
    .options-grid,
    .houses-grid {
        grid-template-columns: 1fr;
    }
    
    .floor-plan,
    .house-specifications,
    .customization-options,
    .similar-houses {
        padding: 3rem 0;
    }
    
    .house-overview h2,
    .floor-plan h2,
    .house-specifications h2,
    .customization-options h2,
    .similar-houses h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .house-overview {
        padding: 1.5rem 0;
    }
    
    /* Make house-content full-width to allow gallery to break out */
    .house-overview .container {
        padding: 0 !important;
    }
    
    .house-content {
        padding: 0 1rem !important;
    }
    
    /* Gallery full-width on small mobile - break out of house-content padding */
    .house-gallery {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: -1rem !important;
        margin-right: -1rem !important;
        padding: 0 1rem !important;
    }
    
    .hg-stage {
        height: 160px;
        border-radius: 10px;
    }
    
    .hg-arrow {
        width: 35px !important;
        height: 35px !important;
        margin-top: -17.5px !important;
        font-size: 14px !important;
    }
    
    .hg-prev {
        left: 5px !important;
    }
    
    .hg-next {
        right: 5px !important;
    }
    
    .hg-thumbs {
        gap: 0.3rem;
    }
    
    .hg-thumb {
        min-width: 55px;
        width: 55px;
        height: 45px;
    }
    
    .house-header h2 {
        font-size: 1.5rem;
    }
    
    .house-info,
    .plan-details,
    .spec-category,
    .option-category {
        padding: 1.25rem;
    }
    
    .house-header h2 {
        font-size: 1.5rem;
    }
    
    .house-price {
        font-size: 1.5rem;
    }
    
    .main-image .image-placeholder,
    .plan-image .image-placeholder {
        height: 250px;
    }
    
    .thumbnail .image-placeholder {
        height: 60px;
    }
    
    .room-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .option-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Technology Page Styles */

/* Building Process Section */
.building-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.building-process::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="tech-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tech-pattern)"/></svg>');
    pointer-events: none;
}

.building-process .container {
    position: relative;
    z-index: 2;
}

.building-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.building-process h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.building-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.building-process-step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding-left: 4rem;
}

.building-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.building-process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 20px 20px 0 0;
}

.building-process-step .step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
}

.building-process-step .step-number::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(0, 132, 255, 0.2);
    border-radius: 50%;
    animation: techPulse 2s infinite;
}

@keyframes techPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.building-process-step .step-content {
    /* Content flows normally */
}

.building-process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
}

.building-process-step h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
}

.building-process-step p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Materials Section */
.materials-section {
    padding: 5rem 0;
    background: white;
}

.materials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.materials-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.material-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
}

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

.material-card .material-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
}

.material-card .material-icon i {
    font-size: 2rem;
    color: white;
}

.material-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.material-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.material-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.material-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.material-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1rem;
}

/* Quality Standards Section */
.quality-standards {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
}

.quality-standards h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.quality-standards h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.standard-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.standard-card .standard-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
}

.standard-card .standard-icon i {
    font-size: 1.8rem;
    color: white;
}

.standard-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

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

/* Innovation Section */
.innovation-section {
    padding: 5rem 0;
    background: white;
}

.innovation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.innovation-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.innovation-text {
    padding-right: 2rem;
}

.innovation-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.innovation-text p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.innovation-features li {
    padding: 0.8rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.innovation-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.innovation-image {
    background: linear-gradient(135deg, var(--light-gray), #e8e8e8);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.innovation-image i {
    font-size: 4rem;
    color: var(--primary-blue);
}

/* Tech Specs Section */
.tech-specs {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
}

.tech-specs h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.tech-specs h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.spec-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.spec-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-align: center;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--light-text);
    font-size: 0.9rem;
}

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

.spec-list strong {
    color: var(--dark-text);
    font-weight: 600;
}

/* Responsive Design for Technology Page */
@media (max-width: 768px) {
    .building-process,
    .materials-section,
    .quality-standards,
    .innovation-section,
    .tech-specs {
        padding: 3rem 0;
    }
    
    .building-process h2,
    .materials-section h2,
    .quality-standards h2,
    .innovation-section h2,
    .tech-specs h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .building-process-steps,
    .materials-grid,
    .standards-grid,
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .building-process-step {
        padding-left: 3rem;
        text-align: center;
    }
    
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .innovation-text {
        padding-right: 0;
    }
    
    .innovation-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .building-process h2,
    .materials-section h2,
    .quality-standards h2,
    .innovation-section h2,
    .tech-specs h2 {
        font-size: 1.8rem;
    }
    
    .building-process-step,
    .material-card,
    .standard-card,
    .spec-card {
        padding: 1.5rem;
    }
    
    .building-process-step .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        bottom: 0.8rem;
        left: 0.8rem;
    }
    
    .material-card .material-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .material-card .material-icon i {
        font-size: 1.5rem;
    }
    
    .innovation-image {
        height: 250px;
    }
    
    .innovation-image i {
        font-size: 3rem;
    }
}

/* More Options Page Styles */

/* Additional Services Section */
.additional-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.additional-services::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="services-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23services-pattern)"/></svg>');
    pointer-events: none;
}

.additional-services .container {
    position: relative;
    z-index: 2;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.additional-services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
}

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

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
}

.service-card .service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1rem;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.4);
    color: white;
    text-decoration: none;
}

/* Customization Options Section */
.customization-options {
    padding: 5rem 0;
    background: white;
}

.customization-options h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.customization-options h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.customization-category {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.customization-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 20px 20px 0 0;
}

.customization-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.customization-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.customization-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 1px;
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-item {
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.option-item:hover {
    background: #e8f4fd;
    transform: translateX(5px);
}

.option-name {
    display: block;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.option-description {
    display: block;
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Special Projects Section */
.special-projects {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
}

.special-projects h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.special-projects h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

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

.project-image {
    height: 160px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image .image-placeholder i {
    font-size: 3rem;
    color: white;
}

.project-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.project-content p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.project-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.project-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1rem;
}

.project-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
    margin-top: auto;
    align-self: flex-start;
    width: fit-content;
}

.project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.4);
    color: white;
    text-decoration: none;
}

/* Appointment Section */
.appointment-section {
    padding: 5rem 0;
    background: white;
}

.appointment-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.appointment-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.appointment-text {
    padding-right: 2rem;
}

.appointment-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.appointment-text p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.appointment-benefits {
    list-style: none;
    padding: 0;
}

.appointment-benefits li {
    padding: 0.8rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.appointment-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.appointment-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.appointment-form .form-group {
    margin-bottom: 1.5rem;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.1);
}

.appointment-form .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.appointment-form .checkbox input {
    width: auto;
    margin-top: 0.2rem;
}

.appointment-form .checkbox span {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 132, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.4);
}

/* Responsive Design for More Options Page */
@media (max-width: 768px) {
    .additional-services,
    .customization-options,
    .special-projects,
    .appointment-section {
        padding: 3rem 0;
    }
    
    .additional-services h2,
    .customization-options h2,
    .special-projects h2,
    .appointment-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid,
    .customization-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card,
    .customization-category,
    .project-card {
        /* No padding needed for project cards */
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .appointment-text {
        padding-right: 0;
    }
    
    .appointment-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .additional-services h2,
    .customization-options h2,
    .special-projects h2,
    .appointment-section h2 {
        font-size: 1.8rem;
    }
    
    .service-card,
    .customization-category {
        padding: 1.5rem;
    }
    
    .project-card {
        /* No padding needed for project cards */
    }
    
    .service-card .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card .service-icon i {
        font-size: 1.5rem;
    }
    
    .appointment-form {
        padding: 1.5rem;
    }
    
    .project-image {
        height: 140px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
}

/* Maintenance Services Section */
.maintenance-services {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.maintenance-services::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="maintenance-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23maintenance-pattern)"/></svg>');
    pointer-events: none;
}

.maintenance-services .container {
    position: relative;
    z-index: 2;
}

.maintenance-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3rem;
    position: relative;
}

.maintenance-services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.maintenance-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.maintenance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
}

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

.maintenance-card .maintenance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 132, 255, 0.3);
}

.maintenance-card .maintenance-icon i {
    font-size: 2rem;
    color: white;
}

.maintenance-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.maintenance-card p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.maintenance-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.maintenance-features li {
    padding: 0.5rem 0;
    color: var(--light-text);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.maintenance-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1rem;
}

/* Consultation Section */
.consultation-section {
    padding: 5rem 0;
    background: white;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.consultation-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    position: relative;
}

.consultation-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue));
    border-radius: 2px;
}

.consultation-text p {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.consultation-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.feature-item:hover {
    background: #e8f4fd;
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: bold;
}

.feature-item span {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1rem;
}

.consultation-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.consultation-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive Design for Maintenance Services */
@media (max-width: 768px) {
    .maintenance-services,
    .consultation-section {
        padding: 3rem 0;
    }
    
    .maintenance-services h2,
    .consultation-text h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .maintenance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .maintenance-card {
        padding: 2rem 1.5rem;
    }
    
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .maintenance-services h2,
    .consultation-text h2 {
        font-size: 1.8rem;
    }
    
    .maintenance-card {
        padding: 1.5rem;
    }
    
    .maintenance-card .maintenance-icon {
        width: 60px;
        height: 60px;
    }
    
    .maintenance-card .maintenance-icon i {
        font-size: 1.5rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

/* Financing Page Styles */
.hypotheek-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hypotheek-content::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hypotheek-content .container {
    position: relative;
    z-index: 2;
}

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

.main-content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.main-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.main-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-content p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.15);
}

.main-content p:last-child {
    margin-bottom: 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border-left-color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hypotheek-content {
        padding: 40px 0;
    }
    
    .main-content {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .main-content h2 {
        font-size: 2rem;
    }
    
    .main-content p {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 30px 20px;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .main-content p {
        font-size: 0.95rem;
        padding: 12px;
    }
}

/* Оптимизация для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .logo-image {
        height: 100px;
    }
    
    .nav-logo .partner-logo-img {
        height: 35px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .process-steps,
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .house-models {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .main-content {
        padding: 50px 40px;
    }
    
    .main-content h2 {
        font-size: 2.2rem;
    }
    
    /* Оптимизация контактной формы для планшетов */
    .contact-form-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    /* Дополнительные стили для планшетов */
    .contact-info h3 {
        font-size: 0.8rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
}
