/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER - BLACK BACKGROUND ===== */
header {
    background: #000000;
    color: #fff;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #cc0000;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* ===== BRAND WITH LOGO ===== */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.85rem;
    color: #cccccc;
    letter-spacing: 1px;
    font-weight: 300;
}

/* ===== HEADER PHONE ===== */
.header-phone a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    background: #cc0000;
    padding: 8px 18px;
    border-radius: 30px;
    transition: background 0.3s ease;
    display: inline-block;
    border: 1px solid #cc0000;
}

.header-phone a:hover {
    background: #990000;
    border-color: #990000;
}

/* ============================================
   OFF-CANVAS HAMBURGER MENU (Mobile)
   ============================================ */

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px 5px;
    z-index: 1002;
    position: relative;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* Hamburger Animation to X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== OVERLAY ===== */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* ===== OFF-CANVAS MENU (Half Side) ===== */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #000000;
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 80px 30px 30px;
    overflow-y: auto;
    border-left: 3px solid #cc0000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
}

.main-nav.open {
    right: 0;
}

/* Menu Close Button */
.menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 2px solid #333;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1003;
    line-height: 1;
}

.menu-close:hover {
    transform: rotate(90deg);
    border-color: #cc0000;
    color: #cc0000;
}

.menu-close.show {
    display: block;
}

/* ===== MENU LINKS ===== */
.main-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.main-nav ul li {
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.main-nav.open ul li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation for menu items */
.main-nav.open ul li:nth-child(1) { transition-delay: 0.05s; }
.main-nav.open ul li:nth-child(2) { transition-delay: 0.10s; }
.main-nav.open ul li:nth-child(3) { transition-delay: 0.15s; }
.main-nav.open ul li:nth-child(4) { transition-delay: 0.20s; }
.main-nav.open ul li:nth-child(5) { transition-delay: 0.25s; }
.main-nav.open ul li:nth-child(6) { transition-delay: 0.30s; }

.main-nav ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    border-left: 3px solid transparent;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background: #1a1a1a;
    color: #cc0000;
    border-left-color: #cc0000;
    padding-left: 25px;
}

/* ===== DESKTOP NAVIGATION ===== */
@media (min-width: 769px) {
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        border-left: none;
        box-shadow: none;
        overflow-y: visible;
        transition: none;
    }

    .main-nav ul {
        flex-direction: row;
        gap: 8px;
    }

    .main-nav ul li {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .main-nav ul li a {
        padding: 8px 14px;
        font-size: 0.95rem;
        border-left: none;
        border-radius: 4px;
        color: #ffffff;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        background: #cc0000;
        color: #ffffff;
        padding-left: 14px;
        border-left: none;
    }

    .hamburger {
        display: none !important;
    }

    .menu-close {
        display: none !important;
    }

    .overlay {
        display: none !important;
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease-in-out;
}

.slide.active .slide-bg {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 32px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-content .btn-primary {
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SLIDER DOTS ===== */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.dot.active {
    background: #cc0000;
    border-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.5);
}

/* ===== SLIDER ARROWS ===== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #cc0000;
    border-color: #cc0000;
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.4);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: #cc0000;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #cc0000;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.4);
}

.btn-primary:hover {
    background: #990000;
    border-color: #990000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(204, 0, 0, 0.5);
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #cc0000;
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #cc0000;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ===== ABOUT ===== */
.about {
    background: #fafafa;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    aspect-ratio: 1/1;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-content {
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.placeholder-img {
    font-size: 10rem;
    background: #f0f0f0;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 2px solid #eee;
}

/* ===== WINE COLLECTION ===== */
.collection {
    background: #ffffff;
}

.collection-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(204, 0, 0, 0.12);
    border-color: #cc0000;
}

.collection-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.05);
}

.collection-card-image .card-icon {
    font-size: 4rem;
}

.collection-card-content {
    padding: 20px 24px 24px;
}

.collection-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.collection-card-content p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 16px;
}

.btn-call {
    display: inline-block;
    background: #cc0000;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #cc0000;
    width: 100%;
    text-align: center;
}

.btn-call:hover {
    background: #990000;
    border-color: #990000;
    transform: scale(1.02);
}

/* ===== SPECIAL OFFERS SLIDER ===== */
.offers {
    background: #fafafa;
    padding: 80px 0;
}

.offers-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.offers-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.offer-slide {
    display: none;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    animation: fadeSlide 0.6s ease;
}

.offer-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.offer-slide-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-slide:hover .offer-slide-image img {
    transform: scale(1.05);
}

.offer-slide-image .offer-icon {
    font-size: 5rem;
}

.offer-slide-content {
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.offer-slide-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.offer-slide-content p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-offer {
    display: inline-block;
    background: #cc0000;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #cc0000;
    text-align: center;
    align-self: flex-start;
}

.btn-offer:hover {
    background: #990000;
    border-color: #990000;
    transform: scale(1.05);
}

.offers-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers-arrow:hover {
    background: #cc0000;
    border-color: #cc0000;
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.4);
}

.offers-arrow.prev-offer {
    left: 0;
}

.offers-arrow.next-offer {
    right: 0;
}

.offers-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.offer-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.offer-dot:hover {
    background: #a0a0a0;
    transform: scale(1.1);
}

.offer-dot.active {
    background: #cc0000;
    border-color: #cc0000;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials {
    background: #ffffff;
    padding: 80px 0;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-set {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    animation: fadeTestimonial 0.6s ease;
}

.testimonial-set.active {
    display: grid;
}

@keyframes fadeTestimonial {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-card {
    background: #fafafa;
    padding: 30px 24px;
    border-radius: 16px;
    border-top: 4px solid #cc0000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #f5a623;
}

.testimonial-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 700;
    color: #cc0000;
    display: block;
    text-align: right;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow:hover {
    background: #cc0000;
    border-color: #cc0000;
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.4);
}

.testimonial-arrow.prev-testimonial {
    left: 0;
}

.testimonial-arrow.next-testimonial {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-dot:hover {
    background: #a0a0a0;
    transform: scale(1.1);
}

.testimonial-dot.active {
    background: #cc0000;
    border-color: #cc0000;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.3);
}

/* ===== CONTACT ===== */
.contact {
    background: #fafafa;
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.business-rating {
    margin-bottom: 16px;
}

.business-rating h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rating .stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating .rating-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.rating .review-count {
    font-size: 0.95rem;
    color: #666;
}

.contact-info > p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1rem;
    color: #1a1a1a;
}

.contact-item .contact-icon {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #cc0000;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.contact-social span {
    color: #1a1a1a;
    font-weight: 500;
}

.contact-social a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-social a:hover {
    color: #cc0000;
}

.contact-map {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 280px;
}

.map-buttons {
    display: flex;
    gap: 12px;
    padding: 14px 0 0;
    flex-wrap: wrap;
}

.btn-map {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    flex: 1;
    text-align: center;
    min-width: 140px;
}

.btn-map:hover {
    background: #cc0000;
    color: #ffffff;
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.2);
}

.btn-map-directions {
    background: #f5f5f5;
    border-color: #ddd;
}

.btn-map-directions:hover {
    background: #cc0000;
    color: #ffffff;
    border-color: #cc0000;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-form > p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    transition: border 0.3s ease;
    font-family: inherit;
    background: #fafafa;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #cc0000;
    background: #ffffff;
}

.contact-form .btn-primary {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 14px 30px;
    text-align: center;
}

/* ===== FOOTER ===== */
footer {
    background: #000000;
    color: #cccccc;
    padding: 50px 0 0;
    border-top: 3px solid #cc0000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-brand-sub {
    font-size: 0.75rem;
    color: #aaaaaa;
    letter-spacing: 1px;
    font-weight: 300;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bbbbbb;
    margin-bottom: 6px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-stars {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
}

.footer-rating-text {
    font-size: 0.9rem;
    color: #aaaaaa;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #cc0000;
    border-radius: 2px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbbbbb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: #cc0000;
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #bbbbbb;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact ul li .footer-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact ul li a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: #cc0000;
}

.footer-social p {
    font-size: 0.95rem;
    color: #bbbbbb;
    line-height: 1.8;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 2px solid #333;
    text-decoration: none;
}

.social-icon svg {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: #cc0000;
}

.social-icon.instagram:hover {
    background: #E4405F;
    border-color: #E4405F;
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-icon.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-icon:hover svg {
    fill: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    margin-top: 0;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888888;
}

.footer-bottom .footer-tagline {
    color: #cc0000;
    font-weight: 300;
}

.footer-powered {
    font-size: 0.85rem;
    color: #777777;
}

.footer-powered a {
    color: #cc0000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-powered a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ===== FLOATING WHATSAPP ICON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: #20b85a;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-container {
        max-width: 400px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .collection-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .offer-slide.active {
        grid-template-columns: 1fr;
    }
    
    .offer-slide-image {
        height: 280px;
    }
    
    .offer-slide-content {
        padding: 30px 25px;
    }
    
    .testimonial-set.active {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider-wrapper {
        padding: 0 50px;
    }
    
    .offers-slider-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    /* ===== OFF-CANVAS MENU ===== */
    .hamburger {
        display: flex;
    }

    .main-nav {
        right: -100%;
        width: 75%;
        padding: 80px 25px 30px;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        gap: 4px;
    }

    .main-nav ul li a {
        padding: 12px 18px;
        font-size: 1rem;
    }

    .menu-close.show {
        display: block;
    }

    /* ===== HEADER ===== */
    .header-phone {
        margin-left: auto;
        margin-right: 10px;
    }

    .header-phone a {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .brand-name {
        font-size: 1.1rem;
    }
    
    .brand-sub {
        font-size: 0.65rem;
    }
    
    .brand-logo {
        height: 35px;
    }

    /* ===== HERO ===== */
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }

    /* ===== SECTIONS ===== */
    .section {
        padding: 50px 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }

    /* ===== COLLECTION ===== */
    .collection-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .collection-card-image {
        height: 180px;
    }
    
    .collection-card-content {
        padding: 16px 18px 20px;
    }
    
    .collection-card-content h3 {
        font-size: 1.1rem;
    }
    
    .collection-card-content p {
        font-size: 0.9rem;
    }

    /* ===== OFFERS ===== */
    .offers-slider-wrapper {
        padding: 0 40px;
    }
    
    .offer-slide-image {
        height: 220px;
    }
    
    .offer-slide-content {
        padding: 25px 20px;
    }
    
    .offer-slide-content h3 {
        font-size: 1.3rem;
    }
    
    .offer-slide-content p {
        font-size: 0.95rem;
    }
    
    .offers-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .offer-dot {
        width: 10px;
        height: 10px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonial-set.active {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonials-slider-wrapper {
        padding: 0 40px;
    }
    
    .testimonial-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }

    /* ===== CONTACT ===== */
    .contact-info {
        padding: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .contact-map iframe {
        height: 220px;
    }
    
    .map-buttons {
        flex-direction: column;
    }
    
    .btn-map {
        min-width: 100%;
    }
    
    .business-rating h3 {
        font-size: 1.3rem;
    }

    /* ===== FOOTER ===== */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-rating {
        justify-content: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    
    .footer-powered {
        margin-top: 4px;
    }

    /* ===== WHATSAPP ===== */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        width: 85%;
        padding: 70px 20px 20px;
    }

    .main-nav ul li a {
        padding: 10px 16px;
        font-size: 0.95rem;
    }

    .header-phone a {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .brand-name {
        font-size: 0.95rem;
    }
    
    .brand-sub {
        font-size: 0.6rem;
    }
    
    .brand-logo {
        height: 30px;
    }

    .hero-slider {
        height: 60vh;
        min-height: 350px;
    }
    
    .slide-content h1 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }

    .btn-primary {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .collection-grid-6 {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .collection-card-image {
        height: 200px;
    }
    
    .collection-card-content {
        padding: 18px 20px 22px;
    }
    
    .btn-call {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .offers-slider-wrapper {
        padding: 0 30px;
    }
    
    .offer-slide-image {
        height: 180px;
    }
    
    .offer-slide-content {
        padding: 20px 16px;
    }
    
    .offer-slide-content h3 {
        font-size: 1.1rem;
    }
    
    .offer-slide-content p {
        font-size: 0.9rem;
    }
    
    .btn-offer {
        font-size: 0.9rem;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
    
    .offers-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .offer-dot {
        width: 8px;
        height: 8px;
        gap: 8px;
    }

    .testimonials-slider-wrapper {
        padding: 0 30px;
    }
    
    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .testimonial-dot {
        width: 8px;
        height: 8px;
        gap: 8px;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }

    .contact-info {
        padding: 18px;
    }
    
    .contact-form {
        padding: 18px;
    }
    
    .contact-item {
        font-size: 0.95rem;
    }
    
    .contact-map iframe {
        height: 180px;
    }
    
    .rating .stars {
        font-size: 0.9rem;
    }
    
    .rating .rating-number {
        font-size: 1rem;
    }

    footer {
        padding: 30px 0 0;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-brand-name {
        font-size: 1.2rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 360px) {
    .brand-name {
        font-size: 0.85rem;
    }
    
    .header-phone a {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .main-nav {
        width: 90%;
        padding: 60px 15px 15px;
    }
    
    .main-nav ul li a {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}