:root {
    --primary-wood: #3d2b1f;
    --secondary-wood: #5d4037;
    --accent-orange: #e67e22;
    --bg-light: #fdfaf6;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --slate: #4a4a4a;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    line-height: 1.2;
}

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

/* Header */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-weight: 600;
}

.cta-button {
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    max-width: 900px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-orange);
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-wood);
}

.offers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.offer-card {
    flex: 0 1 350px;
    /* Base size */
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Force 3+2 on Desktop */
@media (min-width: 1024px) {
    .offer-card {
        flex: 0 1 calc(33.333% - 30px);
        max-width: 380px;
    }
}

/* Tablets 2 per row */
@media (max-width: 1023px) and (min-width: 768px) {
    .offer-card {
        flex: 0 1 calc(50% - 20px);
    }
}

/* Mobile 1 per row */
@media (max-width: 767px) {
    .offer-card {
        flex: 0 1 100%;
    }
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(61, 43, 31, 0.1);
    border-color: var(--accent-orange);
}

.offer-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-wood), var(--accent-orange));
}

.offer-card i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: block;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-wood);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .container>* {
    animation: fadeIn 1s ease forwards;
}

.hero h1 {
    animation-delay: 0.2s;
}

.hero p {
    animation-delay: 0.4s;
}

.hero .cta-button {
    animation-delay: 0.6s;
}

.products-section {
    padding: 80px 0;
    background: #f4f4f4;
}

/* --- Product Carousel --- */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

.products-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 20px 0 40px;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE/Edge */
}

.products-carousel::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.product-card {
    flex: 0 0 calc(33.333% - 14px);
    /* Show 3 cards on desktop */
    min-width: 280px;
    height: 450px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #e0e0e0;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
    pointer-events: none;
}

.product-info h3 {
    margin: 0;
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info p {
    margin: 10px 0 0;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--accent-orange);
    width: 35px;
    border-radius: 6px;
}

/* Mobile Adjustments for Carousel */
@media (max-width: 768px) {
    .product-card {
        flex: 0 0 85%;
        height: 400px;
    }
}

/* Trust Bar */
.trust-bar {
    background: var(--primary-wood);
    color: white;
    padding: 15px 0;
    text-align: center;
}

.trust-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.trust-item img {
    width: 32px;
    height: 32px;
    mix-blend-mode: screen;
    transition: var(--transition);
}

.trust-item:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Contact/Location Section */
.location-section {
    padding: 80px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.info-box h2 {
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 15px;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #fcfcfc;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-header .google-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    font-weight: 600;
}

.reviews-header .google-rating i {
    color: #4285F4;
    /* Google Blue */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-user .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
}

.user-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.user-info span {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-info i {
    color: var(--accent-orange);
    font-size: 0.8rem;
}

.stars {
    color: #FFB300;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: #444;
    line-height: 1.6;
    font-size: 1.05rem;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Map Section */
.map-container {
    height: 450px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

/* Final CTA */
.final-cta {
    background: var(--accent-orange);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Modal / Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

/* Footer */
footer {
    padding: 40px 0;
    background: var(--text-dark);
    color: #888;
    text-align: center;
}

/* Certifications Section */
.cert-section {
    padding: 100px 0;
    background: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: start;
}

.cert-content h3 {
    font-size: 2rem;
    color: var(--primary-wood);
    margin-bottom: 20px;
}

.cert-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--slate);
}

.nom-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cert-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cert-card {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-orange);
}

.cert-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
}

.cert-card span {
    font-weight: 700;
    color: var(--primary-wood);
    font-size: 0.9rem;
    display: block;
}

.ht-icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fdf6f0;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 5px solid var(--accent-orange);
}

.ht-icon-box i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.ht-icon-box div strong {
    display: block;
    color: var(--primary-wood);
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: #fdfaf6;
}

.comparison-wrapper {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
}

.comp-header {
    background: var(--primary-wood);
    color: white;
    padding: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comp-header.feature {
    justify-content: flex-start;
    padding-left: 40px;
}

.comp-header.maret {
    background: var(--accent-orange);
}

.comp-row {
    display: contents;
}

.comp-cell {
    padding: 25px 40px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.comp-cell.feature {
    color: var(--primary-wood);
    font-weight: 700;
}

.comp-cell.value {
    justify-content: center;
    text-align: center;
}

.comp-cell.maret-value {
    background: rgba(230, 126, 34, 0.03);
    color: var(--accent-orange);
    font-weight: 800;
}

.comp-cell i.fa-check-circle {
    color: #27ae60;
    font-size: 1.5rem;
}

.comp-cell i.fa-times-circle {
    color: #e74c3c;
    font-size: 1.5rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .comp-cell {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .comp-header {
        font-size: 0.8rem;
        padding: 15px;
    }
}

/* Technical Details Section */
.tech-details {
    padding: 80px 0;
    background: white;
}

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

.tech-item {
    text-align: center;
    padding: 30px;
    background: #fcfcfc;
    border-radius: 20px;
    border: 1px dashed #ddd;
}

.tech-item h4 {
    color: var(--accent-orange);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tech-item p {
    font-weight: 600;
    color: var(--primary-wood);
}

/* Navigation & Hamburger Menu */
.nav-toggle {
    display: block;
    /* Visible on all screen sizes */
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-wood);
    z-index: 2000;
    transition: var(--transition);
}

.nav-toggle:hover {
    color: var(--accent-orange);
    transform: scale(1.1);
}

.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2500;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 100px 40px;
}

.nav-overlay.active {
    right: 0;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-wood);
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
    display: block;
}

.nav-menu a:hover {
    color: var(--accent-orange);
    transform: translateX(10px);
}

.nav-menu a.active {
    color: var(--accent-orange);
}

.nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--primary-wood);
    cursor: pointer;
}

@media (max-width: 480px) {
    .nav-overlay {
        width: 100%;
    }
}

/* Utilities */
.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 50px;
    }

    .contact-info .phone {
        display: none;
    }
}