
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden; 
    background-color: #fcf9f5;
    color: #333;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    border: none;
    width: 100%;
}

.main-header {
    background-color: #fff;
    border-bottom: 2px solid #d97736;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    background: linear-gradient(135deg, #bd5a24, #d97736);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #9e4313;
}

.logo-area h1 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #4a2711;
    line-height: 1.1;
}

.logo-area p {
    font-size: 0.75rem;
    color: #d97736;
    font-weight: 600;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    margin-left: 25px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #d97736;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #d97736;
    background-color: #faefe6;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-tag.center {
    display: table;
    margin: 0 auto 12px auto;
}

.section-title { 
    text-align: center; 
    font-size: 2.2rem; 
    color: #2b160a; 
    margin-bottom: 5px; 
}

.section-subtitle { 
    text-align: center; 
    color: #666; 
    margin-bottom: 40px; 
}


.heritage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.image-wrapper {
    position: relative;
}

.featured-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.badge-experience {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background-color: #d97736;
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(217, 119, 54, 0.4);
    text-align: center;
}

.badge-experience h3 { font-size: 1.5rem; font-weight: 700; }
.badge-experience p { font-size: 0.8rem; opacity: 0.9; }

.text-content h2 {
    font-size: 2.2rem;
    color: #2b160a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-content p {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 15px;
}


.inventory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #ebdcd0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(163, 103, 64, 0.1);
}

.card-img-holder img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body { padding: 25px; }
.card-body h3 { font-size: 1.25rem; color: #3b1e0e; margin-bottom: 20px; }

.product-list { list-style: none; }
.product-list li {
    padding: 12px 0;
    border-top: 1px solid #f5ece6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: #555;
}

.product-list li i {
    color: #d97736;
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.product-list li:hover i { transform: translateX(4px); }

.brand-spotlight img,
[class*="spotlight"] img {
    width: 100% !important;
    max-width: 450px !important;
    height: auto !important;
    border-radius: 12px !important;
    object-fit: cover !important;
    display: block !important;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 25px;
}

.feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #d97736;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.feature-item h3 { font-size: 1.15rem; color: #2b160a; margin-bottom: 12px; }
.feature-item p { font-size: 0.9rem; color: #666; line-height: 1.6; }
.cta-banner {
    display: block !important;
    background-color: #3b1e0e !important; 
    padding: 80px 20px !important;
    text-align: center !important;
    color: #fff !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.cta-banner .cta-content {
    width: 100% !important;
    max-width: 1200px !important; 
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 2 !important;
}

.cta-banner h2 {
    color: #fff !important;
    font-size: 2rem !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

.cta-banner p {
    color: #fff !important;
    opacity: 0.9 !important;
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.btn-cta {
    background-color: #fff;
    color: #bd5a24;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: background-color 0.2s, transform 0.2s;
}

.btn-cta:hover {
    background-color: #faefe6;
    transform: scale(1.02);
}


.contact-card-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background-color: #fff;
    border: 1px solid #ebdcd0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    align-items: stretch; 
    padding: 50px 45px !important; 
    box-sizing: border-box !important;
}

.contact-info-panel {
    padding-left: 10px !important;
    padding-right: 15px !important;
    display: flex;
    flex-direction: column;
}

.contact-info-panel h3 { 
    font-size: 1.5rem; 
    color: #2b160a; 
    margin-top: 5px !important;
    margin-bottom: 35px !important; 
}

.info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-row:last-of-type {
    margin-bottom: 0;
}

.info-icon {
    background-color: #faefe6;
    color: #d97736;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-row h4 { font-size: 0.82rem; color: #d97736; font-weight: 700; letter-spacing: 0.5px; }
.info-row p { font-size: 0.95rem; color: #444; margin-top: 2px; }
.closed-tag { color: #c23b22; font-weight: 600; font-size: 0.85rem; }

.maps-graphic-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.top-interior-img img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.maps-graphic-panel iframe { 
    border-radius: 8px; 
    height: 100% !important;
    min-height: 320px;
    flex-grow: 1;
}

.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s;
}

.whatsapp-sticky:hover { transform: scale(1.1); }

.modal-backdrop {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 99999;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background-color: #fff;
    width: 100%;
    max-width: 520px;
    padding: 35px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(-30px);
    transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-box {
    transform: translateY(0);
}

.modal-close-times {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    font-size: 1.8rem; color: #888;
    cursor: pointer;
}

.modal-box h2 { font-size: 1.6rem; color: #2b160a; margin-bottom: 8px; }
.modal-box p { font-size: 0.88rem; color: #666; margin-bottom: 25px; line-height: 1.5; }

.form-group-item { margin-bottom: 18px; }
.form-group-item label { display: block; font-size: 0.75rem; font-weight: 700; color: #333; margin-bottom: 6px; }

.form-group-item input, 
.form-group-item select, 
.form-group-item textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ebdcd0;
    background-color: #faf7f5;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #333;
    outline: none;
}

.form-group-item input:focus, 
.form-group-item select:focus, 
.form-group-item textarea:focus {
    border-color: #d97736;
    background-color: #fff;
}

.btn-submit-form {
    width: 100%;
    background-color: #d97736;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(217, 119, 54, 0.3);
}

.btn-submit-form:hover { background-color: #bd5a24; }

.corporate-footer {
    background-color: #2b160a;
    color: #fff;
    padding: 30px 20px;
    border-top: 4px solid #bd5a24;
    font-size: 0.85rem;
    
    /* True 100% Viewport Breakout Elements */
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.corporate-footer > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.85;
}

.meta-subtext { opacity: 0.6; font-size: 0.78rem; margin-top: 4px; }
.footer-right-info { text-align: right; }

@media(max-width: 992px) {
    .inventory-grid, 
    .features-grid, 
    .heritage-grid, 
    .contact-card-box {
        grid-template-columns: 1fr;
    }
    
    .contact-card-box { 
        padding: 35px 20px !important; 
    }
    
    .contact-info-panel {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .footer-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 15px; 
    }
    
    .footer-right-info { 
        text-align: center; 
    }
}

