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

:root {
    --primary-color: #0f0954;
    --primary-hover: #1a0f7a;
    --primary-light: #2a1f8a;
    --secondary-color: #fedfb0;
    --secondary-hover: #fdd89a;
    --light-color: #e9e5e1;
    --light-hover: #e0d9d0;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow-primary: rgba(15, 9, 84, 0.3);
    --shadow-light: rgba(15, 9, 84, 0.15);
    --shadow-medium: rgba(15, 9, 84, 0.2);
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Header and Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

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

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

.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: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section with 3D Animation */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform-style: preserve-3d;
    animation: float 8s ease-in-out infinite, rotate3d 20s linear infinite;
}

.element-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
    transform-style: preserve-3d;
    animation: float 10s ease-in-out infinite, rotate3d 15s linear infinite reverse;
}

.element-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    top: 50%;
    right: 30%;
    animation-delay: 4s;
    transform-style: preserve-3d;
    animation: float 12s ease-in-out infinite, rotate3d 25s linear infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

@keyframes rotate3d {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-dark);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(255,255,255,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-primary);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px var(--shadow-light);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #999;
    min-height: 400px;
    width: 100%;
    object-fit: cover;
}

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

.decor-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.decor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.decor-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.decor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.decor-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.card-image {
    margin-top: 1.5rem;
    border-radius: 10px;
    width: 100%;
    height: 200px;
    background-color: #999;
    object-fit: cover;
}

/* Textiles Section */
.textiles {
    background-color: var(--secondary-color);
}

.textile-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.textile-item.reverse {
    direction: rtl;
}

.textile-item.reverse .textile-text {
    direction: ltr;
}

.textile-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    height: 400px;
    background-color: #999;
    object-fit: cover;
}

.textile-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.textile-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Features Grid */
.features {
    background-color: var(--light-color);
}

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

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-light);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Sculptures Section */
.sculptures {
    background-color: var(--white);
}

.sculpture-content {
    max-width: 900px;
    margin: 0 auto;
}

.sculpture-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sculpture-text h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.sculpture-text h5 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.sculpture-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.sculpture-image,
.type-image,
.placement-image {
    margin: 2rem 0;
    border-radius: 15px;
    width: 100%;
    height: 400px;
    background-color: #999;
    object-fit: cover;
}

.sculpture-types {
    margin: 2rem 0;
}

.sculpture-type {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 15px;
}

.material-list,
.placement-tips {
    list-style: none;
    margin: 1rem 0;
}

.material-list li,
.placement-tips li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.material-list li::before,
.placement-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Consultation Section */
.consultation {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.consultation-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.consultation-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.consultation-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.consultation-benefits svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.consultation-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    width: 100%;
    height: 400px;
    background-color: #666;
    object-fit: cover;
}

/* FAQ Section */
.faq {
    background-color: var(--light-color);
}

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

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

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

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

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

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

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

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    text-align: center;
}

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

.contact-info {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

/* Success Page */
.success-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--secondary-color) 100%);
}

.success-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 600px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: #22c55e;
}

.success-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Policy Pages */
.policy-page {
    padding: 3rem 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-content ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}
    /* Cookie Banner Styles - START */
    * { box-sizing: border-box; }
    
    .cookie-banner {
        position: fixed; bottom: 0; left: 0; right: 0;
       background: linear-gradient(135deg, #1a0f7a 0%, #1a0f7a 100%);
        color: white; padding: 1.5rem; box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
        z-index: 10000;  
        transition: all 0.4s ease-in-out;
    }
    .cookie-banner.show { opacity: 1; transform: translateY(0); display: block; }
    .cookie-banner.hide { display: none !important; }
    .cookie-banner-content {
        max-width: 1200px; margin: 0 auto; display: flex;
        align-items: flex-start; justify-content: space-between; gap: 2rem;
    }
    .cookie-text { flex: 1; }
    .cookie-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; color: #ffffff; }
    .cookie-description { font-size: 0.9rem; line-height: 1.5; margin-bottom: 1rem; opacity: 0.95; }
    .cookie-policy-link { color: #ffffff; text-decoration: underline; font-weight: 600; }
    .cookie-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
    .cookie-btn {
        padding: 0.75rem 1.5rem; border: none; border-radius: 25px;
        font-weight: 500; cursor: pointer; transition: all 0.3s ease;
        font-size: 0.9rem; white-space: nowrap;
    }
    .cookie-btn-accept { background: #ffffff; color: #8D0509; }
    .cookie-btn-accept:hover { background: #f0f0f0; transform: translateY(-2px); }
    .cookie-btn-reject { background: transparent; color: white; border: 2px solid #ffffff; }
    .cookie-btn-reject:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
    .cookie-btn-settings { background: transparent; color: #ffffff; border: 1px solid #ffffff; }
    .cookie-btn-settings:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
    
    .cookie-modal {
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px);
        z-index: 10001; display: none; align-items: center; justify-content: center;
        padding: 2rem; opacity: 0; transition: opacity 0.3s ease;
    }
    .cookie-modal.show { display: flex; opacity: 1; }
    .cookie-modal-content {
        background: white; border-radius: 15px; max-width: 600px; width: 100%;
        max-height: 80vh; overflow-y: auto; transform: scale(0.9); transition: transform 0.3s ease;
    }
    .cookie-modal.show .cookie-modal-content { transform: scale(1); }
    .cookie-modal-header {
        background: linear-gradient(135deg, #1a0f7a 0%,#1a0f7a 100%);
        color: white; padding: 2rem; border-radius: 15px 15px 0 0; position: relative;
    }
    .cookie-modal-title { font-size: 1.5rem; font-weight: 600; margin: 0; color: #ffffff; }
    .cookie-modal-close {
        position: absolute; top: 1rem; right: 1rem; background: none; border: none;
        font-size: 1.5rem; cursor: pointer; color: white; width: 30px; height: 30px;
        display: flex; align-items: center; justify-content: center; border-radius: 50%;
        transition: all 0.3s ease;
    }
    .cookie-modal-close:hover { background: rgba(255, 255, 255, 0.2); transform: rotate(90deg); }
    .cookie-modal-body { padding: 2rem; }
    .cookie-category {
        margin-bottom: 2rem; border: 2px solid #f0f0f0; border-radius: 10px;
        padding: 1.5rem; transition: all 0.3s ease;
    }
    .cookie-category:hover { border-color: #86B7CA; box-shadow: 0 2px 10px rgba(134, 183, 202, 0.1); }
    .cookie-category.essential { border-color: #8D0509; background: #fef5f5; }
    .cookie-category-header {
        display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem;
    }
    .cookie-category-title { font-size: 1.1rem; font-weight: 600; color: #8D0509; margin: 0; }
    .cookie-category-description { font-size: 0.9rem; color: #666; line-height: 1.5; }
    .cookie-toggle { 
        position: relative; display: inline-block; width: 50px; height: 24px;
        transition: transform 0.2s ease;
    }
    .cookie-toggle input { 
        opacity: 0; width: 0; height: 0; position: absolute;
    }
    .cookie-toggle-slider {
        position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
        background-color: #ccc; border-radius: 24px; transition: all 0.4s ease;
        user-select: none;
    }
    .cookie-toggle-slider:before {
        position: absolute; content: ""; height: 18px; width: 18px; 
        left: 3px; top: 3px; background-color: white; border-radius: 50%; 
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    .cookie-toggle-slider:hover:before {
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .cookie-toggle input:checked + .cookie-toggle-slider { 
        background-color: #8D0509;
    }
    .cookie-toggle input:checked + .cookie-toggle-slider:before { 
        transform: translateX(26px);
    }
    .cookie-toggle input:disabled + .cookie-toggle-slider {
        background-color: #8D0509; cursor: not-allowed; opacity: 0.8;
    }
    .cookie-toggle input:disabled + .cookie-toggle-slider:before {
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .cookie-toggle-slider:active:before {
        width: 20px;
    }
    .cookie-modal-footer {
        padding: 1.5rem 2rem; border-top: 1px solid #f0f0f0; display: flex;
        gap: 1rem; justify-content: flex-end; background-color: #fafafa; border-radius: 0 0 15px 15px;
    }
    .cookie-btn-save {
        background: #8D0509; color: white; padding: 0.75rem 2rem; border: none;
        border-radius: 25px; font-weight: 500; cursor: pointer; transition: all 0.3s ease;
    }
    .cookie-btn-save:hover { background: #6d0407; transform: translateY(-2px); }
    .cookie-btn-cancel {
        background: transparent; 
        color: #666; 
        padding: 0.75rem 2rem; 
        border: 2px solid white;
        border-radius: 25px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }       
    .cookie-btn-cancel:hover { border-color: #999; color: #333; transform: translateY(-2px); }
/* Mobile Responsive - 320px and up */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        overflow-y: auto;
        z-index: 999;
    }
		        .cookie-banner-content { flex-direction: column; gap: 1rem; }
        .cookie-buttons { justify-content: flex-start; width: 100%; }
        .cookie-btn { min-width: 0; text-align: center; }
        .cookie-modal { padding: 1rem; }
        .cookie-modal-header, .cookie-modal-body, .cookie-modal-footer { padding: 1.5rem; }
        .cookie-modal-footer { flex-direction: column; }
        .cookie-btn-save, .cookie-btn-cancel { width: 100%; text-align: center; }

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

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

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

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

    /* Hero */
    .hero {
        min-height: 400px;
        padding: 2rem 0;
    }

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

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

    .floating-element {
        width: 100px !important;
        height: 100px !important;
    }

    /* Sections */
    .section {
        padding: 3rem 0;
    }

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

    /* Grids */
    .decor-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .textile-item,
    .textile-item.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        direction: ltr;
    }

    .textile-image {
        height: 300px;
    }

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

    .consultation-content h2 {
        font-size: 1.8rem;
    }

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

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Buttons */
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

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

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Extra small devices (320px and up) */
@media screen and (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    /* Header adjustments */
    .logo img {
        height: 40px;
    }

    .nav-menu {
        padding: 1rem;
        gap: 0.5rem;
        top: 60px;
        height: calc(100vh - 60px);
    }

    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    /* Hero section */
    .hero {
        min-height: 350px;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .floating-element {
        width: 80px !important;
        height: 80px !important;
    }

    /* Sections */
    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }

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

    /* Cards and grids */
    .decor-card,
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .decor-card h3,
    .feature-card h3 {
        font-size: 1.2rem;
    }

    .decor-card p,
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Textile items */
    .textile-item {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .textile-text h3 {
        font-size: 1.5rem;
    }

    .textile-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .textile-image {
        height: 250px;
    }

    /* Sculpture content */
    .sculpture-text h3 {
        font-size: 1.5rem;
    }

    .sculpture-text h4 {
        font-size: 1.3rem;
    }

    .sculpture-text h5 {
        font-size: 1.1rem;
    }

    .sculpture-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .sculpture-image,
    .type-image,
    .placement-image {
        height: 250px;
        margin: 1.5rem 0;
    }

    .sculpture-type {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    /* Consultation section */
    .consultation-content h2 {
        font-size: 1.5rem;
    }

    .consultation-content p {
        font-size: 1rem;
    }

    .consultation-benefits li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .consultation-image img {
        height: 300px;
    }

    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Buttons */
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        border-radius: 25px;
    }

    /* Contact form */
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 120px;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    /* Policy pages */
    .policy-content h1 {
        font-size: 1.8rem;
    }

    .policy-content h2 {
        font-size: 1.4rem;
    }

    .policy-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Success page */
    .success-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .success-content h1 {
        font-size: 1.8rem;
    }

    .success-content p {
        font-size: 1rem;
    }

    .success-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Map container */
    .map-container iframe {
        height: 300px;
    }

    /* Info items */
    .info-item {
        margin-bottom: 1.5rem;
    }

    .info-text h3 {
        font-size: 1.1rem;
    }

    .info-text p {
        font-size: 0.9rem;
    }
}

/* Enhanced animations and effects */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--shadow-primary);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(15, 9, 84, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(15, 9, 84, 0);
    }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced button animations */
.btn {
    position: relative;
    overflow: hidden;
}

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

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

/* Enhanced card hover effects */
.decor-card,
.feature-card {
    position: relative;
    overflow: hidden;
}

.decor-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.decor-card:hover::before,
.feature-card:hover::before {
    opacity: 0.05;
}

/* Enhanced form focus effects */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px var(--shadow-light);
    transform: translateY(-2px);
}


/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-menu-toggle,
    .btn {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}