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

:root {
    --black: #000000;
    --wine-red: #B32727;
    --gold: #C7A86F;
    --white: #FFFFFF;
    --cream: #FAF5EF;
    --charcoal: #1A1A1A;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.section-title.center {
    text-align: center;
}

.section-title.white {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.8);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(199, 168, 111, 0.3);
}

.btn-gold:hover {
    background: #B8965C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 168, 111, 0.4);
}

.btn-product {
    background: var(--wine-red);
    color: var(--white);
    width: 100%;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(179, 39, 39, 0.2);
}

.btn-product:hover {
    background: #9A2020;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(179, 39, 39, 0.3);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1588168333986-5078d3ae3976?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(179, 39, 39, 0.3) 100%);
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

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

/* ABOUT SECTION */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-content {
    padding-right: 20px;
}

.about-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-text strong {
    color: var(--wine-red);
    font-weight: 600;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--cream) 0%, #E8DDD0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* PRODUCTS SECTION */
.products {
    padding: 100px 0;
    background: var(--cream);
}

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

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image .image-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8DDD0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: var(--gold);
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.product-title-id {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 1rem;
    font-style: italic;
}

.product-description {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* WHY CHOOSE SECTION */
.why-choose {
    padding: 100px 0;
    background: var(--charcoal);
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(199, 168, 111, 0.2);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, #B8965C 100%);
    border-radius: 50%;
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* DELIVERY SECTION */
.delivery {
    padding: 100px 0;
    background: var(--white);
}

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

.delivery-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.delivery-card:hover {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.delivery-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--wine-red);
    box-shadow: 0 4px 15px rgba(179, 39, 39, 0.15);
}

.delivery-title {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.delivery-text {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.delivery-card .btn {
    margin-top: 10px;
}

/* FOOTER */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.footer-tagline {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link {
    color: var(--gold);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

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

    .about-content {
        padding-right: 0;
    }

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

@media (max-width: 640px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .about,
    .products,
    .why-choose,
    .delivery {
        padding: 60px 0;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* SMOOTH SCROLLING */
html {
    scroll-behavior: smooth;
}

/* SELECTION COLOR */
::selection {
    background: var(--gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--gold);
    color: var(--white);
}

/* MODAL STYLES */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: var(--white);
    margin: 20px;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: var(--wine-red);
}

.modal-title {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* FORM STYLES */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

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

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* PAYMENT INFO SECTION */
.payment-info {
    background: var(--cream);
    padding: 25px;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid var(--gold);
}

.payment-title {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bank-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 1rem;
}

.bank-item {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bank-item strong {
    display: block;
    color: var(--wine-red);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.bank-item p {
    font-size: 0.875rem;
    color: var(--charcoal);
    margin: 0.25rem 0;
    font-weight: 600;
}

.payment-note {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    font-style: italic;
    margin-top: 1rem;
}

/* SUBMIT BUTTON */
.btn-submit {
    background: var(--wine-red);
    color: var(--white);
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(179, 39, 39, 0.3);
    margin-top: 1.5rem;
}

.btn-submit:hover {
    background: #9A2020;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(179, 39, 39, 0.4);
}

/* MODAL RESPONSIVE */
@media (max-width: 640px) {
    .modal-content {
        padding: 30px 20px;
        margin: 10px;
    }

    .modal-title {
        font-size: 2rem;
    }

    .bank-info {
        grid-template-columns: 1fr;
    }

    .close {
        right: 15px;
        top: 15px;
    }
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float svg {
    fill: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--charcoal);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--charcoal);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 80px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* FLOATING BUTTON RESPONSIVE */
@media (max-width: 640px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}
