:root {
    --primary: #0C3326; /* Deeper Emerald Green for luxury contrast */
    --secondary: #BFA15F; /* Refined Gold rather than bright gold */
    --bg-light: #FBFBFA; /* Warm off-white instead of cold grey-white */
    --text-dark: #1F2421;
    --text-muted: #6C726F;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* --- TYPOGRAPHY UPGRADE --- */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.subtitle {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 34px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* --- TOP BAR --- */
.top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    padding: 12px 0;
    letter-spacing: 0.5px;
}

.top-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    align-items: center;
}

.contact-links, .social-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-links span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary);
}

/* --- NAVIGATION --- */
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #ECEBE6;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.logo span {
    font-weight: 500;
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--secondary);
}

nav ul li a.active-link {
    color: var(--secondary);
}

.nav-cta {
    background: var(--secondary);
    color: var(--primary) !important;
    padding: 10px 20px;
    border-radius: 2px;
}

.nav-cta:hover {
    background: var(--primary);
    color: var(--white) !important;
}

/* --- HAMBURGER BUTTON --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 10002;
    margin-right: -10px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
    height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(12, 51, 38, 0.85) 40%, rgba(31, 36, 33, 0.6)), 
                url('BACKGROUND.png') no-repeat center center/cover;
    color: var(--white);
    padding: 0 20px;
}

.hero-content {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 550px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 20px;
}

/* --- ABOUT STYLES --- */
.about-section {
    background: #F4F3EF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
    z-index: 2;
    position: relative;
}

.gold-accent-box {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    border-left: 2px solid var(--secondary);
    border-top: 2px solid var(--secondary);
    z-index: 1;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-text h2 span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Added Styling for the new Value Propositions */
.about-features {
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--secondary);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.text-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-link:hover {
    color: var(--secondary);
    gap: 15px;
}

/* --- PREMIUM PRODUCTS ROW --- */
.products-section {
    background: var(--bg-light);
}

.product-category-row {
    margin-bottom: 60px;
    border-top: 1px solid #EAE9E2;
    padding-top: 30px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.category-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.see-more-btn {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.see-more-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--white);
    border: 1px solid transparent;
    border-radius: 2px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    border-color: #EAE9E2;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.product-img {
    height: 180px;
    overflow: hidden;
    background: #F3F4F6;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.04);
}

.product-content {
    padding: 16px;
    background: var(--white);
    text-align: center;
}

.product-content h4 {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

/* --- CONTACT STYLES --- */
.contact-section {
    background: #F4F3EF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.contact-details {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: center;
    font-weight: 500;
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--secondary);
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #EAE9E2;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    transition: var(--transition);
    background: #FBFBFA;
    font-weight: 300;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
}

/* --- FOOTER STYLES --- */
footer {
    background: #111413;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h6 {
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* === TABLET (max 992px) === */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .hero-content h1 { font-size: 3rem; }
    .container { padding: 60px 20px; }
}

/* === MOBILE (max 768px) === */
@media (max-width: 768px) {

    /* Top Bar - Hide on mobile as we have floating buttons */
    .top-bar { display: none; }
    .top-container { flex-direction: column; gap: 8px; text-align: center; }

    /* Header & Logo */
    header { height: 74px; display: block; }
    .nav-container { padding: 0 16px; width: 100%; height: 100%; display: flex; align-items: center; justify-content: space-between; }
    .logo-img { height: 44px; width: auto; }
    .logo { font-size: 1.25rem; gap: 6px; }
    .logo span { font-size: 1.1rem; }

    /* Hamburger Menu */
    .hamburger { display: flex; }

    nav#mainNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.2, 0.8, 0.3, 1);
        z-index: 10001;
        padding-top: 100px; /* Space for the header height */
    }

    nav#mainNav.active { 
        right: 0; 
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 10000;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    nav#mainNav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 30px;
    }

    nav#mainNav ul li {
        border-bottom: 1px solid #f0f0ec;
    }

    nav#mainNav ul li a {
        display: block;
        padding: 22px 0;
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    nav#mainNav ul li:last-child a.nav-cta {
        display: inline-block;
        margin-top: 30px;
        width: 100%;
        text-align: center;
        background: var(--secondary);
        color: var(--primary) !important;
        padding: 15px;
        border-radius: 4px;
        text-transform: uppercase;
        font-size: 0.85rem;
    }

    /* Hero */
    .hero { height: auto; min-height: 60vh; padding: 60px 16px; }
    .hero-content h1 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 16px; }
    .hero-content p { font-size: 0.95rem; margin-bottom: 28px; }
    .cta-group { flex-direction: column; gap: 12px; }
    .cta-group .btn { text-align: center; justify-content: center; width: 100%; }

    /* Section Headers */
    .section-header h2, .about-text h2 { font-size: 2rem; }
    .section-header { margin-bottom: 35px; }
    .subtitle { font-size: 0.7rem; letter-spacing: 2px; }

    /* About */
    .about-grid { gap: 30px; }
    .about-text p { font-size: 0.9rem; }
    .gold-accent-box { width: 80px; height: 80px; top: -10px; left: -10px; }
    .container { padding: 50px 16px; }

    /* Products */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-img { height: 140px; }
    .product-content { padding: 12px 10px; }
    .product-content h4 { font-size: 0.72rem; }
    .product-category-row { margin-bottom: 40px; padding-top: 20px; }
    .category-header h3 { font-size: 1.4rem; }
    .see-more-btn { font-size: 0.65rem; padding: 8px 14px; }

    /* Contact */
    .contact-grid { gap: 30px; }
    .contact-form { padding: 28px 20px; }
    .form-group input, .form-group select, .form-group textarea {
        padding: 14px 12px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    .detail-item--clickable { padding: 12px 14px; }
    .detail-icon { width: 38px; height: 38px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
    footer { padding: 50px 0 20px; }
    .footer-brand p { max-width: 100%; }

    /* Modal */
    .modal-content { padding: 28px 20px; width: 92%; }
    #modal-title { font-size: 22px; }
    #modal-text { font-size: 14px; }
}

/* === SMALL MOBILE (max 576px) === */
@media (max-width: 576px) {
    .products-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; gap: 12px; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero { min-height: 55vh; padding: 50px 14px; }
    .logo-img { height: 42px; }
    .logo { font-size: 1.15rem; }
    .section-header h2, .about-text h2 { font-size: 1.7rem; }
    .btn { padding: 12px 24px; font-size: 0.75rem; }
    .category-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .contact-details { gap: 12px; }
    .top-bar { display: none; } /* Hide top bar on very small screens for cleaner UX */
}

/* Product Modal Styles */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #c5a059; /* Standard soft gold color often used as a secondary in dark metal themes */
}

#modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

#modal-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-cta {
    display: inline-flex;
    text-decoration: none;
    font-weight: 500;
}

/* --- TOPBAR CLICKABLE LINKS --- */
.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    padding: 2px 0;
}

.topbar-link:hover {
    color: #fff;
}

.topbar-whatsapp svg {
    color: #25D366;
    fill: #25D366;
}

.topbar-whatsapp:hover {
    color: #25D366;
}

/* --- CONTACT SECTION CLICKABLE ITEMS --- */
.detail-item--clickable {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 18px;
    border-radius: 6px;
    border: 1px solid #EAE9E2;
    transition: var(--transition);
    cursor: pointer;
}

.detail-item--clickable:hover {
    border-color: var(--secondary);
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.detail-item--clickable strong {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.detail-item--clickable span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.detail-icon--call {
    background: #0C3326;
}

.detail-icon--whatsapp {
    background: #25D366;
}

/* --- FLOATING ACTION BUTTONS --- */
.floating-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9000;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

.float-btn--call {
    background: var(--secondary);
}

.float-btn--whatsapp {
    background: #25D366;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 18px;
        right: 18px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }
}


/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- SMOOTH SCROLL --- */
html {
    scroll-behavior: smooth;
}

/* --- FORM SUCCESS STATE --- */
#formSubmitBtn:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}
