/* Asian Minimal Style Landscape Design Website */

:root {
    --primary-green: #3d8611;
    --light-green: #77d525;
    --beige: #c3bba6;
    --dark-text: #2c2c2c;
    --light-text: #666;
    --white: #ffffff;
    --light-bg: #f8f8f6;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

.nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

/* Banner */
.banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background: #ddd;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 134, 17, 0.7) 0%, rgba(119, 213, 37, 0.5) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.banner-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background: #ddd;
}

.page-banner .container {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(61, 134, 17, 0.8) 0%, rgba(119, 213, 37, 0.6) 100%);
    z-index: 2;
}

.page-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s;
    border: 2px solid;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--light-green);
    border-color: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 134, 17, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
}

/* Sections */
.intro-section,
.content-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    border: 2px solid var(--beige);
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Gallery */
.gallery-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #ddd;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Content Blocks */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.content-text p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ddd;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.service-item:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-item p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Style Cards */
.styles-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.styles-intro h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.styles-intro p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.style-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.style-card.reverse {
    direction: rtl;
}

.style-card.reverse > * {
    direction: ltr;
}

.style-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ddd;
}

.style-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.style-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.styles-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.styles-gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #ddd;
}

/* Projects */
.projects-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.projects-intro h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.projects-intro p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1.05rem;
}

.project-category {
    margin-bottom: 5rem;
}

.project-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.project-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.project-images img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #ddd;
}

.project-category.reverse .project-content {
    order: 2;
}

.project-category.reverse .project-images {
    order: 1;
}

.project-support {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
}

.project-support h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.project-support p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.image-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.image-showcase img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: #ddd;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.contact-info p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    border: 2px solid var(--beige);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.contact-item p {
    color: var(--light-text);
    margin: 0;
}

.contact-item a {
    color: var(--primary-green);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
    font-weight: 400;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-wrapper {
    margin-top: 4rem;
}

.map-wrapper h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-text);
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 300;
    color: var(--beige);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
    letter-spacing: -2px;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    border: 2px solid var(--beige);
    border-radius: 50%;
    background: var(--white);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.process-step p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-content h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.benefits-content > p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    border: 2px solid var(--beige);
    flex-shrink: 0;
    background: var(--white);
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.benefit-item p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.benefits-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #ddd;
}

.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0 6rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.last-updated {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.legal-section p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: var(--light-green);
    text-decoration: underline;
}

.legal-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--light-text);
    line-height: 1.8;
}

.legal-list li {
    margin-bottom: 0.75rem;
}

.legal-list li strong {
    color: var(--dark-text);
    font-weight: 500;
}

/* Success Section */
.success-section {
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    border: 3px solid var(--beige);
    border-radius: 50%;
    background: var(--light-bg);
}

.success-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.success-message {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.success-details {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.success-info {
    text-align: left;
    background: var(--light-bg);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.success-info h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--dark-text);
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number-small {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 400;
    flex-shrink: 0;
}

.step-item p {
    color: var(--light-text);
    line-height: 1.7;
    margin: 0;
    padding-top: 8px;
}

.sitemap-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.sitemap-link a {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.sitemap-link a:hover {
    color: var(--light-green);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-green);
    padding: 1.5rem 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text p {
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner-text a {
    color: var(--primary-green);
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-banner-text a:hover {
    color: var(--light-green);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: 2px solid;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: inherit;
}

.cookie-btn-accept {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.cookie-btn-accept:hover {
    background: var(--light-green);
    border-color: var(--light-green);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--dark-text);
    border-color: var(--border-color);
}

.cookie-btn-reject:hover {
    background: var(--light-bg);
    border-color: var(--primary-green);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.cookie-btn-settings:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--light-green);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--light-green);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--light-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--white);
        flex-direction: column;
        width: 250px;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s;
        border: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .page-banner h1 {
        font-size: 1.8rem;
    }

    .content-block,
    .style-card,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-block.reverse,
    .style-card.reverse {
        direction: ltr;
    }

    .project-category.reverse .project-content,
    .project-category.reverse .project-images {
        order: initial;
    }

    .features-grid,
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .styles-gallery,
    .project-images,
    .image-showcase {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .section-title {
        font-size: 1.8rem;
    }

    .intro-section,
    .content-section {
        padding: 3rem 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .success-content h1 {
        font-size: 2rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .banner {
        min-height: 400px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    .page-banner {
        min-height: 300px;
    }

    .page-banner h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-header h2,
    .section-title {
        font-size: 1.5rem;
    }

    .nav-menu {
        width: 100%;
        right: 0;
        left: 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

