:root {
    --color-primary: #047857;
    /* Emerald 700 */
    --color-primary-dark: #065f46;
    /* Emerald 800 */
    --color-accent: #d4af37;
    /* Gold */
    --color-accent-light: #fcd34d;
    /* Amber 300 */
    --color-text: #1e293b;
    /* Slate 800 */
    --color-text-light: #64748b;
    /* Slate 500 */
    --color-bg: #f8fafc;
    /* Slate 50 */
    --color-white: #ffffff;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;

    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn--gold {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn--gold:hover {
    background-color: #bfa030;
    transform: translateY(-2px);
}

.btn--block {
    display: block;
    width: 100%;
}

.section {
    padding: 5rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0.5rem auto 0;
}

.section__subtitle {
    color: var(--color-text-light);
    font-size: 1.125rem;
}

/* Header */
.header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__image {
    max-height: 70px;
    width: auto;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-weight: 500;
    color: var(--color-text);
}

.nav__link:hover:not(.btn) {
    color: var(--color-primary);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    background-color: #450a0a;
    /* Dark Red */
}

.hero__bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(127, 29, 29, 0.45), rgba(69, 10, 10, 0.6));
    z-index: 1;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* If we had an image, it would be here with object-fit cover and z-index 0 */

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about__card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.about__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about__icon {
    width: 60px;
    height: 60px;
    background-color: rgba(4, 120, 87, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.about__card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about__card p {
    color: var(--color-text-light);
}

/* Products Section */
.products {
    background-color: var(--color-white);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-card__image-placeholder {
    height: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e2e8f0;
    color: #94a3b8;
    gap: 1rem;
}

.product-card__image-placeholder span {
    font-weight: 600;
    font-size: 1.2rem;
}

.product-card__content {
    padding: 1.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-card p {
    color: var(--color-text-light);
}

/* Testimonials */
.testimonials {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.testimonials .section__title,
.testimonials .section__subtitle {
    color: var(--color-white);
}

.testimonials .section__title::after {
    background-color: var(--color-accent);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
}

.testimonial__text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial__info strong {
    display: block;
    font-size: 1.1rem;
}

.testimonial__info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact */
.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact__info {
    font-size: 1.1rem;
}

.contact__title {
    text-align: left;
    margin-left: 0;
}

.contact__title::after {
    margin: 0.5rem 0 0;
}

.contact__list {
    margin-top: 2rem;
}

.contact__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact__list li i {
    width: 40px;
    height: 40px;
    background-color: rgba(4, 120, 87, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__form {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}

.form-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.option-label {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400 !important;
}

.option-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: #0f172a;
    /* Slate 900 */
    color: var(--color-white);
    padding: 3rem 0;
    text-align: center;
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__brand p {
    color: #94a3b8;
    /* Slate 400 */
    font-size: 0.9rem;
}

.footer__social {
    display: flex;
    gap: 1.5rem;
}

.footer__social a {
    color: var(--color-white);
    font-size: 1.5rem;
    opacity: 0.7;
}

.footer__social a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer__links {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer__links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

/* Legal Content Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-body);
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-primary-dark);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
    padding: 1.5rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    border-top: 4px solid var(--color-primary);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner__text {
    flex: 1 1 600px;
    font-size: 0.95rem;
    color: var(--color-text);
}

.cookie-banner__buttons {
    display: flex;
    gap: 1rem;
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn--outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .cookie-banner__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner__buttons {
        width: 100%;
    }

    .cookie-banner__buttons .btn {
        flex: 1;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact__info {
        text-align: center;
    }

    .contact__title {
        text-align: center;
        margin: 0 auto 1rem;
    }

    .contact__title::after {
        margin: 0.5rem auto 0;
    }

    .contact__list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav__list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
    }

    .nav__list.active {
        display: flex;
    }

    .nav__toggle {
        display: block;
    }

    .hero__title {
        font-size: 2rem;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}