:root{
    --primary:#0e3a8a;
    --secondary:#f59e0b;
    --dark:#0f172a;
    --text:#475569;
    --light:#f8fafc;
    --white:#ffffff;
    --border:#e2e8f0;
    --success:#25D366;
    --shadow:0 15px 40px rgba(15, 23, 42, 0.08);
    --radius:22px;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color:var(--dark);
    background:#fff;
}

a{
    text-decoration:none;
    color: #f59e0b;
}

.simple-product-card{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.topbar{
    background:linear-gradient(90deg, var(--primary), #174ea6);
    color:#e5eefc;
}

.topbar-link{
    color:#fff;
    font-weight:600;
}

.main-nav{
    padding-top:12px;
    padding-bottom:12px;
}

.brand-logo{
    height:56px;
    width:auto;
}

.navbar .nav-link{
    color:var(--dark);
    font-weight:600;
    margin-left:8px;
    margin-right:8px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
    color:var(--primary);
}

.btn-brand{
    background:var(--primary);
    border:1px solid var(--primary);
    color:#fff;
    border-radius:14px;
    padding:12px 24px;
    font-weight:700;
}

.btn-brand:hover{
    background:#0b2f70;
    border-color:#0b2f70;
    color:#fff;
}

.btn-outline-brand{
    border:1px solid var(--primary);
    color:var(--primary);
    border-radius:14px;
    padding:12px 24px;
    font-weight:700;
}

.btn-outline-brand:hover{
    background:var(--primary);
    color:#fff;
}

.btn-whatsapp{
    background:var(--success);
    color:#fff;
    border:1px solid var(--success);
    border-radius:14px;
    font-weight:700;
    /*padding:12px 24px;*/
}

.btn-whatsapp:hover{
    background:#1fb958;
    color:#fff;
}

.hero-section{
    position:relative;
    overflow:hidden;
    padding:90px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(14, 58, 138, 0.12), transparent 34%),
        linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.hero-badge,
.section-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(14, 58, 138, 0.08);
    color:var(--primary);
    font-weight:700;
    font-size:14px;
}

.hero-title{
    font-size:clamp(2rem, 4vw, 3.8rem);
    line-height:1.12;
    font-weight:800;
    color:var(--dark);
}

.hero-title span{
    color:var(--secondary);
}

.hero-text{
    font-size:1.05rem;
    color:var(--text);
    max-width:650px;
}

.hero-mini-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
}

.hero-mini-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:16px;
    box-shadow:var(--shadow);
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:var(--dark);
}

.hero-mini-card i{
    color:var(--secondary);
    font-size:1.2rem;
}

.hero-form-card{
    background:#fff;
    border-radius:26px;
    padding:28px;
    box-shadow:0 20px 50px rgba(14, 58, 138, 0.15);
    border:1px solid rgba(14, 58, 138, 0.08);
}

.hero-form-header{
    margin-bottom:20px;
}

.hero-form-header p{
    color:var(--text);
}

.form-control,
.form-select{
    border-radius:14px;
    min-height:50px;
    border:1px solid var(--border);
    box-shadow:none !important;
}

.form-control:focus,
.form-select:focus{
    border-color:rgba(14, 58, 138, 0.45);
}

.section-padding{
    padding:85px 0;
}

.section-light{
    background:var(--light);
}

.section-heading{
    max-width:860px;
    margin:0 auto;
}

.section-heading h2{
    font-size:clamp(1.9rem, 3vw, 2.8rem);
    font-weight:800;
    margin-top:14px;
    margin-bottom:16px;
}

.section-heading p{
    color:var(--text);
    font-size:1.03rem;
}

.trust-strip{
    margin-top:-25px;
    position:relative;
    z-index:3;
}

.trust-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:24px 18px;
    box-shadow:var(--shadow);
    height:100%;
}

.trust-card h3{
    color:var(--primary);
    font-size:1.5rem;
    font-weight:800;
    margin-bottom:6px;
}

.trust-card p{
    margin-bottom:0;
    color:var(--text);
    font-weight:600;
}

.info-card,
.why-card,
.contact-form-card,
.calculator-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:28px;
    box-shadow:var(--shadow);
}

.accent-card{
    background:linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.icon-circle{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(245, 158, 11, 0.15);
    color:var(--secondary);
    font-size:1.4rem;
}

.info-card p,
.why-card p{
    color:var(--text);
}

.feature-list{
    padding-left:18px;
    margin-bottom:0;
}

.feature-list li{
    margin-bottom:10px;
    color:var(--text);
}

.product-card{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:28px;
    box-shadow:var(--shadow);
    transition:0.3s ease;
}

.product-card:hover{
    transform:translateY(-6px);
}

.featured-product{
    border:1px solid rgba(245, 158, 11, 0.45);
    box-shadow:0 20px 50px rgba(245, 158, 11, 0.12);
}

.featured-badge{
    position:absolute;
    top:18px;
    right:18px;
    background:var(--secondary);
    color:#fff;
    font-size:12px;
    font-weight:800;
    padding:6px 10px;
    border-radius:999px;
}

.product-icon{
    width:64px;
    height:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(14, 58, 138, 0.08);
    color:var(--primary);
    border-radius:18px;
    font-size:1.5rem;
    margin-bottom:18px;
}

.product-card h4{
    font-weight:800;
    margin-bottom:10px;
}

.product-intro{
    color:var(--text);
}

.product-block{
    margin-top:18px;
}

.product-block h6{
    font-weight:800;
    margin-bottom:10px;
    color:var(--dark);
}

.product-block p,
.product-block li{
    color:var(--text);
    font-size:0.95rem;
}

.product-block ul{
    padding-left:18px;
    margin-bottom:0;
}

.calculator-card .result-box{
    background:#f8fbff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:16px;
    height:100%;
}

.result-box small{
    display:block;
    color:var(--text);
    margin-bottom:8px;
}

.result-box h5{
    font-size:1rem;
    margin-bottom:0;
    font-weight:800;
    color:var(--primary);
}

.conditions-card{
    background:#fffdf7;
    border:1px solid #fde7b0;
    border-radius:18px;
    padding:18px;
}

.conditions-card h5{
    font-weight:800;
}

.conditions-card ul{
    padding-left:18px;
    margin-bottom:0;
}

.conditions-card li{
    color:var(--text);
    margin-bottom:8px;
}

.calculator-note{
    color:var(--text);
    font-size:0.92rem;
}

.why-card h5{
    font-weight:800;
    margin-top:14px;
    margin-bottom:10px;
}

.contact-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:18px;
    box-shadow:var(--shadow);
}

.contact-item i{
    color:var(--primary);
    font-size:1.2rem;
    margin-top:3px;
}

.contact-item h6{
    font-weight:800;
    margin-bottom:4px;
}

.contact-item p{
    color:var(--text);
}

.site-footer{
    background:#0f172a;
    color:#cbd5e1;
}

.footer-logo{
    height:56px;
    width:auto;
    background:#fff;
    padding:6px;
    border-radius:10px;
}

.site-footer h5{
    color:#fff;
    margin-bottom:18px;
    font-weight:800;
}

.footer-links,
.footer-contact{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-contact li{
    margin-bottom:12px;
}

.footer-links a{
    color:#cbd5e1;
}

.footer-links a:hover{
    color:#fff;
}

.footer-contact i{
    margin-right:8px;
    color:var(--secondary);
}

.footer-divider{
    border-color:rgba(255,255,255,0.1);
    margin:32px 0 20px;
}

.footer-policy-links{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.footer-policy-links a{
    color:#cbd5e1;
}

.footer-policy-links a:hover{
    color:#fff;
}

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:var(--success);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.9rem;
    box-shadow:0 18px 35px rgba(37, 211, 102, 0.35);
    z-index:999;
}

.whatsapp-float:hover{
    color:#fff;
    transform:scale(1.05);
}

@media (max-width: 991.98px){
    .hero-section{
        padding-top:60px;
    }

    .hero-mini-grid{
        grid-template-columns:1fr;
    }

    .brand-logo{
        height:48px;
    }

    .section-padding{
        padding:70px 0;
    }
}

@media (max-width: 767.98px){
    .hero-form-card,
    .info-card,
    .why-card,
    .contact-form-card,
    .calculator-card,
    .product-card{
        padding:22px;
    }

    .hero-title{
        font-size:2.15rem;
    }

    .whatsapp-float{
        right:16px;
        bottom:16px;
        width:58px;
        height:58px;
        font-size:1.7rem;
    }
}

.hero-slider-card{
    background:#fff;
    border-radius:26px;
    padding:20px;
    box-shadow:0 20px 50px rgba(14, 58, 138, 0.15);
    border:1px solid rgba(14, 58, 138, 0.08);
}

.hero-promo-carousel{
    position:relative;
    width:100%;
    min-height:560px;
    overflow:hidden;
    border-radius:22px;
    background:#f8fafc;
}

.hero-promo-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.8s ease, visibility 0.8s ease;
}

.hero-promo-slide.active{
    opacity:1;
    visibility:visible;
    position:relative;
}

.hero-promo-slide img{
    width:100%;
    height:560px;
    object-fit:contain;
    display:block;
    border-radius:22px;
}

.hero-promo-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.hero-promo-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#cbd5e1;
    cursor:pointer;
    transition:0.3s ease;
}

.hero-promo-dot.active{
    background:var(--primary);
    transform:scale(1.15);
}

@media (max-width: 991.98px){
    .hero-promo-carousel{
        min-height:420px;
    }

    .hero-promo-slide img{
        height:420px;
    }
}

@media (max-width: 767.98px){
    .hero-slider-card{
        padding:16px;
    }

    .hero-promo-carousel{
        min-height:360px;
    }

    .hero-promo-slide img{
        height:360px;
        object-fit:cover;
    }
}



.call-orange-link{
    color:#f59e0b !important;
    font-weight:800;
}

.call-orange-link:hover{
    color:#ffffff !important;
}

.btn-call{
    background:#f59e0b;
    border-color:#f59e0b;
    color:#fff;
}

.btn-call:hover{
    background:#d97706;
    border-color:#d97706;
    color:#fff;
}

.btn-sm{
    padding:8px 16px !important;
    border-radius:10px !important;
    font-size:0.9rem;
}





.about-hero{
    padding:80px 0;
    background:
        radial-gradient(circle at top left, rgba(245,158,11,.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(14,58,138,.12), transparent 35%),
        linear-gradient(180deg,#f9fbff 0%,#fff 100%);
}

.about-hero h1{
    font-size:clamp(2.1rem,4vw,3.5rem);
    font-weight:800;
    color:#0f172a;
    line-height:1.15;
}

.about-hero h1 span{
    color:#f59e0b;
}

.about-hero p{
    color:#475569;
    font-size:1.05rem;
    max-width:760px;
}

.about-image-card,
.team-photo-card{
    background:#fff;
    padding:16px;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(15,23,42,.1);
    border:1px solid #e2e8f0;
}

.about-image-card img,
.team-photo-card img{
    width:100%;
    height:auto;
    max-height:560px;
    object-fit:contain;
    border-radius:22px;
    display:block;
    background:#f8fafc;
    cursor:pointer;
}

.profile-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:26px;
    padding:30px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    height:100%;
}

.profile-img-wrap{
    width:190px;
    height:190px;
    border-radius:50%;
    padding:8px;
    background:linear-gradient(135deg,#0e3a8a,#f59e0b);
    margin:0 auto 22px;
    border:0;
    display:block;
    cursor:pointer;
    overflow:hidden;
}

.profile-img-wrap img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:contain;
    object-position:center;
    border:5px solid #fff;
    background:#fff;
    display:block;
}

.profile-card h3{
    font-weight:800;
    color:#0f172a;
    margin-bottom:4px;
    text-align:center;
}

.profile-role{
    display:block;
    color:#f59e0b;
    font-weight:800;
    text-align:center;
    margin-bottom:18px;
    text-transform:uppercase;
    font-size:.9rem;
    letter-spacing:.02em;
}

.profile-card p{
    color:#475569;
    line-height:1.75;
}

.value-pill{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:20px;
    padding:22px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    height:100%;
}

.value-pill h5{
    font-weight:800;
    color:#0e3a8a;
    margin-bottom:10px;
}

.value-pill p{
    color:#475569;
    margin-bottom:0;
}

.personnel-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:20px;
    height:100%;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.personnel-card h5{
    font-weight:800;
    color:#0f172a;
    margin-bottom:6px;
}

.personnel-card p{
    color:#475569;
    margin-bottom:0;
}

.personnel-card.highlight{
    background:linear-gradient(180deg,#fff 0%,#fff7ed 100%);
    border-color:#fed7aa;
}

.timeline-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:22px;
    padding:24px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
    height:100%;
}

.timeline-card i{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(245,158,11,.15);
    color:#f59e0b;
    font-size:1.35rem;
    margin-bottom:16px;
}

.timeline-card h5{
    font-weight:800;
    color:#0f172a;
}

.timeline-card p,
.timeline-card li{
    color:#475569;
}

.section-mini-title{
    color:#0e3a8a;
    font-weight:800;
    margin-bottom:14px;
}

.about-cta{
    background:linear-gradient(135deg,#0e3a8a 0%,#174ea6 100%);
    border-radius:30px;
    padding:46px;
    color:#fff;
}

.about-cta p{
    color:rgba(255,255,255,.78);
}

.image-modal-content{
    background:transparent;
    border:0;
    box-shadow:none;
}

.image-modal-close{
    position:absolute;
    right:12px;
    top:12px;
    z-index:5;
    background-color:#fff;
    opacity:1;
    border-radius:50%;
    padding:12px;
}

.zoom-modal-image{
    width:100%;
    max-height:88vh;
    object-fit:contain;
    background:#fff;
    border-radius:18px;
}

.image-zoom-trigger{
    cursor:pointer;
}

@media(max-width:767.98px){
    .about-hero{
        padding:55px 0;
    }

    .about-image-card img,
    .team-photo-card img{
        max-height:360px;
    }

    .profile-img-wrap{
        width:160px;
        height:160px;
    }

    .about-cta{
        padding:28px;
        border-radius:22px;
    }
}

.products-hero{
    padding:80px 0;
    background:
        radial-gradient(circle at top left, rgba(245,158,11,.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(14,58,138,.12), transparent 35%),
        linear-gradient(180deg,#f9fbff 0%,#fff 100%);
}

.products-hero h1{
    font-size:clamp(2.1rem,4vw,3.5rem);
    font-weight:800;
    color:#0f172a;
    line-height:1.15;
}

.products-hero h1 span{
    color:#f59e0b;
}

.products-hero p{
    color:#475569;
    font-size:1.05rem;
}

.products-hero-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    padding:30px;
    box-shadow:0 18px 45px rgba(15,23,42,.1);
}

.product-hero-icon,
.simple-product-icon{
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(14,58,138,.08);
    color:#0e3a8a;
    font-size:1.55rem;
    margin-bottom:18px;
}

.products-hero-card h4{
    font-weight:800;
    color:#0f172a;
}

.products-hero-card p{
    color:#475569;
}

.simple-product-card{
    display:flex;
    flex-direction:column;
}

.simple-product-card .btn{
    margin-top:auto;
}

@media(max-width:767.98px){
    .products-hero{
        padding:55px 0;
    }
}
.product-action-row .btn{
    white-space:nowrap;
    font-size:0.82rem;
    padding:8px 10px !important;
}

.contact-hero{
    padding:80px 0;
    background:
        radial-gradient(circle at top left, rgba(245,158,11,.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(14,58,138,.12), transparent 35%),
        linear-gradient(180deg,#f9fbff 0%,#fff 100%);
}

.contact-hero h1{
    font-size:clamp(2.1rem,4vw,3.5rem);
    font-weight:800;
    color:#0f172a;
    line-height:1.15;
}

.contact-hero h1 span{
    color:#f59e0b;
}

.contact-hero p{
    color:#475569;
    font-size:1.05rem;
}

.contact-hero-card,
.contact-card,
.office-card,
.branch-card,
.map-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:26px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
}

.contact-hero-icon,
.contact-card-icon,
.office-icon{
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(14,58,138,.08);
    color:#0e3a8a;
    font-size:1.55rem;
    margin-bottom:18px;
}

.whatsapp-icon{
    background:rgba(37,211,102,.14);
    color:#25D366;
}

.contact-card h5,
.office-card h4,
.branch-card h5{
    font-weight:800;
    color:#0f172a;
}

.contact-card p,
.office-card p,
.branch-card p{
    color:#475569;
}

.contact-card a,
.office-card a{
    color:#0e3a8a;
    font-weight:600;
}

.branch-card i{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(245,158,11,.14);
    color:#f59e0b;
    font-size:1.2rem;
    margin-bottom:12px;
}

.map-card{
    padding:12px;
    overflow:hidden;
}

.map-card iframe{
    border-radius:18px;
    display:block;
}

.contact-faq .accordion-item{
    border:1px solid #e2e8f0;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:12px;
    box-shadow:0 10px 25px rgba(15,23,42,.05);
}

.contact-faq .accordion-button{
    font-weight:800;
    color:#0f172a;
    box-shadow:none;
}

.contact-faq .accordion-button:not(.collapsed){
    background:#f8fafc;
    color:#0e3a8a;
}

.contact-faq .accordion-body{
    color:#475569;
}

@media(max-width:767.98px){
    .contact-hero{
        padding:55px 0;
    }
}