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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #801316;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(128, 19, 22, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #dcad70;
}

.navbar {
    padding: 15px 0;
}

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

.logo h2 {
    color: #dcad70;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav-menu a:hover {
    color: #dcad70;
}

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

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

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

.slider {
    position: relative;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

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

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 19, 22, 0.4);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.cta-btn {
    display: inline-block;
    background: #dcad70;
    color: #801316;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: #c49a5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 173, 112, 0.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.slider-nav button {
    background: rgba(128, 19, 22, 0.7);
    color: white;
    border: 2px solid #dcad70;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background: rgba(220, 173, 112, 0.8);
    color: #801316;
}

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

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

.dot.active {
    background: #dcad70;
    transform: scale(1.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #dcad70;
    margin-bottom: 15px;
    position: relative;
}

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

.section-title p {
    font-size: 1.1rem;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #801316;
    color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-section h3,
.mission-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #dcad70;
    margin-bottom: 20px;
}

.story-section p,
.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(220, 173, 112, 0.1);
    border: 2px solid #dcad70;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(220, 173, 112, 0.2);
    box-shadow: 0 10px 25px rgba(220, 173, 112, 0.2);
}

.feature i {
    font-size: 3rem;
    color: #dcad70;
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 1.3rem;
    color: #dcad70;
    margin-bottom: 15px;
}

.feature p {
    color: #f0f0f0;
    line-height: 1.6;
}

.about-images {
    display: flex;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr 1fr;
    gap: 15px;
    height: 500px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #dcad70;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #dcad70;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Menu Section */
.menu {
    background: rgba(220, 173, 112, 0.05);
    color: #fff;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #dcad70;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.menu-category h3 i {
    color: #dcad70;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.menu-item-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(220, 173, 112, 0.1);
    border: 2px solid #dcad70;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.menu-item-simple:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 173, 112, 0.2);
    background: rgba(220, 173, 112, 0.15);
}

.item-name {
    font-size: 1.1rem;
    color: #f0f0f0;
    font-weight: 500;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dcad70;
    background: rgba(220, 173, 112, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #dcad70;
}

/* Gallery Section */
.gallery {
    background: #801316;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    border: 3px solid #dcad70;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 19, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: #dcad70;
}

/* Videos Section */
.videos {
    background: rgba(220, 173, 112, 0.05);
    color: #fff;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.video-item {
    position: relative;
    background: rgba(220, 173, 112, 0.1);
    border: 2px solid #dcad70;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 173, 112, 0.2);
}

.video-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 742px;
    background: rgba(128, 19, 22, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-overlay i {
    font-size: 3rem;
    color: #dcad70;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 50%;
}

.video-item h4 {
    padding: 20px;
    font-size: 1.2rem;
    color: #dcad70;
    text-align: center;
}

/* Why Us Section */
.why-us {
    background: #801316;
    color: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.why-us-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(220, 173, 112, 0.1);
    border: 2px solid #dcad70;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(220, 173, 112, 0.2);
    background: rgba(220, 173, 112, 0.15);
}

.why-us-item .icon {
    width: 80px;
    height: 80px;
    background: #dcad70;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.why-us-item:hover .icon {
    transform: scale(1.1);
}

.why-us-item .icon i {
    font-size: 2rem;
    color: #801316;
}

.why-us-item h3 {
    font-size: 1.3rem;
    color: #dcad70;
    margin-bottom: 15px;
}

.why-us-item p {
    color: #f0f0f0;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: rgba(220, 173, 112, 0.05);
    color: #fff;
}

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

.faq-item {
    background: rgba(220, 173, 112, 0.1);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #dcad70;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(220, 173, 112, 0.1);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(220, 173, 112, 0.2);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #dcad70;
    margin: 0;
}

.faq-question i {
    color: #dcad70;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: #f0f0f0;
    line-height: 1.6;
}

/* Clients Section */
.clients {
    background: #801316;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.clients .section-title {
    margin-bottom: 60px;
}

.clients .section-title h2 {
    color: #dcad70;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.clients .section-title p {
    color: #f0f0f0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 15px;
    background: rgba(220, 173, 112, 0.05);
    padding: 20px;
    border: 2px solid rgba(220, 173, 112, 0.2);
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-item {
    min-width: 100%;
    background: rgba(220, 173, 112, 0.1);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #dcad70;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #dcad70;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-style: italic;
    color: #f0f0f0;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.rating i {
    color: #dcad70;
    font-size: 1.2rem;
}

.customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #dcad70;
    object-fit: cover;
}

.customer-details h4 {
    color: #dcad70;
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.customer-details .location {
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.customer-details .location i {
    color: #dcad70;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    background: rgba(220, 173, 112, 0.2);
    color: #dcad70;
    border: 2px solid #dcad70;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: #dcad70;
    color: #801316;
    transform: scale(1.1);
}

.testimonial-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(220, 173, 112, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot.active {
    background: #dcad70;
    border-color: #dcad70;
    transform: scale(1.2);
}

/* Auto-scroll animation for multiple testimonials */
@media (min-width: 768px) {
    .testimonial-item {
        min-width: calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .testimonial-item {
        min-width: calc(33.333% - 20px);
    }
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonial-item {
        padding: 30px 20px;
        min-width: 100%;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .customer-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .customer-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-nav {
        gap: 15px;
        margin-top: 30px;
    }
    
    .testimonial-btn {
        padding: 10px 12px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .clients .section-title h2 {
        font-size: 2rem;
    }
    
    .testimonial-item {
        padding: 25px 15px;
    }
    
    .testimonial-item::before {
        font-size: 3rem;
        top: -5px;
        left: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .customer-details h4 {
        font-size: 1.1rem;
    }
}

/* Smooth animations */
.testimonial-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-item.visible {
    opacity: 1;
    transform: translateY(0);
}

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


/* Contact Section */
.contact {
    background: rgba(220, 173, 112, 0.05);
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 2rem;
    color: #dcad70;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.3rem;
    color: #dcad70;
    margin-bottom: 10px;
}

.info-item p {
    color: #f0f0f0;
    line-height: 1.6;
}

.contact-form {
    background: rgba(220, 173, 112, 0.1);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid #dcad70;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #dcad70;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 15px;
    border: 2px solid #dcad70;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(220, 173, 112, 0.1);
    color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dcad70;
    background: rgba(220, 173, 112, 0.2);
}

.form-group:last-child {
    margin-bottom: 0;
}

.submit-btn {
    width: 100%;
    background: #dcad70;
    color: #801316;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #c49a5a;
    transform: translateY(-2px);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #dcad70;
}

/* Footer */
.footer {
    background: #4a0d0f;
    color: white;
    padding: 60px 0 20px;
    border-top: 3px solid #dcad70;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #dcad70;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    color: #dcad70;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dcad70;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #dcad70;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #801316;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c49a5a;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #dcad70;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.call-btn,
.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid #dcad70;
}

.call-btn {
    background: #dcad70;
    color: #801316;
}

.call-btn:hover {
    background: #c49a5a;
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.1);
}

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 19, 22, 0.95);
/*    animation: fadeIn 0.3s ease;*/
}

.popup-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
/*
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
*/
.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #dcad70;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #dcad70;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(128, 19, 22, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
        border-top: 2px solid #dcad70;
    }

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

    .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);
    }

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

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

    .section-title h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 300px;
    }

    .main-image {
        grid-column: 1 / -1;
    }

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

    .menu-items {
        grid-template-columns: 1fr;
    }

    .menu-item {
        flex-direction: column;
    }

    .menu-item img {
        width: 100%;
        height: 200px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .form-group {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .clients-slider {
        flex-direction: column;
        animation: none;
    }

    .client-item {
        min-width: auto;
    }

    .fixed-buttons {
        right: 15px;
        bottom: 15px;
    }

    .call-btn,
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo h2 {
        font-size: 1.4rem;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

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

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

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

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        height: 400px;
    }

    .main-image {
        grid-column: 1;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}