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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #F5F5F5;
    background-color: #1C1C1C;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    color: #F5F5F5;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1E1E1E;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #1E1E1E;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    color: #1E1E1E;
}

p {
    margin-bottom: 1rem;
    color: #F5F5F5;
    line-height: 1.6;
}

/* Header */
.header {
    background: #1C1C1C;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo-text {
    color: #C0A060;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

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

.nav-item {
    margin: 0;
}

.nav-link {
    color: #F5F5F5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #C0A060;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f4e4bc;
    transition: width 0.3s ease;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #f4e4bc;
}

.messenger-icons {
    display: flex;
    gap: 0.5rem;
}

.messenger-icons a {
    color: #f4e4bc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.messenger-icons a:hover {
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(85deg, #1C1C1C 0%, #1C1C1C 55%, #F7F7F7 55%, #F7F7F7 100%);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(85deg, transparent 0%, transparent 48%, rgba(192, 160, 96, 0.1) 50%, transparent 52%, transparent 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 600px;
    padding: 0;
}

.hero-title {
    font-size: 3.5rem;
    color: #F5F5F5;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #F5F5F5;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.btn-primary {
    background: #C0A060;
    color: #1C1C1C;
}

.btn-primary:hover {
    background: #D9B86C;
}

.btn-secondary {
    background: transparent;
    color: #C0A060;
    border: 1px solid #C0A060;
}

.btn-secondary:hover {
    background: #C0A060;
    color: #1C1C1C;
}

.hero-image {
    position: relative;
    padding: 3rem 1rem 3rem 3rem;
    animation: subtleFloat 6s ease-in-out infinite;
    margin-left: 10%;
}

@keyframes subtleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: visible;
    background: transparent;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.slide.active {
    opacity: 1;
}

.slide img {
    max-width: 110%;
    max-height: 110%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
    background: transparent;
    transform: translateY(10px);
}

.slide:hover img {
    transform: translateY(10px) scale(1.05);
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    position: relative;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: #C0A060;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #1E1E1E;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Dark sections subtitle color */
.hero .section-subtitle,
.testimonials .section-subtitle,
.contact .section-subtitle {
    color: #F5F5F5;
    opacity: 0.8;
}

/* Dark sections title color */
.hero .section-title,
.testimonials .section-title,
.contact .section-title {
    color: #F5F5F5;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #F7F7F7;
}

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

.service-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-2px);
}

.service-icon {
    font-size: 3rem;
    color: #C0A060;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1E1E1E;
}

.service-card p {
    color: #1E1E1E;
    opacity: 0.8;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #1E1E1E;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C0A060;
    font-weight: bold;
}

.service-price {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #C0A060;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Calculator Section */
.calculator {
    padding: 80px 0;
    background: #F7F7F7;
    overflow: hidden;
    border-bottom: 3px solid #C0A060;
}

.calculator-warning {
    background: rgba(192, 160, 96, 0.1);
    border: 1px solid rgba(192, 160, 96, 0.3);
    border-radius: 0;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #C0A060;
}

.calculator-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}


.calculator-form {
    background: #fff;
    padding: 3rem;
    border-radius: 0;
    border: 2px solid #C0A060;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(192, 160, 96, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1E1E1E;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #C0A060;
    border-radius: 0;
    font-size: 1rem;
    background: #fff;
    color: #1E1E1E;
    transition: border-color 0.3s ease;
}

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

.calculator-btn {
    width: 100%;
    justify-content: center;
}

.calculator-result {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F7F7F7;
    padding: 3rem;
    border-radius: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    overflow-y: auto;
}

.calculator-result.show {
    transform: translateY(0);
}

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

.result-header h3 {
    color: #1E1E1E;
}

.result-price {
    font-size: 2.5rem;
    font-weight: 600;
    color: #C0A060;
    margin-top: 0.5rem;
}

.result-details {
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #1E1E1E;
}

.result-warning {
    background: rgba(192, 160, 96, 0.1);
    border: 1px solid rgba(192, 160, 96, 0.3);
    border-radius: 0;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #1E1E1E;
}

.result-warning p {
    color: #1E1E1E;
    margin: 0;
    font-weight: 500;
}

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

.result-actions .btn {
    flex: 1;
    justify-content: center;
}

.calc-thanks {
    background: #e8f5e8;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #F7F7F7;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #1E1E1E;
    opacity: 0.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #C0A060;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #1E1E1E;
    opacity: 0.8;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    background: #f8f8f8;
    border: 2px dashed #8B4513;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: #8B4513;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #1C1C1C;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #F7F7F7;
    padding: 2rem;
    border-radius: 0;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
}

.testimonial-rating {
    color: #C0A060;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: #1E1E1E;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: #C0A060;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1C1C1C;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: #1E1E1E;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #1E1E1E;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #F7F7F7;
}

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

.gallery-item {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.gallery-item:hover {
    transform: translateY(-2px);
}

.gallery-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    color: #C0A060;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-placeholder h4 {
    margin-bottom: 0.5rem;
}

.gallery-placeholder p {
    color: #666;
    font-size: 0.9rem;
}

/* Products Gallery Section */
.products-gallery {
    padding: 60px 0;
    background: #F7F7F7;
}

.products-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 60px;
}

.products-slider {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #C0A060 transparent;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
    cursor: grab;
    width: 100%;
    max-height: 220px;
}

.products-slider:active {
    cursor: grabbing;
}

.products-slider::-webkit-scrollbar {
    height: 6px;
}

.products-slider::-webkit-scrollbar-track {
    background: rgba(192, 160, 96, 0.1);
}

.products-slider::-webkit-scrollbar-thumb {
    background: #C0A060;
    border-radius: 3px;
}

.products-slider::-webkit-scrollbar-thumb:hover {
    background: #D9B86C;
}

.product-slide {
    flex: 0 0 auto !important;
    width: 200px !important;
    height: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important;
    background: #fff;
    border: 1px solid rgba(192, 160, 96, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.product-slide:hover {
    border-color: #C0A060;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(192, 160, 96, 0.2);
}

.product-slide img {
    width: 100% !important;
    height: 100% !important;
    max-width: 200px !important;
    max-height: 200px !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(192, 160, 96, 0.9);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 0;
}

.slider-nav:hover {
    background: #C0A060;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.gallery-footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(192, 160, 96, 0.2);
}

.gallery-footer-text {
    color: #000 !important;
    font-size: 0.95rem !important;
    margin-bottom: 1.5rem !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
    line-height: 1.6 !important;
    text-align: center !important;
    width: 100%;
}

.gallery-footer-text span {
    display: inline-block;
    text-align: center;
    color: #000 !important;
}

.gallery-footer-text i {
    color: #0088cc !important;
    font-size: 1.3rem !important;
    flex-shrink: 0;
}

.gallery-footer-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-top: 0.5rem !important;
}

.gallery-footer-link i:last-child {
    transition: transform 0.3s ease;
}

.gallery-footer-link:hover i:last-child {
    transform: translateX(3px);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #F7F7F7;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 0;
    margin-bottom: 1rem;
    border: 1px solid rgba(192, 160, 96, 0.2);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1E1E1E;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(192, 160, 96, 0.1);
}

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

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

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

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #1E1E1E;
    opacity: 0.8;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1C1C1C;
    color: #F5F5F5;
}

/* Location Section */
.location {
    padding: 80px 0;
    background: #F7F7F7;
}

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

.location-image,
.location-map {
    background: #fff;
    border-radius: 0;
    padding: 0;
    text-align: center;
    border: 1px solid rgba(192, 160, 96, 0.2);
    overflow: hidden;
}

.store-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
}

#map,
#yandex-map {
    border-radius: 0;
    width: 100%;
    height: 300px;
}

.location-placeholder,
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #8B4513;
}

.location-placeholder i,
.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.location-placeholder p,
.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    color: #666;
    font-size: 0.9rem;
}

.contact .section-title {
    color: #f4e4bc;
}

.contact .section-title::after {
    background: #f4e4bc;
}

.contact .section-subtitle {
    color: #fff;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(192, 160, 96, 0.2);
    min-height: 400px;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4e4bc;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #f4e4bc;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #fff;
    margin-bottom: 0.5rem;
}

.email-btn {
    color: #f4e4bc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.email-btn:hover {
    color: #fff;
}

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

.social-links a {
    color: #C0A060;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #D9B86C;
}

.contact-form {
    background: #1C1C1C;
    padding: 3rem;
    border-radius: 0;
    border: 2px solid #C0A060;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.form-group input,
.form-group textarea {
    background: #F7F7F7;
    border: 1px solid #C0A060;
    color: #1E1E1E;
    border-radius: 0;
}

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

/* Footer */
.footer {
    background: #1C1C1C;
    color: #F5F5F5;
    padding: 80px 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a {
    color: #F5F5F5;
    opacity: 0.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #C0A060;
    opacity: 1;
}

.email-link-footer {
    color: #C0A060 !important;
}

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

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

.modal-content {
    background-color: #F7F7F7;
    margin: 8% auto;
    padding: 0;
    border-radius: 0;
    width: 90%;
    max-width: 450px;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: #1C1C1C;
    color: #F5F5F5;
    padding: 1rem;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #F5F5F5;
    margin: 0;
}

.close {
    color: #F5F5F5;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #C0A060;
}

.modal-body {
    padding: 1rem;
    flex: 1;
    overflow: hidden;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.modal-form .form-group label {
    color: #1E1E1E;
    font-weight: 500;
}

.modal-form input,
.modal-form textarea,
.modal-form select {
    padding: 0.8rem;
    font-size: 0.9rem;
    background: #fff;
    color: #1E1E1E;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
}

.file-upload {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border: 2px dashed #C0A060;
    border-radius: 0;
    background: #fff;
    color: #C0A060;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.upload-btn:hover {
    background: #C0A060;
    color: #fff;
}

.uploaded-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.uploaded-photos img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #8B4513;
}

.upload-hint {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-buttons .btn {
    flex: 1;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #1C1C1C;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-phone {
        display: none;
    }
    
    .hero::before {
        background: linear-gradient(180deg, #1C1C1C 0%, #1C1C1C 60%, #F7F7F7 60%, #F7F7F7 100%);
    }
    
    .hero::after {
        background: linear-gradient(180deg, transparent 0%, transparent 58%, rgba(192, 160, 96, 0.1) 60%, transparent 62%, transparent 100%);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }
    
    .hero-text {
        padding: 2rem;
    }
    
    .hero-image {
        padding: 2rem;
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-slideshow {
        height: 400px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .products-slider-wrapper {
        padding: 0 50px;
    }
    
    .gallery-footer {
        padding: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .gallery-footer-text {
        font-size: 0.9rem !important;
    }
    
    .products-slider {
        max-height: 190px !important;
    }
    
    .product-slide {
        width: 180px !important;
        height: 180px !important;
        min-width: 180px !important;
        max-width: 180px !important;
    }
    
    .product-slide img {
        max-width: 180px !important;
        max-height: 180px !important;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .calculator-content {
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-form {
        max-width: 90%;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-image {
        order: 1;
    }
    
    .location-map {
        order: 2;
    }
    
    .store-photo {
        height: 250px;
    }
    
    #map {
        height: 250px;
    }
    
    .location-placeholder,
    .map-placeholder {
        height: 250px;
    }
    
    .products-slider-wrapper {
        padding: 0 40px;
    }
    
    .products-slider {
        max-height: 160px !important;
    }
    
    .product-slide {
        width: 150px !important;
        height: 150px !important;
        min-width: 150px !important;
        max-width: 150px !important;
    }
    
    .product-slide img {
        max-width: 150px !important;
        max-height: 150px !important;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav i {
        font-size: 1rem;
    }
    
    .gallery-footer {
        padding: 1rem !important;
        margin-top: 1.5rem !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .gallery-footer-text {
        font-size: 0.85rem !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .gallery-footer-link {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
        display: inline-flex !important;
        visibility: visible !important;
    }
    
    .modal-body {
        padding: 0.8rem;
    }
    
    .modal-content {
        margin: 3% auto;
        max-width: 95%;
        max-height: 85vh;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 3001;
    transition: color 0.3s ease;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.lightbox-close:hover {
    color: #C0A060;
    background: rgba(192, 160, 96, 0.3);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    cursor: pointer;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(192, 160, 96, 0.8);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3001;
    border-radius: 50%;
    font-size: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #C0A060;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.product-slide img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }
}

@media (max-width: 480px) {
    .lightbox-close {
        top: 5px;
        right: 10px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}