* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --secondary-text: #b0b0b0;
    --accent-color: #2a2a2a;
    --gold: #d4a574;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: #0d0d0d;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    font-size: 13px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-text);
    transition: all 0.3s ease;
}

.top-bar-item i {
    color: var(--gold);
}

.whatsapp-link {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    animation: whatsapp-glow 2s ease-in-out infinite;
    cursor: pointer;
}

.whatsapp-link i {
    color: #25d366;
}

.whatsapp-link:hover {
    background-color: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
    transform: scale(1.05);
}

@keyframes whatsapp-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    }
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--secondary-text);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold);
}

/* Navigation Bar */
.navbar {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), #e8b88a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-bg);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.logo-icon i {
    position: relative;
    z-index: 1;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.5);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--light-text);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--light-text), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo-tagline {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-brand {
    letter-spacing: 0px;
}

.nav-logo:hover .logo-tagline {
    letter-spacing: 3px;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-link {
    color: var(--light-text);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 10;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.slide-text {
    flex: 1;
    animation: slideInLeft 0.8s ease-out;
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-text);
    margin-bottom: 40px;
    max-width: 500px;
}

.typewriter-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 30px;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--gold);
    animation: typing 4s steps(35, end) infinite, blink 0.6s step-end infinite;
    display: inline-block;
    padding-right: 5px;
}

@keyframes typing {
    0% {
        width: 0;
    }
    65% {
        width: 100%;
    }
    100% {
        width: 100%;
    }
}

@keyframes blink {
    0%, 49% {
        border-right-color: var(--gold);
    }
    50%, 100% {
        border-right-color: transparent;
    }
}

.cta-section {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--gold), #e8b88a);
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: 0;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-icon {
    position: relative;
    z-index: 1;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.cta-button:hover .cta-icon {
    transform: translateX(5px);
}

.cta-phone {
    font-size: 14px;
    color: var(--light-text);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-phone a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-phone a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.btn {
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--dark-bg);
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: #e8b88a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    animation: slideInRight 0.8s ease-out;
}

.slide-image img {
    width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.slide-image img:hover {
    transform: scale(1.02);
}

.slide-year {
    position: absolute;
    bottom: 60px;
    right: 80px;
    font-size: 72px;
    font-weight: 700;
    color: rgba(212, 165, 116, 0.15);
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 60px;
    left: 80px;
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(212, 165, 116, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(212, 165, 116, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: var(--gold);
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background-color: rgba(212, 165, 116, 0.6);
}

/* About Workshop Section */
.about-workshop {
    background: linear-gradient(135deg, #f5f0e8 0%, #ede8df 100%);
    padding: 80px 40px;
}

.workshop-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.workshop-image-slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workshop-slides {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 550px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.workshop-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.workshop-slide.active {
    opacity: 1;
    z-index: 10;
}

.workshop-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.workshop-slide.active img {
    animation: zoomSlide 0.6s ease;
}

@keyframes zoomSlide {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1);
    }
}

.workshop-slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.workshop-prev-btn,
.workshop-next-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(212, 165, 116, 0.9);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workshop-prev-btn:hover,
.workshop-next-btn:hover {
    background-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}

.workshop-indicators {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.workshop-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.workshop-indicator.active {
    background-color: var(--gold);
    width: 28px;
    border-radius: 6px;
}

.workshop-indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.workshop-content {
    padding: 20px;
}

.section-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--gold);
    margin-right: 12px;
}

.workshop-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 25px;
    line-height: 1.3;
}

.workshop-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(212, 165, 116, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--gold);
    color: white;
    transform: scale(1.1);
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-bg);
}

/* Services Section */
.services-section {
    background-color: var(--dark-bg);
    padding: 80px 40px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.services-header {
    padding-top: 20px;
}

.services-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.services-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--gold);
    margin-right: 12px;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.3;
    margin-bottom: 30px;
}

.services-title .highlight {
    color: var(--gold);
    display: block;
}

.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    padding: 30px 0;
}

.accordion-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    min-width: 40px;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-number {
    font-size: 24px;
}

.accordion-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--light-text);
    margin: 0;
    flex: 1;
    transition: all 0.3s ease;
}

.accordion-header:hover .accordion-title {
    color: var(--gold);
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(212, 165, 116, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-toggle {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: rotate(180deg);
}

.accordion-header:hover .accordion-toggle {
    background-color: rgba(212, 165, 116, 0.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 0;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    opacity: 1;
    padding: 0 0 25px 60px;
}

.accordion-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--secondary-text);
    margin: 0;
}

.accordion-header:hover {
    transform: translateX(10px);
}

.accordion-item.active .accordion-header {
    transform: translateX(0);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--dark-bg);
    padding: 80px 40px;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.gallery-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.gallery-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--gold);
    margin-right: 12px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.3;
    margin-bottom: 20px;
}

.gallery-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--secondary-text);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 3/4;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 165, 116, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    font-size: 40px;
    color: white;
}

.gallery-image-wrapper:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

/* Zoom Modal */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.zoom-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.zoom-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    animation: zoomIn 0.4s ease;
}

.zoom-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold);
    border: none;
    color: var(--dark-bg);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-close:hover {
    background-color: #e8b88a;
    transform: scale(1.1);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f5f0e8 0%, #ede8df 100%);
    padding: 100px 40px;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 0 0 20px 0;
}

.testimonials-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
}

.testimonials-content {
    position: relative;
    min-height: 480px;
}

.testimonial-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: all 0.6s ease;
    transform: translateX(50px);
    visibility: hidden;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    position: relative;
}

.testimonial-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 18px;
}

.testimonial-stars i {
    color: var(--gold);
}

.testimonial-text {
    margin-bottom: 35px;
}

.testimonial-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.author-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--gold);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
    animation: avatarPulse 0.6s ease;
}

.author-info {
    text-align: center;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 0;
}

.author-title {
    font-size: 14px;
    color: var(--gold);
    margin: 8px 0 0 0;
    font-weight: 600;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background-color: transparent;
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(212, 165, 116, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-indicator.active {
    background-color: var(--gold);
    width: 30px;
    border-radius: 6px;
}

.testimonial-indicator:hover {
    background-color: rgba(212, 165, 116, 0.6);
}

@keyframes avatarPulse {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Core Values Section */
.core-values-section {
    background-color: var(--dark-bg);
    padding: 100px 40px;
}

.core-values-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.values-content {
    padding-right: 40px;
}

.values-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.3;
    margin-bottom: 25px;
}

.values-title .highlight {
    color: var(--gold);
    font-style: italic;
}

.values-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.values-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.values-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-thumbnail-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 165, 116, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--gold);
    border: none;
    color: var(--dark-bg);
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.4);
}

.video-play-btn:hover {
    background-color: #e8b88a;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.6);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    animation: zoomIn 0.4s ease;
}

.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold);
    border: none;
    color: var(--dark-bg);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    background-color: #e8b88a;
    transform: scale(1.1);
}

/* Work Progress Section */
.work-progress-section {
    background: linear-gradient(135deg, #f5f0e8 0%, #ede8df 100%);
    padding: 100px 40px;
}

.work-progress-container {
    max-width: 1400px;
    margin: 0 auto;
}

.progress-header {
    text-align: center;
    margin-bottom: 80px;
}

.progress-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.progress-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 0;
}

.progress-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.progress-step {
    text-align: center;
    transition: all 0.3s ease;
}

.progress-step:hover {
    transform: translateY(-10px);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
    background-color: white;
    transition: all 0.3s ease;
}

.progress-step:hover .step-icon {
    background-color: var(--gold);
    color: white;
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.3);
}

.step-number {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.step-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Transforming Space Section */
.transforming-space-section {
    background-color: #f9f7f4;
    padding: 120px 40px;
}

.transforming-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.transform-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.transform-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--dark-bg);
    line-height: 1.2;
    margin: 0;
    text-align: right;
}

.transform-title .highlight {
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
}

.transform-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kitchen-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.kitchen-image:hover {
    transform: scale(1.05);
}

.transform-description {
    display: flex;
    align-items: center;
}

.transform-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Recent News & Articles Section */
.news-section {
    background-color: var(--dark-bg);
    padding: 100px 40px;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin-bottom: 80px;
}

.news-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--light-text);
    margin: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    background-color: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
}

.news-card:nth-child(1) {
    animation-delay: 0.1s;
}

.news-card:nth-child(2) {
    animation-delay: 0.2s;
}

.news-card:nth-child(3) {
    animation-delay: 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    margin-bottom: 25px;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 165, 116, 0.1);
    transition: all 0.4s ease;
}

.news-card:hover .news-image {
    transform: scale(1.08);
}

.news-card:hover .news-overlay {
    background-color: rgba(212, 165, 116, 0.3);
}

.news-content {
    padding: 0;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.news-author {
    color: var(--gold);
    text-transform: uppercase;
}

.news-date {
    color: var(--secondary-text);
    text-transform: uppercase;
}

.news-article-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--light-text);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.news-card:hover .news-article-title {
    color: var(--gold);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 100px 40px 0;
    color: var(--secondary-text);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

.footer-brand {
    animation: fadeInUp 0.8s ease 0.1s both;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), #e8b88a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark-bg);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.footer-brand:hover .footer-logo-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.footer-logo-text {
    margin: 0;
    padding-top: 5px;
}

.footer-logo-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--light-text);
    margin: 0 0 5px 0;
    letter-spacing: -0.5px;
}

.footer-logo-tagline {
    font-size: 11px;
    color: var(--gold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--secondary-text);
    margin-bottom: 30px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background-color: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.footer-column {
    animation: fadeInUp 0.8s ease both;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-column-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.3s ease;
}

.footer-column:hover .footer-column-title::after {
    width: 60px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-link {
    font-size: 14px;
    color: var(--secondary-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link span {
    display: block;
    position: relative;
}

.footer-link span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-link:hover span::after {
    width: 100%;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.footer-contact-info .contact-item i {
    color: var(--gold);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-info .contact-item:hover {
    transform: translateX(5px);
}

.footer-contact-info .footer-link {
    font-size: 13px;
    color: var(--secondary-text);
}

.footer-bottom {
    padding: 40px 0;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--secondary-text);
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-links-bottom {
    display: flex;
    gap: 30px;
}

.footer-bottom-link {
    font-size: 12px;
    color: var(--secondary-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--gold);
}

.footer-bottom-link:hover::after {
    width: 100%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chatbot-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #e8b88a);
    border: 3px solid rgba(212, 165, 116, 0.3);
    color: var(--dark-bg);
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4), inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: pulse-bot 2.5s ease-in-out infinite, float-bot 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine-bot 3s infinite;
}

.chatbot-toggle i {
    position: relative;
    z-index: 1;
    animation: bounce-icon 1.5s ease-in-out infinite;
}

.chatbot-toggle span {
    display: none;
    font-size: 14px;
    font-weight: 600;
}

.chatbot-toggle:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.7), inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.chatbot-widget.active .chatbot-toggle {
    animation: pulse-bot 2.5s ease-in-out infinite, float-bot 3s ease-in-out infinite, rotate-bot 0.6s ease-in-out;
}

@keyframes pulse-bot {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4), inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 10px 45px rgba(212, 165, 116, 0.8), inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    }
}

@keyframes float-bot {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes shine-bot {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes rotate-bot {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.chatbot-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.chatbot-widget.active .chatbot-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbot-header {
    background: linear-gradient(135deg, var(--gold), #e8b88a);
    color: var(--dark-bg);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--dark-bg);
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chatbot-close:hover {
    transform: rotate(90deg);
}

.chatbot-content {
    padding: 20px;
}

.chatbot-content > p {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.chatbot-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.chatbot-submit {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold), #e8b88a);
    color: var(--dark-bg);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chatbot-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.chatbot-submit:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 20px;
        right: 20px;
    }

    .chatbot-toggle {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .chatbot-box {
        width: calc(100vw - 40px);
        max-width: 380px;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design - Tablet (768px and below) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    }

    .nav-icons {
        display: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .top-bar {
        padding: 8px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        padding: 0 15px;
        font-size: 12px;
    }

    .top-bar-item {
        gap: 6px;
    }

    .social-icons {
        gap: 12px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .nav-logo i {
        font-size: 24px;
    }

    .hero-slider {
        height: 100vh;
        min-height: 600px;
    }

    .slide-content {
        flex-direction: column;
        padding: 40px 20px;
        justify-content: center;
        align-items: center;
        height: auto;
        min-height: 100vh;
    }

    .slide-text {
        text-align: center;
        margin-bottom: 30px;
        width: 100%;
    }

    .slide-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .slide-description {
        max-width: 100%;
        font-size: 14px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 12px 35px;
        font-size: 13px;
    }

    .slide-image {
        justify-content: center;
        width: 100%;
    }

    .slide-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
        border-radius: 8px;
    }

    .slide-year {
        font-size: 42px;
        bottom: 30px;
        right: 20px;
        opacity: 0.8;
    }

    .slider-controls {
        bottom: 30px;
        left: 20px;
        gap: 12px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .slider-indicators {
        bottom: 30px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 28px;
    }

    .about-workshop {
        padding: 60px 20px;
    }

    .workshop-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .workshop-image img {
        max-width: 100%;
    }

    .workshop-content {
        padding: 0;
    }

    .workshop-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .workshop-description {
        font-size: 14px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .services-section {
        padding: 60px 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .accordion-header {
        padding: 20px 0;
    }

    .accordion-item.active .accordion-header {
        padding: 25px 0;
    }

    .accordion-number {
        font-size: 16px;
    }

    .accordion-title {
        font-size: 16px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 0 20px 50px;
    }

    .accordion-content p {
        font-size: 13px;
    }

    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-header {
        margin-bottom: 50px;
    }

    .gallery-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .gallery-description {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .core-values-section {
        padding: 80px 20px;
    }

    .core-values-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .values-content {
        padding-right: 0;
    }

    .values-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .values-subtitle {
        font-size: 16px;
    }

    .values-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .work-progress-section {
        padding: 80px 20px;
    }

    .progress-header {
        margin-bottom: 60px;
    }

    .progress-title {
        font-size: 36px;
    }

    .progress-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .step-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 13px;
    }

    .transforming-space-section {
        padding: 100px 20px;
    }

    .transforming-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .transform-content {
        justify-content: center;
    }

    .transform-title {
        font-size: 40px;
        text-align: center;
    }

    .transform-description {
        justify-content: center;
    }

    .transform-description p {
        text-align: center;
        font-size: 14px;
    }

    .news-section {
        padding: 80px 20px;
    }

    .news-title {
        font-size: 36px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-image-wrapper {
        height: 280px;
    }

    .news-article-title {
        font-size: 18px;
    }

    .footer {
        padding: 60px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-logo-name {
        font-size: 20px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-column-title {
        margin-bottom: 20px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-link {
        font-size: 13px;
    }

    .testimonials-section {
        padding: 80px 20px;
    }

    .testimonials-header {
        margin-bottom: 60px;
    }

    .testimonials-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .testimonials-description {
        font-size: 15px;
    }

    .testimonials-content {
        min-height: 420px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-text p {
        font-size: 14px;
    }

    .author-avatar {
        width: 95px;
        height: 95px;
    }

    .author-name {
        font-size: 18px;
    }

    .author-title {
        font-size: 13px;
    }

    .testimonial-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Responsive Design - Small Tablet (600px and below) */
@media (max-width: 600px) {
    .top-bar {
        display: none;
    }

    .nav-container {
        padding: 0 12px;
    }

    .nav-logo {
        font-size: 18px;
    }

    .nav-logo i {
        font-size: 22px;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
    }

    .slide-content {
        padding: 30px 15px;
    }

    .slide-text {
        margin-bottom: 25px;
    }

    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 13px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .btn {
        padding: 11px 30px;
        font-size: 12px;
    }

    .slide-image img {
        max-width: 300px;
    }

    .slide-year {
        font-size: 36px;
        bottom: 25px;
        right: 15px;
    }

    .slider-controls {
        bottom: 25px;
        left: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-indicators {
        bottom: 25px;
        gap: 8px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 24px;
    }

    .about-workshop {
        padding: 50px 15px;
    }

    .workshop-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .workshop-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .features-grid {
        gap: 18px;
        margin: 25px 0;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .feature-text {
        font-size: 13px;
    }

    .services-section {
        padding: 50px 15px;
    }

    .services-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .accordion-number {
        font-size: 14px;
    }

    .accordion-title {
        font-size: 15px;
    }

    .accordion-toggle {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 0 18px 45px;
    }

    .accordion-content p {
        font-size: 12px;
    }

    .gallery-section {
        padding: 50px 15px;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .gallery-description {
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-overlay {
        font-size: 32px;
    }

    .zoom-close {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .core-values-section {
        padding: 60px 15px;
    }

    .values-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .values-subtitle {
        font-size: 15px;
    }

    .values-description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .video-modal-close {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .work-progress-section {
        padding: 60px 15px;
    }

    .progress-header {
        margin-bottom: 50px;
    }

    .progress-title {
        font-size: 28px;
    }

    .progress-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 12px;
    }

    .transforming-space-section {
        padding: 80px 15px;
    }

    .transform-title {
        font-size: 32px;
    }

    .kitchen-image {
        max-width: 400px;
    }

    .transform-description p {
        font-size: 13px;
    }

    .news-section {
        padding: 60px 15px;
    }

    .news-header {
        margin-bottom: 50px;
    }

    .news-title {
        font-size: 28px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-image-wrapper {
        height: 250px;
    }

    .news-article-title {
        font-size: 16px;
    }

    .footer {
        padding: 50px 15px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
        padding-bottom: 35px;
    }

    .footer-logo-name {
        font-size: 18px;
    }

    .footer-description {
        font-size: 12px;
    }

    .contact-label {
        font-size: 11px;
    }

    .contact-link {
        font-size: 13px;
    }

    .footer-column-title {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-link {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    .testimonials-section {
        padding: 60px 15px;
    }

    .testimonials-header {
        margin-bottom: 50px;
    }

    .testimonials-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .testimonials-description {
        font-size: 14px;
    }

    .testimonials-content {
        min-height: 400px;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-stars {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .testimonial-text p {
        font-size: 13px;
    }

    .author-avatar {
        width: 85px;
        height: 85px;
        border: 4px solid var(--gold);
    }

    .author-name {
        font-size: 16px;
    }

    .author-title {
        font-size: 12px;
    }

    .testimonial-controls {
        margin-top: 40px;
    }

    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Responsive Design - Mobile (480px and below) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .nav-logo {
        font-size: 16px;
    }

    .nav-logo i {
        font-size: 20px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
        margin: 4px 0;
    }

    .hero-slider {
        min-height: 550px;
    }

    .slide-content {
        padding: 25px 12px;
        min-height: auto;
    }

    .slide-text {
        margin-bottom: 20px;
    }

    .slide-title {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .slide-description {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .btn {
        padding: 10px 25px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .slide-image img {
        max-width: 280px;
        border-radius: 6px;
    }

    .slide-year {
        font-size: 32px;
        bottom: 20px;
        right: 12px;
    }

    .slider-controls {
        bottom: 20px;
        left: 12px;
        gap: 10px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .slider-indicators {
        bottom: 20px;
        gap: 6px;
    }

    .indicator {
        width: 7px;
        height: 7px;
    }

    .indicator.active {
        width: 20px;
    }

    .about-workshop {
        padding: 40px 12px;
    }

    .workshop-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .workshop-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .section-label {
        font-size: 11px;
    }

    .features-grid {
        gap: 15px;
        margin: 20px 0;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .feature-text {
        font-size: 12px;
    }

    .services-section {
        padding: 40px 12px;
    }

    .services-container {
        gap: 30px;
    }

    .services-title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .accordion-header {
        padding: 18px 0;
        gap: 15px;
    }

    .accordion-number {
        font-size: 13px;
        min-width: 30px;
    }

    .accordion-title {
        font-size: 14px;
    }

    .accordion-toggle {
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 0 15px 40px;
    }

    .accordion-content p {
        font-size: 11px;
        line-height: 1.6;
    }

    .gallery-section {
        padding: 40px 12px;
    }

    .gallery-header {
        margin-bottom: 35px;
    }

    .gallery-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .gallery-description {
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-overlay {
        font-size: 28px;
    }

    .zoom-modal-content {
        width: 95%;
    }

    .zoom-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: -45px;
    }

    .core-values-section {
        padding: 50px 12px;
    }

    .values-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .values-subtitle {
        font-size: 14px;
    }

    .values-description {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .video-play-btn {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: -45px;
    }

    .work-progress-section {
        padding: 50px 12px;
    }

    .progress-header {
        margin-bottom: 40px;
    }

    .progress-title {
        font-size: 24px;
    }

    .progress-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-description {
        font-size: 11px;
    }

    .transforming-space-section {
        padding: 60px 12px;
    }

    .transform-title {
        font-size: 28px;
    }

    .kitchen-image {
        max-width: 350px;
    }

    .transform-description p {
        font-size: 12px;
    }

    .news-section {
        padding: 50px 12px;
    }

    .news-header {
        margin-bottom: 40px;
    }

    .news-title {
        font-size: 24px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-image-wrapper {
        height: 220px;
        margin-bottom: 20px;
    }

    .news-article-title {
        font-size: 15px;
    }

    .news-meta {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .footer {
        padding: 40px 12px 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-logo {
        gap: 12px;
    }

    .footer-logo i {
        font-size: 35px;
    }

    .footer-logo-name {
        font-size: 16px;
    }

    .footer-logo-tagline {
        font-size: 10px;
    }

    .footer-description {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .footer-contact {
        gap: 15px;
    }

    .contact-label {
        font-size: 10px;
    }

    .contact-link {
        font-size: 12px;
    }

    .footer-column-title {
        font-size: 10px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-link {
        font-size: 11px;
    }

    .footer-copyright {
        font-size: 11px;
    }

    .testimonials-section {
        padding: 50px 12px;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonials-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .testimonials-description {
        font-size: 12px;
    }

    .testimonials-content {
        min-height: 380px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-stars {
        margin-bottom: 18px;
        font-size: 15px;
    }

    .testimonial-text p {
        font-size: 12px;
        line-height: 1.6;
    }

    .testimonial-author {
        padding-top: 20px;
    }

    .author-avatar {
        width: 80px;
        height: 80px;
        border: 4px solid var(--gold);
    }

    .author-name {
        font-size: 15px;
    }

    .author-title {
        font-size: 11px;
    }

    .testimonial-controls {
        gap: 15px;
        margin-top: 35px;
    }

    .testimonial-btn {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }

    .testimonial-indicators {
        margin-top: 25px;
        gap: 10px;
    }

    .testimonial-indicator {
        width: 10px;
        height: 10px;
    }

    .testimonial-indicator.active {
        width: 26px;
    }
}

/* Responsive Design - Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .nav-logo {
        font-size: 14px;
    }

    .nav-logo i {
        font-size: 18px;
    }

    .hamburger span {
        width: 18px;
        height: 2px;
    }

    .slide-content {
        padding: 20px 10px;
    }

    .slide-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .slide-description {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .btn {
        padding: 9px 20px;
        font-size: 10px;
    }

    .slide-image img {
        max-width: 250px;
    }

    .slide-year {
        font-size: 28px;
        bottom: 15px;
        right: 10px;
    }

    .slider-controls {
        bottom: 15px;
        left: 10px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .slider-indicators {
        bottom: 15px;
        gap: 5px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    .indicator.active {
        width: 18px;
    }

    .about-workshop {
        padding: 30px 10px;
    }

    .workshop-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .workshop-description {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .section-label {
        font-size: 10px;
    }

    .section-label::before {
        width: 20px;
        margin-right: 8px;
    }

    .features-grid {
        gap: 12px;
        margin: 15px 0;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .feature-text {
        font-size: 11px;
    }

    .services-section {
        padding: 30px 10px;
    }

    .services-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .accordion-header {
        padding: 15px 0;
        gap: 12px;
    }

    .accordion-number {
        font-size: 12px;
        min-width: 28px;
    }

    .accordion-title {
        font-size: 13px;
    }

    .accordion-toggle {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 0 12px 35px;
    }

    .accordion-content p {
        font-size: 10px;
        line-height: 1.5;
    }

    .gallery-section {
        padding: 30px 10px;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .gallery-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .gallery-description {
        font-size: 11px;
    }

    .gallery-grid {
        gap: 12px;
    }

    .gallery-overlay {
        font-size: 24px;
    }

    .zoom-modal-content {
        width: 98%;
    }

    .zoom-close {
        width: 38px;
        height: 38px;
        font-size: 16px;
        top: -40px;
    }

    .core-values-section {
        padding: 40px 10px;
    }

    .values-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .values-subtitle {
        font-size: 13px;
    }

    .values-description {
        font-size: 11px;
        margin-bottom: 18px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .video-modal-content {
        width: 98%;
    }

    .video-modal-close {
        width: 38px;
        height: 38px;
        font-size: 16px;
        top: -40px;
    }

    .work-progress-section {
        padding: 40px 10px;
    }

    .progress-header {
        margin-bottom: 35px;
    }

    .progress-label {
        font-size: 11px;
    }

    .progress-title {
        font-size: 22px;
    }

    .progress-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .step-title {
        font-size: 14px;
    }

    .step-description {
        font-size: 10px;
    }

    .transforming-space-section {
        padding: 50px 10px;
    }

    .transform-title {
        font-size: 26px;
    }

    .kitchen-image {
        max-width: 300px;
    }

    .transform-description p {
        font-size: 11px;
    }

    .news-section {
        padding: 40px 10px;
    }

    .news-header {
        margin-bottom: 35px;
    }

    .news-title {
        font-size: 22px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .news-image-wrapper {
        height: 200px;
        margin-bottom: 18px;
    }

    .news-article-title {
        font-size: 14px;
    }

    .news-meta {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .footer {
        padding: 35px 10px 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 28px;
        padding-bottom: 28px;
    }

    .footer-logo {
        gap: 10px;
    }

    .footer-logo i {
        font-size: 32px;
    }

    .footer-logo-name {
        font-size: 15px;
    }

    .footer-logo-tagline {
        font-size: 9px;
    }

    .footer-description {
        font-size: 10px;
        margin-bottom: 18px;
    }

    .footer-contact {
        gap: 12px;
    }

    .contact-label {
        font-size: 9px;
    }

    .contact-link {
        font-size: 11px;
    }

    .footer-column-title {
        font-size: 9px;
        margin-bottom: 12px;
    }

    .footer-links li {
        margin-bottom: 7px;
    }

    .footer-link {
        font-size: 10px;
    }

    .footer-copyright {
        font-size: 10px;
    }

    .testimonials-section {
        padding: 40px 10px;
    }

    .testimonials-header {
        margin-bottom: 35px;
    }

    .testimonials-label {
        font-size: 11px;
    }

    .testimonials-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .testimonials-description {
        font-size: 11px;
    }

    .testimonials-content {
        min-height: 360px;
    }

    .testimonial-card {
        padding: 25px 18px;
    }

    .testimonial-stars {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .testimonial-text p {
        font-size: 11px;
        line-height: 1.5;
    }

    .testimonial-author {
        padding-top: 18px;
    }

    .author-avatar {
        width: 75px;
        height: 75px;
        border: 4px solid var(--gold);
    }

    .author-name {
        font-size: 14px;
    }

    .author-title {
        font-size: 10px;
    }

    .testimonial-controls {
        gap: 12px;
        margin-top: 30px;
    }

    .testimonial-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .testimonial-indicators {
        gap: 8px;
        margin-top: 18px;
    }

    .testimonial-indicator {
        width: 8px;
        height: 8px;
    }

    .testimonial-indicator.active {
        width: 22px;
    }
}
