* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-white: #ffffff;
    --primary-dark: #2a2a2a;
    --accent-wood: #c7a17a;
    --light-bg: #1a1a1a;
    --dark-bg: #0f0f0f;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
}

h1,
h2,
h3 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Header & Navigation */
header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

header.hidden {
    transform: translateY(-100%);
}

header.visible {
    transform: translateY(0);
}

nav {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-wood);
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.logo img {
    max-height: 60px;
}

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

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    font-size: 1.05rem;
    font-weight: 500;
}

.nav-links a:not(.cta-button):hover,
.nav-links a:not(.cta-button).active {
    color: var(--accent-wood);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-wood);
    transition: width 0.3s;
}

.nav-links a:not(.cta-button):hover::after,
.nav-links a:not(.cta-button).active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 1rem 0;
    top: 100%;
    left: 0;
    margin-top: 0.1rem;
    border: 1px solid rgba(199, 161, 122, 0.2);
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1.5rem;
}

.dropdown-content a::after {
    display: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.cta-button {
    background: var(--accent-wood);
    color: var(--primary-white);
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(199, 161, 122, 0.3);
}

.cta-button:hover {
    background: #d4b48f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 161, 122, 0.5);
}

.nav-links a.cta-button:hover {
    color: var(--primary-white);
}

.cta-button::after {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    transition: 0.3s;
}

/* Hero Section - Full Width Slider */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    padding-top: 3rem;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(42, 42, 42, 0.4) 100%);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    content-visibility: auto;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--primary-white);
    max-width: 900px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-contact {
    position: absolute;
    bottom: 15%;
    z-index: 2;
    left: 5%;
}



.hero-contact a {
    color: var(--primary-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.2px);
    -webkit-backdrop-filter: blur(4.2px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-contact a span:first-of-type {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--accent-wood);
    border-color: var(--primary-white);
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(199, 161, 122, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--primary-white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(199, 161, 122, 0.7);
    border-color: var(--accent-wood);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

.btn-primary {
    background: var(--accent-wood);
    color: var(--primary-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(199, 161, 122, 0.3);
}

.btn-primary:hover {
    background: #d4b48f;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(199, 161, 122, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border: 2px solid var(--primary-white);
    border-radius: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 6rem 4rem;
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #e0e0e0;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-wood);
    margin: 1rem auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    color: #c0c0c0;
}

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

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

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

/* Services Section */
.services {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.service-card:hover {
    box-shadow: 0 15px 50px rgba(199, 161, 122, 0.3);
    border-color: var(--accent-wood);
    transform: translateY(-10px);
    background: rgba(42, 42, 42, 0.9);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--accent-wood);
    background-color: rgba(42, 42, 42, 0.6);
    border: 1px solid rgba(199, 161, 122, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 55%;
    padding: 12px 18px;
    margin: 0 auto 1.5rem auto;
}

.service-icon span {
    width: 64px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--primary-white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(10%);
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(199, 161, 122, 0.2);
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--accent-wood);
    opacity: 0.4;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #c0c0c0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: bold;
    color: var(--accent-wood);
    font-size: 1.1rem;
}

/* Process Section */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s;
    background: rgba(42, 42, 42, 0.4);
    border-radius: 15px;
    border: 2px solid rgba(199, 161, 122, 0.2);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-wood), #d4b48f);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(199, 161, 122, 0.4);
}

.process-step h3 {
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 1.5rem;
}

.process-step p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    font-size: 1.15rem;
    color: #c0c0c0;
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-details {
    margin: 2.5rem 0;
    background: rgba(42, 42, 42, 0.4);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(199, 161, 122, 0.2);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(199, 161, 122, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(1.1);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--dark-bg);
    padding: 6rem 4rem;
}

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

.form-description {
    text-align: center;
    color: #c0c0c0;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.contact-form {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(199, 161, 122, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--accent-wood);
    font-weight: 500;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(199, 161, 122, 0.3);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-wood);
    box-shadow: 0 0 0 3px rgba(199, 161, 122, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--accent-wood), #d4b48f);
    color: var(--primary-white);
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(199, 161, 122, 0.3);
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(199, 161, 122, 0.5);
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #b0b0b0;
    padding: 4rem 4rem 1.5rem;
    border-top: 2px solid rgba(199, 161, 122, 0.2);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--accent-wood);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
}

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

.footer-links .contact-icon {
    width: 24px;
    display: inline-block;
    transform: translateY(-2px);
}

.footer-links li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 6px 0;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--accent-wood);
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(199, 161, 122, 0.2);
    color: #808080;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}

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

.chevron {
    display: inline-flex;
    margin-left: 0.5rem;
    font-size: 0.8rem;
transform: translateY(5px);
    transition: transform 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 950px) {

 .chevron {
        display: inline-block;
        width: 24px;
        height: 24px;
        position: absolute;
        right: -28px;
        top: 2px;
    }

    .dropdown.active .chevron {
        transform: rotate(180deg);
    }

    .dropdown-content {
        max-height: fit-content;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        display: block;
        max-height: 500px;
    }

    .dropdown-content a {
        padding: 0.5rem 2rem;
        font-size: 0.95rem;
    }

    .dropdown > a {
        display: flex;
        align-items: center;
        justify-content: center; 
        position: relative;
    }




    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1002;
        overflow-y: auto;
        gap: 1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger animation for menu items */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.7s;
    }

    /* Close button */
    .close-menu {
        position: absolute;
        top: 2rem;
        right: 2rem;
        margin: 0 !important;
    }

    .close-button {
        background: none;
        border: none;
        width: 40px;
        height: 40px;
        position: relative;
        cursor: pointer;
        padding: 0;
    }

    .close-button span {
        position: absolute;
        width: 30px;
        height: 3px;
        background: #ffffff;
        top: 50%;
        left: 50%;
        transition: all 0.3s ease;
    }

    .close-button span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .close-button span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .close-button:hover span {
        background: #fff;
    }

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

    .hamburger {
        display: flex;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        background: transparent;
        text-align: center;
        margin-top: 24px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .slider-arrow.prev {
        left: 20px;
    }

    .slider-arrow.next {
        right: 20px;
    }

    .slider-nav {
        bottom: 10px;
    }

    .hero-contact {
        bottom: 7%;
        left: 8%;
    }

    .contact-form-section {
        padding: 4rem 2rem;
    }

    .service-icon {
        max-width: 150px;
    }

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

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

    section {
        padding: 3rem 1.5rem;
    }

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

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .hero-content {
        width: 100%;
        max-width: 400px;
    }

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

    .cta-button {
        padding: 1rem 2rem;
    }
}

@media (min-width: 951px) {
    .close-menu {
        display: none;
    }
}

@media (max-width: 500px) {
    .hero-content {
        width: 85%;
    }

    .slider-arrow.next {
        right: 5px;
    }

    .slider-arrow.prev {
        left: 5px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
    }
}

/** About us page /**
     

        /* Hero Section */
.about-page-hero {
    margin-top: 0;
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.about-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-white);
    max-width: 800px;
    padding: 2rem;
}

.about-page-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.about-page-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #e0e0e0;
    position: relative;
    font-weight: 700;
}

.about-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-wood);
    margin: 1rem auto;
}

/* Story Section */
.about-story-section {
    background: var(--dark-bg);
}

.about-story-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-text {
    font-size: 1.15rem;
    color: #c0c0c0;
    line-height: 1.8;
}

.about-story-text p {
    margin-bottom: 1.5rem;
}

.about-story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

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

.about-story-image:hover img {
    transform: scale(1.05);
}

/* Values Section */
.about-values-section {
    background: var(--light-bg);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-value-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s;
}

.about-value-card:hover {
    border-color: var(--accent-wood);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(199, 161, 122, 0.3);
}

.about-value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value-icon img {
    max-height: 100px;
}

.about-value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--accent-wood);
}

.about-value-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Team Section */
.about-team-section {
    background: var(--dark-bg);
}

.about-team-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.15rem;
    color: #c0c0c0;
    line-height: 1.8;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-team-member {
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(199, 161, 122, 0.2);
    transition: all 0.3s;
}

.about-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(199, 161, 122, 0.3);
}

.about-team-member-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.about-team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.about-team-member:hover .about-team-member-image img {
    transform: scale(1.1);
}

.about-team-member-info {
    padding: 2rem;
    text-align: center;
}

.about-team-member-info h3 {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.about-team-member-info .role {
    color: var(--accent-wood);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-team-member-info p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Stats Section */
.about-stats-section {
    background: linear-gradient(135deg, rgba(199, 161, 122, 0.1), rgba(42, 42, 42, 0.3));
    padding: 5rem 4rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.about-stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-wood);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stat-label {
    font-size: 1.2rem;
    color: #c0c0c0;
}

/* Process Section */
.about-process-section {
    background: var(--dark-bg);
}

.about-process-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-process-intro,
.about-process-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.15rem;
    color: #c0c0c0;
    line-height: 1.8;
}

.about-about-process-steps {
    display: grid;
    gap: 3rem;
}

.about-process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: start;
}

.about-process-step:nth-child(even) {
    direction: rtl;
}

.about-process-step:nth-child(even)>* {
    direction: ltr;
}

.about-step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-wood), #d4b48f);
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(199, 161, 122, 0.4);
}

.about-step-content {
    background: rgba(42, 42, 42, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(199, 161, 122, 0.2);
}

.about-step-content h3 {
    font-size: 1.8rem;
    color: var(--accent-wood);
    margin-bottom: 1rem;
}

.about-step-content p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.05rem;
    max-width: none;
    margin: 0;
    text-align: left;
}

/* CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, rgba(199, 161, 122, 0.2), rgba(42, 42, 42, 0.4));
    padding: 6rem 4rem;
    text-align: center;
}

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

.about-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.about-cta-content p {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about-btn-primary {
    background: var(--accent-wood);
    color: var(--primary-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(199, 161, 122, 0.3);
}

.about-btn-primary:hover {
    background: #d4b48f;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(199, 161, 122, 0.5);
}


/* Mobile Responsive */
@media (max-width: 768px) {

    .hero-contact {
        display: none;
    }

    .about-page-hero h1 {
        font-size: 2.5rem;
    }

    .about-section-title {
        font-size: 2.2rem;
    }


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

    .about-process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-process-step:nth-child(even) {
        direction: ltr;
    }

    .about-step-number {
        margin: 0 auto;
    }

    .about-stat-number {
        font-size: 3rem;
    }
}

/** Gallery page **/


/* Filter Section */
.gallery-filter-section {
    background: var(--light-bg);
    padding: 3rem 4rem 2rem;
    border-bottom: 2px solid rgba(199, 161, 122, 0.2);
}

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

.filter-title {
    font-size: 1.2rem;
    color: var(--accent-wood);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.filter-btn {
    background: rgba(42, 42, 42, 0.6);
    color: #e0e0e0;
    border: 2px solid rgba(199, 161, 122, 0.3);
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
    background: rgba(199, 161, 122, 0.2);
    border-color: var(--accent-wood);
}

.filter-btn.active {
    background: var(--accent-wood);
    color: var(--primary-white);
    border-color: var(--accent-wood);
}

.filter-count {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #b0b0b0;
}

/* Gallery Section */
.gallery-main-section {
    padding: 4rem 4rem 6rem;
    background: var(--dark-bg);
}

.gallery-masonry {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: 10px;
}

.gallery-masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.gallery-masonry-item.hidden {
    display: none;
}

.gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-masonry-item:hover {
    box-shadow: 0 15px 40px rgba(199, 161, 122, 0.4);
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--primary-white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s;
}

.gallery-masonry-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-item-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.gallery-item-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-wood);
    color: var(--primary-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    animation: lightboxZoom 0.3s ease-out;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1);
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--accent-wood);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(199, 161, 122, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--primary-white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 2rem;
    backdrop-filter: blur(5px);
    border-radius: 50%;
}

.lightbox-nav:hover {
    background: rgba(199, 161, 122, 0.7);
    border-color: var(--accent-wood);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-caption {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--primary-white);
}

.lightbox-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    font-size: 1rem;
    opacity: 0.8;
}

/* No Results Message */
.no-results {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    color: #b0b0b0;
}

.no-results.active {
    display: block;
}

.no-results h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}



/* Mobile Responsive */
@media (max-width: 768px) {


    .gallery-filter-section {
        padding: 2rem 1.5rem 1.5rem;
    }

    .filter-buttons {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .gallery-main-section {
        padding: 2rem 1rem 4rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-caption {
        position: static;
        margin-top: 1rem;
    }
}

/* Contact Info Section */
.contact-info-section {
    background: var(--dark-bg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(199, 161, 122, 0.2);
    transition: all 0.4s;
}

.contact-info-card:hover {
    border-color: var(--accent-wood);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(199, 161, 122, 0.3);
}

.contact-info-icon {
    font-size: 3rem;
    color: var(--accent-wood);
    margin-bottom: 1.5rem;
}

.contact-info-icon svg {
    width: 64px;
}

.contact-info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.contact-info-card p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-info-card a {
    color: var(--accent-wood);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: #d4b48f;
}

/* Form Section */
.contact-form-main {
    background: var(--light-bg);
}

.form-and-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.contact-form-container .form-description {
    text-align: left;
    color: #c0c0c0;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.contact-form {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(199, 161, 122, 0.2);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--accent-wood);
    font-weight: 500;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(199, 161, 122, 0.3);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-wood);
    box-shadow: 0 0 0 3px rgba(199, 161, 122, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--accent-wood), #d4b48f);
    color: var(--primary-white);
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(199, 161, 122, 0.3);
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(199, 161, 122, 0.5);
}

/* Map Container */
.map-wrapper h3 {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.map-container {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(199, 161, 122, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(1.1);
}

.map-address {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(42, 42, 42, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(199, 161, 122, 0.2);
}

.map-address p {
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.map-address strong {
    color: var(--accent-wood);
}

/* FAQ Section */
.faq-section {
    background: var(--dark-bg);
}

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

.faq-item {
    background: rgba(42, 42, 42, 0.6);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(199, 161, 122, 0.2);
    overflow: hidden;
}

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

.faq-question:hover {
    background: rgba(199, 161, 122, 0.1);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-wood);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-answer-content {
    padding: 1rem 2rem 1.5rem 2rem;
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

/* Working Hours Section */
.hours-section {
    background: linear-gradient(135deg, rgba(199, 161, 122, 0.1), rgba(42, 42, 42, 0.3));
    padding: 5rem 4rem;
}

.hours-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(42, 42, 42, 0.6);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(199, 161, 122, 0.2);
}

.hours-grid {
    display: grid;
    gap: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(199, 161, 122, 0.2);
}

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

.day {
    font-weight: 600;
    color: #e0e0e0;
    font-size: 1.15rem;
}

.time {
    color: var(--accent-wood);
    font-size: 1.15rem;
}



/* Mobile Responsive */
@media (max-width: 768px) {


    .form-and-map {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .map-container {
        height: 350px;
    }

    .hours-section {
        padding: 3rem 1.5rem;
    }

    .hours-container {
        padding: 2rem 1.5rem;
    }
}

.error-text {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
    min-height: 20px;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
}

/* Success Message */
#form-success {
    display: none;
    padding: 1.5rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.4s ease-out;
}

#form-success::before {
    content: '✅';
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Error Message */
#form-error {
    display: none;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
    color: white;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.4s ease-out;
}

#form-error::before {
    content: '❌';
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Button disabled state */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* Hero Section */
.service-hero {
    margin-top: 80px;
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.service-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    width: 100%;
}

.service-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-white);
}

.service-hero p {
    font-size: 1.4rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.hero-features {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-wood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hero-feature-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Styles Section */
.kitchen-styles {
    padding: 6rem 4rem;
    background: var(--dark-bg);
}


.styles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.style-card {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.style-card:hover img {
    transform: scale(1.1);
}

.style-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 2rem;
    color: white;
}

.style-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.style-card p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Materials Section */
.materials-section {
    padding: 6rem 4rem;
    background: var(--light-bg);
}

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

.material-card {
    background: rgba(42, 42, 42, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.material-card:hover {
    border-color: var(--accent-wood);
    transform: translateY(-5px);
}

.material-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.material-card h3 {
    font-size: 1.4rem;
    color: var(--accent-wood);
    margin-bottom: 0.8rem;
}

.material-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 6rem 4rem;
    background: var(--dark-bg);
}

.features-comparison {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    background: rgba(42, 42, 42, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-wood);
}

.feature-check {
    width: 30px;
    height: 30px;
    background: var(--accent-wood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: bold;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.feature-text p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.features-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

/* Process Timeline */
.process-timeline-section {
    padding: 6rem 4rem;
    background: var(--light-bg);
}

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-wood);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-number {
    order: 1;
}

.timeline-content {
    background: rgba(42, 42, 42, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(199, 161, 122, 0.2);
}

.timeline-content h3 {
    font-size: 1.6rem;
    color: var(--accent-wood);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #b0b0b0;
    line-height: 1.7;
}

.timeline-number {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-wood), #d4b48f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(199, 161, 122, 0.4);
    z-index: 2;
}

/* Price Section */
.price-section {
    padding: 6rem 4rem;
    background: var(--dark-bg);
}

.price-intro,
.price-section p {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #c0c0c0;
    font-size: 1.15rem;
    line-height: 1.8;
}

.price-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.price-card {
    background: rgba(42, 42, 42, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(199, 161, 122, 0.2);
    text-align: center;
}

.price-card h3 {
    font-size: 1.8rem;
    color: var(--accent-wood);
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.price-card ul li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    padding-left: 1.5rem;
    position: relative;
}

.price-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-wood);
}


@media (max-width: 768px) {

    .service-hero {
        height: 60vh;
        padding: 2rem 1.5rem;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

.hero-feature-icon {
    width: 24px;
    height: 24px;
    font-size: 1rem;
}

    .hero-features {
        gap: 0.5rem;
    }

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

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

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        display: none;
    }

    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(even) .timeline-number {
        order: initial;
    }

.service-hero-content {
padding: 0 2rem;
height: 100%;
}
.service-hero p {
margin-bottom: 0; 
font-size: 0.8rem;
}

.kitchen-styles, .features-section, .price-section, .about-cta-section {
padding: 2rem;
}

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

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


}

/* Split Hero */
.split-hero {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
}

.split-hero-content {
    background: var(--dark-bg);
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.split-hero-content p {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

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

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

.stat-box .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-wood);
    line-height: 1;
}

.stat-box .label {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-top: 0.5rem;
}

.split-hero-image {
    position: relative;
    overflow: hidden;
}

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

/* Types Section with Tabs */
.types-section {
    padding: 6rem 4rem;
    background: var(--light-bg);
}

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

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(42, 42, 42, 0.6);
    color: #e0e0e0;
    border: 2px solid rgba(199, 161, 122, 0.3);
    padding: 1rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    font-weight: 500;
}

.tab-btn:hover {
    background: rgba(199, 161, 122, 0.2);
}

.tab-btn.active {
    background: var(--accent-wood);
    border-color: var(--accent-wood);
    color: var(--primary-white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.tab-content-text h3 {
    font-size: 2.5rem;
    color: var(--accent-wood);
    margin-bottom: 1.5rem;
}

.tab-content-text p {
    font-size: 1.15rem;
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tab-features,
.tab-content-text ul {
    list-style: none;
    margin-top: 2rem;
}

.tab-features li,
.tab-content-text ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #b0b0b0;
    font-size: 1.05rem;
}

.tab-features li::before,
.tab-content-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-wood);
    font-weight: bold;
}

.tab-content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

/* Organization Section */
.organization-section {
    padding: 6rem 4rem;
    background: var(--dark-bg);
}

.organization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.organization-card {
    background: rgba(42, 42, 42, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(199, 161, 122, 0.2);
    transition: all 0.3s;
    text-align: center;
}

.organization-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(199, 161, 122, 0.3);
}

.organization-icon {
    font-size: 3.5rem;
    color: var(--accent-wood);
    background-color: rgba(42, 42, 42, 0.6);
    border: 1px solid rgba(199, 161, 122, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 55%;
    padding: 12px 18px;
    margin: 0 auto 1.5rem auto;
}

.organization-icon svg {
    width: 64px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organization-card h3 {
    font-size: 1.5rem;
    color: var(--accent-wood);
    margin-bottom: 1rem;
}

.organization-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Before After Section */
.before-after-section {
    padding: 6rem 4rem;
    background: var(--light-bg);
}

.before-after-container {
    max-width: 1200px;
    margin: 0 auto;
}

.before-after-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ba-image {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

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

.ba-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-wood);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Doors Section */
.doors-section {
    padding: 6rem 4rem;
    background: var(--dark-bg);
}

.doors-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.door-option {
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(199, 161, 122, 0.2);
    transition: all 0.3s;
}

.door-option:hover {
    border-color: var(--accent-wood);
    transform: translateY(-5px);
}

.door-image {
    height: 300px;
    overflow: hidden;
}

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

.door-option:hover .door-image img {
    transform: scale(1.1);
}

.door-info {
    padding: 2rem;
}

.door-info h3 {
    font-size: 1.8rem;
    color: var(--accent-wood);
    margin-bottom: 1rem;
}

.door-info p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.door-pros,
.door-info ul {
    list-style: none;
}

.door-pros li,
.door-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #c0c0c0;
}

.door-pros li::before,
.door-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-wood);
}

.door-info ul li::marker {
    display: none;
}

/* Customization Section */
.customization-section {
    padding: 6rem 4rem;
    background: linear-gradient(135deg, rgba(199, 161, 122, 0.1), rgba(42, 42, 42, 0.3));
}

.customization-options {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.custom-option {
    background: rgba(42, 42, 42, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(199, 161, 122, 0.2);
    text-align: center;
}

.custom-option h4 {
    font-size: 1.3rem;
    color: var(--accent-wood);
    margin-bottom: 1rem;
}

.custom-option p {
    color: #b0b0b0;
    font-size: 0.95rem;
}



@media (max-width: 768px) {


    .split-hero {
        grid-template-columns: 1fr;
    }

    .split-hero-content {
        padding: 3rem 1.5rem;
    }

    .split-hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .doors-comparison,
    .ba-images {
        grid-template-columns: 1fr;
    }

    .customization-options {
        grid-template-columns: 1fr;
    }
}


/* Elements Grid */
.elements-section {
    padding: 6rem 4rem;
    background: var(--dark-bg);
}

.elements-section p {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    color: #c0c0c0;
    line-height: 1.8;
}

.elements-showcase {
    display: grid;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.element-row:nth-child(even) {
    direction: rtl;
}

.element-row:nth-child(even)>* {
    direction: ltr;
}

.element-content {
    padding: 2rem;
}

.element-badge {
    display: inline-block;
    background: var(--accent-wood);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.element-content h3 {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.element-content p {
    font-size: 1.1rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.element-content ul {
    list-style: none;
    margin-top: 2rem;
}

.element-content ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #c0c0c0;
}

.element-content ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--accent-wood);
}

.element-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    height: 400px;
}

.element-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.element-row:hover .element-image-wrapper img {
    transform: scale(1.05);
}

/* Styles Carousel Section */
.styles-carousel-section {
    padding: 6rem 4rem;
    background: var(--light-bg);
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    height: 500px;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 3rem;
    color: white;
}

.carousel-slide-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.carousel-slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.carousel-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(199, 161, 122, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(199, 161, 122, 0.7);
}

/* Combinations Section */
.combinations-section {
    padding: 6rem 4rem;
    background: var(--dark-bg);
}

.combinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.combination-card {
    background: rgba(42, 42, 42, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(199, 161, 122, 0.2);
    transition: all 0.3s;
}

.combination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(199, 161, 122, 0.3);
}

.combination-image {
    height: 250px;
    overflow: hidden;
}

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

.combination-card:hover .combination-image img {
    transform: scale(1.1);
}

.combination-info {
    padding: 2rem;
}

.combination-info h3 {
    font-size: 1.6rem;
    color: var(--accent-wood);
    margin-bottom: 1rem;
}

.combination-info p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Materials Showcase */
.materials-showcase-section {
    padding: 6rem 4rem;
    background: var(--light-bg);
}

.materials-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.material-sample {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.material-sample:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(199, 161, 122, 0.4);
}

.material-sample img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.material-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    color: white;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}


@media (max-width: 768px) {


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

    .element-row:nth-child(even) {
        direction: ltr;
    }

    .combinations-grid,
    .materials-display {
        grid-template-columns: 1fr;
    }


}

.legal-hero {
    margin-top: 80px;
    background: var(--light-bg);
    padding: 4rem 4rem 2rem;
    text-align: center;
    border-bottom: 2px solid rgba(199, 161, 122, 0.2);
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.legal-hero p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--accent-wood);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(199, 161, 122, 0.3);
}

.legal-section h3 {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin: 2rem 0 1rem;
}

.legal-section p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    color: #c0c0c0;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-section strong {
    color: var(--accent-wood);
}

.info-box {
    background: rgba(199, 161, 122, 0.1);
    border-left: 4px solid var(--accent-wood);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-box p {
    margin-bottom: 0;
}

.contact-info {
    background: rgba(42, 42, 42, 0.6);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--accent-wood);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}


@media (max-width: 768px) {
.elements-section {
padding: 2rem 1rem;
}
.styles-carousel-section, .doors-section, .materials-showcase-section {
padding: 2rem;
}

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-content {
        padding: 2rem 1.5rem 4rem;
    }
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    border-top: 2px solid #c7a17a;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-consent-text {
    color: #e0e0e0;
}

.cookie-consent-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #c7a17a;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 0.8rem;
}

.cookie-consent-text a {
    color: #c7a17a;
    text-decoration: underline;
    transition: color 0.3s;
}

.cookie-consent-text a:hover {
    color: #d4b48f;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: #c7a17a;
    color: white;
}

.cookie-btn-accept:hover {
    background: #d4b48f;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: #c0c0c0;
    border: 2px solid rgba(199, 161, 122, 0.5);
}

.cookie-btn-reject:hover {
    background: rgba(199, 161, 122, 0.1);
    border-color: #c7a17a;
}

.cookie-btn-settings {
    background: transparent;
    color: #c7a17a;
    border: 2px solid #c7a17a;
}

.cookie-btn-settings:hover {
    background: rgba(199, 161, 122, 0.1);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: #1a1a1a;
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    border: 2px solid rgba(199, 161, 122, 0.3);
}

.cookie-settings-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(199, 161, 122, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-header h2 {
    color: #c7a17a;
    font-size: 1.8rem;
}

.cookie-settings-close {
    background: none;
    border: none;
    color: #c0c0c0;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-close:hover {
    color: #c7a17a;
}

.cookie-settings-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(199, 161, 122, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category h3 {
    color: #e0e0e0;
    font-size: 1.3rem;
}

.cookie-category p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-toggle {
    position: relative;
    width: 60px;
    height: 30px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #444;
    transition: 0.4s;
    border-radius: 30px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked+.cookie-toggle-slider {
    background-color: #c7a17a;
}

.cookie-toggle input:checked+.cookie-toggle-slider:before {
    transform: translateX(30px);
}

.cookie-toggle input:disabled+.cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-settings-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(199, 161, 122, 0.2);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1.5rem;
    }

    .cookie-consent-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cookie-consent-buttons {
        justify-content: stretch;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-settings-content {
        max-height: 90vh;
    }

    .cookie-settings-body {
        padding: 1.5rem;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* 404 Error Page */
.error-404-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    padding: 2rem;
    text-align: center;
}

.error-404-content {
    max-width: 600px;
}

.error-404-title {
    font-size: 10rem;
    font-weight: 700;
    color: var(--accent-wood);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(199, 161, 122, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.error-404-subtitle {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.error-404-text {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.error-404-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .error-404-title {
        font-size: 6rem;
    }

    .error-404-subtitle {
        font-size: 1.8rem;
    }

    .error-404-text {
        font-size: 1rem;
    }

    .error-404-buttons {
        flex-direction: column;
    }

    .error-404-buttons .btn-primary,
    .error-404-buttons .btn-secondary {
        width: 100%;
    }
}

/* Accessories Section Styles */
.accessories-section {
    padding: 6rem 4rem;
    background: var(--dark-bg);
}

.accessories-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.2rem;
    color: #c0c0c0;
    line-height: 1.8;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.accessory-card {
    background: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(199, 161, 122, 0.2);
    transition: all 0.4s ease;
    text-align: center;
}

.accessory-card:hover {
    border-color: var(--accent-wood);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(199, 161, 122, 0.3);
    background: rgba(42, 42, 42, 0.9);
}

.accessory-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(199, 161, 122, 0.2), rgba(199, 161, 122, 0.1));
    border: 2px solid rgba(199, 161, 122, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-wood);
    transition: all 0.4s ease;
}

.accessory-card:hover .accessory-icon {
    background: linear-gradient(135deg, var(--accent-wood), #d4b48f);
    border-color: var(--accent-wood);
    color: var(--primary-white);
    transform: scale(1.1) rotate(5deg);
}

.accessory-icon svg {
    width: 45px;
    height: 45px;
}

.accessory-card h3 {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.accessory-card > p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.accessory-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(199, 161, 122, 0.2);
}

.accessory-features li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.accessory-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-wood);
    font-weight: bold;
    font-size: 1.1rem;
}

.accessories-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(199, 161, 122, 0.1);
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.accessories-cta p {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .accessories-section {
        padding: 4rem 1.5rem;
    }

    .accessories-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .accessories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .accessory-card {
        padding: 2rem 1.5rem;
    }

    .accessory-icon {
        width: 70px;
        height: 70px;
    }

    .accessory-icon svg {
        width: 40px;
        height: 40px;
    }

    .accessory-card h3 {
        font-size: 1.3rem;
    }

    .accessory-card > p {
        font-size: 1rem;
    }

    .accessories-cta {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .accessories-section {
        padding: 3rem 1rem;
    }

    .accessory-card {
        padding: 1.5rem 1rem;
    }

    .accessory-features li {
        font-size: 0.9rem;
    }
}

/* Animation on scroll */
@media (prefers-reduced-motion: no-preference) {
    .accessory-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .accessory-card:nth-child(1) { animation-delay: 0.1s; }
    .accessory-card:nth-child(2) { animation-delay: 0.2s; }
    .accessory-card:nth-child(3) { animation-delay: 0.3s; }
    .accessory-card:nth-child(4) { animation-delay: 0.4s; }
    .accessory-card:nth-child(5) { animation-delay: 0.5s; }
    .accessory-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Stats Counter Section */
.stats-counter-section {
    position: relative;
    padding: 6rem 4rem;
    background: linear-gradient(135deg, rgba(199, 161, 122, 0.08) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(199, 161, 122, 0.08) 100%);
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(199, 161, 122, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(199, 161, 122, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(42, 42, 42, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(199, 161, 122, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(199, 161, 122, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--accent-wood);
    box-shadow: 
        0 20px 60px rgba(199, 161, 122, 0.25),
        inset 0 0 30px rgba(199, 161, 122, 0.05);
    background: rgba(42, 42, 42, 0.7);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(199, 161, 122, 0.2), rgba(199, 161, 122, 0.05));
    border: 2px solid rgba(199, 161, 122, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-wood);
    transition: all 0.4s ease;
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-wood);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, var(--accent-wood), #d4b48f);
    border-color: var(--accent-wood);
    color: var(--primary-white);
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(199, 161, 122, 0.4);
}

.stat-item:hover .stat-icon::after {
    opacity: 1;
    transform: scale(1.3);
    opacity: 0;
}

.stat-icon svg {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon svg {
    transform: scale(1.1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-wood), #d4b48f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    display: inline-block;
}

.stat-suffix {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-wood);
    opacity: 0.8;
}

.stat-label {
    font-size: 1.1rem;
    color: #c0c0c0;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Particle effect on hover */
.stat-item::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-wood);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    opacity: 0;
    animation: particle 2s infinite;
}

@keyframes particle {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -200%) scale(1.5);
    }
}

.stat-item:hover::after {
    animation: particle 1.5s ease-out infinite;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-counter-section {
        padding: 4rem 1.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2.5rem 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-suffix {
        font-size: 2rem;
        right: 20px;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon svg {
        width: 30px;
        height: 30px;
    }
}
.dropdown:hover .chevron {
  transform: rotate(180deg);
}

.chevron {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}


.chevron svg {
    width: 100%;
    height: 100%;
}

/* Mobile Responsive - improved dropdown */
@media (max-width: 950px) {
    .chevron {
        display: inline-flex;
        align-items: center;
        justify-content: center;
right: 0;
top: 16px;
    }

    /* Rotate chevron when dropdown is active */
    .dropdown.active > a .chevron {
        transform: rotate(180deg);
    }

    nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1002;
        overflow-y: auto;
        gap: 0;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        max-width: 300px;
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Stagger animation for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.4s; }

    /* Regular nav links */
    .nav-links > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(199, 161, 122, 0.1);
    }

    /* Dropdown specific styles */
    .dropdown {
        position: relative;
    }

    .dropdown > a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 100%;
        cursor: pointer;
    }

    /* Remove the ::after underline effect on mobile dropdown toggle */
    .dropdown > a::after {
        display: none;
    }

    /* Dropdown content - hidden by default */
    .dropdown-content {
        position: static;
        display: block;
        max-height: 0;
        overflow: hidden;
        background: rgba(15, 15, 15, 0.95);
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        border-radius: 0;
        transition: max-height 0.4s ease, padding 0.3s ease;
        width: 100%;
    }

    /* Dropdown content when active */
    .dropdown.active .dropdown-content {
        max-height: 400px;
        padding: 0.5rem 0;
        border-top: 1px solid rgba(199, 161, 122, 0.2);
        border-bottom: 1px solid rgba(199, 161, 122, 0.2);
    }

    .dropdown-content a {
        display: block;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        color: #c0c0c0;
        text-align: center;
        transition: all 0.2s ease;
        border-bottom: none;
    }

    .dropdown-content a:hover,
    .dropdown-content a:active {
        color: var(--accent-wood);
        background: rgba(199, 161, 122, 0.1);
    }

    /* Close button */
    .close-menu {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        margin: 0 !important;
        max-width: none !important;
        width: auto !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .close-button {
        background: none;
        border: none;
        width: 44px;
        height: 44px;
        position: relative;
        cursor: pointer;
        padding: 0;
        border-radius: 50%;
        transition: background 0.3s ease;
    }

    .close-button:hover,
    .close-button:active {
        background: rgba(199, 161, 122, 0.2);
    }

    .close-button span {
        position: absolute;
        width: 24px;
        height: 2px;
        background: #e0e0e0;
        top: 50%;
        left: 50%;
        transition: all 0.3s ease;
    }

    .close-button span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .close-button span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .close-button:hover span,
    .close-button:active span {
        background: var(--accent-wood);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* CTA button in mobile menu */
    .nav-links li:last-child {
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .nav-links .cta-button {
        display: block;
        text-align: center;
        padding: 1rem 2rem;
        width: 100%;
    }
}

/* Desktop - ensure dropdown content doesn't have mobile styles */
@media (min-width: 951px) {
    .close-menu {
        display: none !important;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        max-height: none;
        overflow: visible;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}