@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Figtree:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

:root {
    --background: #FFFFFF;
    --foreground: #212529;
    --primary: #CE1212;
    --primary-foreground: #FFFFFF;
    --secondary: #F8F9FA;
    --secondary-foreground: #212529;
    --accent: #CE1212;
    --accent-foreground: #FFFFFF;
    --surface: #FFFFFF;
    --border: #E9ECEF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Figtree', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    -webkit-font-smoothing: antialiased;
    padding-top: 80px;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; font-weight: 600; }

::selection { background-color: var(--primary); color: var(--primary-foreground); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--secondary); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #B01010; }

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 40;
    background: white; transition: all 0.3s;
}
.site-header.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); border-bottom: 1px solid var(--border); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo-link { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-link img { height: 56px; width: auto; }
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--foreground);font-weight:600; }
.desktop-nav { display: flex; align-items: center; gap: 1.5rem; }
.desktop-nav a { text-decoration: none; font-size: 1rem; font-weight: 600; color: rgba(33,37,41,0.7); transition: color 0.3s; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.75rem; color: var(--foreground); cursor: pointer; }
.mobile-menu { display: none; background: white; border-top: 1px solid var(--border); padding: 1.5rem 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; text-decoration: none; font-size: 1.125rem; font-weight: 600; color: rgba(33,37,41,0.7); padding: 0.5rem 0; }
.mobile-menu a.active { color: var(--primary); }

@media (max-width: 1023px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .logo-text {font-size: 1.5rem;   }
}
@media (min-width: 640px) { .logo-text { display: block; } }

/* Floating icons */
.floating-social { position: fixed; left: 1rem; top: 50%; transform: translateY(-50%); z-index: 50; display: flex; flex-direction: column; gap: 0.75rem; }
.floating-social a { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.3s; }
.floating-social a:hover { transform: scale(1.1); }

.floating-whatsapp { position: fixed; right: 1rem; bottom: 1.5rem; z-index: 50; }
.floating-whatsapp a { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; background: #25D366; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: transform 0.3s; }
.floating-whatsapp a:hover { transform: scale(1.1); }

/* Hero banners */
.hero-banner { position: relative; height: 40vh; min-height: 300px; display: flex; align-items: center; justify-content: center; background: var(--primary); overflow: hidden; }
.hero-banner .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.hero-banner .bg-img { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.3; }
.hero-banner .content { position: relative; z-index: 10; text-align: center; color: white; padding: 0 1rem; }
.hero-banner h1 { font-size: 2.5rem; font-weight: 600; margin-bottom: 1rem; }
.hero-banner .subtitle { color: rgba(255,255,255,0.8); font-size: 1.125rem; }

@media (min-width: 640px) { .hero-banner h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-banner h1 { font-size: 3.75rem; } }

/* Carousel */
.carousel { position: relative; height: 50vh; min-height: 350px; max-height: 450px; overflow: hidden; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; }
.carousel-slide.active { opacity: 1; z-index: 10; }
.carousel-slide .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.carousel-slide .bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.carousel-slide .slide-content { position: relative; z-index: 10; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; color: white; padding: 0 1rem; }
.carousel-badge { display: inline-block; background: var(--primary); padding: 0.5rem 1rem; border-radius: 9999px; font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.carousel-slide h1 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; line-height: 1.2; margin-bottom: 0.5rem; }
.carousel-slide p { font-size: 1.125rem; color: rgba(255,255,255,0.9); font-family: 'Cormorant Garamond', serif; }
@media (min-width: 640px) { .carousel-slide h1 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .carousel-slide h1 { font-size: 3rem; } }

.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 48px; height: 48px; background: rgba(255,255,255,0.2); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; cursor: pointer; transition: background 0.3s; backdrop-filter: blur(4px); }
.carousel-btn:hover { background: rgba(255,255,255,0.3); }
.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

.carousel-indicators { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 0.75rem; }
.carousel-indicators button { width: 12px; height: 12px; border-radius: 9999px; border: none; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.carousel-indicators button.active { background: var(--primary); width: 32px; }

/* Section utilities */
.section-badge { display: block !important; background: rgba(206,18,18,0.1); color: var(--primary); padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.section-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.875rem; font-weight: 600; color: var(--foreground); margin-bottom: 1.5rem; }
.section-subhead{ font-family: 'Cormorant Garamond', serif; font-size: 1.575rem; font-weight: 600; color: var(--foreground); margin-bottom: 1.5rem; }
@media (min-width: 640px) { .section-heading { font-size: 2.25rem; } }

/* Product thumbnails */
.product-thumb { cursor: pointer; border: 2px solid var(--border); border-radius: 0.75rem; padding: 0.5rem; transition: all 0.3s; background: white; }
.product-thumb:hover, .product-thumb.selected { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(206,18,18,0.2); }
.product-thumb img { width: 100%; height: 64px; object-fit: contain; }
.product-thumb p { text-align: center; font-size: 0.875rem; font-weight: 600; margin-top: 0.5rem; color: var(--foreground); }

.product-main-img { border: 2px solid var(--border); border-radius: 1.5rem; overflow: hidden; background: #f9fafb; margin-bottom: 1.5rem; }
.product-main-img img { width: 100%; height: 350px; object-fit: contain; transition: all 0.3s; }

/* Feature tag */
.feature-tag { display: inline-block; background: rgba(206,18,18,0.1); color: var(--primary); padding: 0.5rem 1rem; border-radius: 9999px; font-size: 1rem; font-weight: 500; }

/* Benefit list */
.benefit-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.benefit-icon { width: 24px; height: 24px; background: rgba(206,18,18,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: var(--primary); font-size: 0.75rem; }

/* Footer */
.site-footer { background: var(--foreground); color: white; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 3rem 1rem; display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: repeat(4, 1fr); } }
.footer-brand p { color: rgba(255,255,255,0.6); line-height: 1.75; text-align: justify; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; 
        justify-content: center; color: white; transition: background 0.3s; text-decoration:none !important;}
.footer-social a:hover { background: var(--primary); color:#fff !important;}
.footer-heading { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; font-weight: 600; margin-bottom: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact .icon { color: var(--primary); margin-top: 2px; }
.footer-contact span, .footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1rem; }
.footer-contact a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 1rem; max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 1rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 2rem; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-card { background: white; border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); border: 1px solid var(--border); cursor: pointer; transition: all 0.3s; }
.gallery-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transform: translateY(-4px); }
.gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.3s; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card .info { padding: 1.25rem; }
.gallery-card .info h3 { font-family: 'Figtree', sans-serif; font-size: 1.125rem; font-weight: 600; }
.gallery-card .info p { font-size: 0.875rem; color: var(--primary); margin-top: 0.25rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; padding: 1rem; }
.lightbox.open { display: flex; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; width: 48px; height: 48px; background: rgba(255,255,255,0.2); border: none; border-radius: 50%; color: white; font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-content { max-width: 900px; width: 100%; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 0.5rem; }
.lightbox-content .caption { margin-top: 1rem; }
.lightbox-content .caption h3 { color: white; font-size: 1.25rem; font-weight: 600; font-family: 'Figtree', sans-serif; }
.lightbox-content .caption p { color: rgba(255,255,255,0.7); }

/* Value card */
.value-card { display: flex; align-items: flex-start; gap: 0.75rem; background: rgba(248,249,250,0.5); padding: 1rem; border-radius: 0.75rem; }
.value-card .check { width: 24px; height: 24px; background: rgba(206,18,18,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.value-card .check i { color: var(--primary); font-size: 0.75rem; }
.value-card h4 { font-family: 'Figtree', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--foreground); }
.value-card p { color: rgba(33,37,41,0.7); font-size: 1rem; }

/* Mission stat */
.stat-item { text-align: center; }
.stat-item .num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; color: var(--primary); }
@media (min-width: 1024px) { .stat-item .num { font-size: 3rem; } }
.stat-item .label { color: rgba(33,37,41,0.6); margin-top: 0.5rem; }

/* Mission card (dark bg) */
.mission-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); border-radius: 1rem; padding: 1.5rem; transition: background 0.3s; }
.mission-card:hover { background: rgba(255,255,255,0.15); }
.mission-card .icon-wrap { width: 48px; height: 48px; background: rgba(253,224,71,0.2); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: #FDE047; font-size: 1.25rem; }
.mission-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
.mission-card p { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.75; text-align: justify; }

/* CEO section */
.ceo-card { background: rgba(248,249,250,0.5); border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--border); }
.ceo-grid { display: grid; }
@media (min-width: 768px) { .ceo-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.ceo-img { height: 300px; background: #f9fafb; display: flex; align-items: center; justify-content: center; }
@media (min-width: 768px) { .ceo-img { height: 450px; } }
.ceo-img img { width: 100%; height: 100%; object-fit: contain; }
.ceo-info { padding: 2rem; }
@media (min-width: 1024px) { .ceo-info { padding: 3rem; } }
.ceo-badge { display: inline-block; background: rgba(206,18,18,0.1); color: var(--primary); padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }

/* Director grid */
.director-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .director-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .director-grid { grid-template-columns: repeat(5, 1fr); gap: 2rem; } }
.director-card { text-align: center; }
.director-card .img-wrap { position: relative; overflow: hidden; border-radius: 1rem; border: 2px solid var(--border); margin-bottom: 1rem; transition: all 0.3s; }
.director-card:hover .img-wrap { border-color: var(--primary); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.director-card .img-wrap .ratio { aspect-ratio: 3/4; overflow: hidden; background: #f3f4f6; }
.director-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.director-card:hover .img-wrap img { transform: scale(1.05); }
.director-card .img-wrap .name-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 1rem; }
.director-card .img-wrap .name-overlay h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: white; }
.director-card .img-wrap .name-overlay p { color: rgba(255,255,255,0.9); font-size: 1rem; font-weight: 500; }

/* Form */
.form-input { width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem; border: 1px solid var(--border); background: var(--surface); color: var(--foreground); font-size: 1rem; font-family: 'Figtree', sans-serif; transition: border-color 0.3s; outline: none; }
.form-input:focus { border-color: var(--primary); }
textarea.form-input { resize: none; }

.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--primary); color: white; padding: 0.875rem 2rem; border-radius: 9999px; font-size: 1rem; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.btn-primary:hover { opacity: 0.9; }

.btn-whatsapp { display: inline-flex; align-items: center; gap: 0.75rem; background: #25D366; color: white; padding: 1rem 2rem; border-radius: 9999px; font-weight: 600; font-size: 1.125rem; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.btn-whatsapp:hover { background: #20BD5A; }

/* Contact info card */
.contact-card { background: rgba(248,249,250,0.5); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; transition: border-color 0.3s; }
.contact-card:hover { border-color: rgba(206,18,18,0.3); }
.contact-card .icon-box { width: 56px; height: 56px; background: rgba(206,18,18,0.1); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); font-size: 1.25rem; }

/* Quality card */
.quality-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border-radius: 1rem; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.2); text-align: center; }
.quality-card h3 { font-family: 'Figtree', sans-serif; font-weight: 600; font-size: 1.125rem; margin-bottom: 0.5rem; }
.quality-card p { color: rgba(255,255,255,0.7); }

/* About info cards */
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; text-align: center; }
.info-card .icon-circle { width: 64px; height: 64px; background: rgba(206,18,18,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.info-card .icon-circle i { color: var(--primary); font-size: 1.25rem; }
.info-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.info-card p { color: rgba(33,37,41,0.7); font-size: 0.875rem; text-align: justify; }

.display-6{
    font-family: 'Cormorant Garamond';
    font-size:18px;
    font-weight: 600;
}

.subtitle1 {
    background: var(--primary);;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
}

.modal .modal-body p{
    line-height:1.75rem;
    font-size:14px;
}

.modal .modal-body li{
    line-height:1.75rem;
    font-size:14px;
}

.modal .modal-body .custom-list li::before {
    content: "\f00c"; /* Font Awesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    
    position: absolute;
    left: 0;
    top: 2px;

    width: 20px;
    height: 20px;
    line-height: 20px;

    background: #CC0000; /* RED */
    color: #fff;
    text-align: center;

    border-radius: 50%;
    font-size: 10px;
}

@media (max-width: 768px) {
    p {
        font-size: 15px !important;
    }

    .product-thumb img {
        width: 90%;
        height: 54px;
        object-fit: contain;
    }

    .card-img-top {
        width: 90%;
        height: 50px;
        object-fit: contain;
    }
    
    dl{font-size: 15px !important;}
     .hero_img{height:250px !important;}
     
    .section {margin-top:-40px;}
}

dl {
    margin: 0;
    padding: 0;
    font-size:18px;
    font-weight:400;
    line-height:2.25rem;
    text-align: justify;
}

dt {
    font-weight: 600;
    color: #CC0000;
    margin-top: 10px;
    font-family:'Figtree' ;
    font-size: 17px;
}

dd {
    margin-left: 0;
    margin-bottom: 10px;
    color: #666;
    width:100%;
}

.hero_img{
    margin-top: -50px;
    width:100% !important;
    height:700px; 
}