/* =========================
   GLOBAL CSS
========================= */

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

:root {

    --primary: #0f2744;
    --secondary: #c89b3c;
    --white: #ffffff;
    --light: #f5f7fa;
    --text: #444444;
    --dark: #111111;
    --border: #e5e5e5;

}

html {
    scroll-behavior: smooth;
}

body {

    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);

}

img {

    max-width: 100%;
    display: block;

}

a {

    text-decoration: none;
    transition: 0.3s ease;

}

ul {
    list-style: none;
}

.container {

    width: 90%;
    max-width: 1200px;
    margin: auto;

}

section {

    padding: 90px 0;

}

/* =========================
   BUTTONS
========================= */

.primary-btn,
.secondary-btn,
.header-btn {

    display: inline-block;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s ease;

}

.primary-btn {

    background: var(--secondary);
    color: var(--white);

}

.primary-btn:hover {

    background: var(--primary);

}

.secondary-btn {

    border: 2px solid var(--white);
    color: var(--white);

}

.secondary-btn:hover {

    background: var(--white);
    color: var(--primary);

}

.header-btn {

    background: var(--secondary);
    color: var(--white);
    font-size: 15px;

}

.header-btn:hover {

    background: var(--primary);

}

/* =========================
   SECTION TITLES
========================= */

.section-title {

    text-align: center;
    margin-bottom: 50px;

}

.section-tag {

    color: var(--secondary);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;

}

.section-title h2 {

    font-size: 40px;
    color: var(--primary);
    line-height: 1.3;

}

/* =========================
   HEADER
========================= */

.header {

    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

}

.header-flex {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;

}

.logo img {

    width: 70px;

}

.nav-links {

    display: flex;
    gap: 30px;

}

.nav-links li a {

    color: var(--primary);
    font-weight: 600;
    font-size: 15px;

}

.nav-links li a:hover {

    color: var(--secondary);

}

.mobile-menu-btn {

    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);

}

/* =========================
   HERO
========================= */

.hero {

    position: relative;
    background-image: url('/assets/images/hero-bg.webp');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
    
    min-height: 80vh;
    display: flex;
    align-items: center;

}

.hero-overlay {

    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);

}

.hero-flex {

    position: relative;
    z-index: 2;
    color: #fff
    text-align: center;
    justify-content: center;
    align-items: center;
    min-height: 90vh;

}

.hero-content {

    flex: 1;

}

.hero-tag {

    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;

}


.hero-content h1 {
    color: #fff;
    text-shadow: 0 3px 12px rgba(0,0,0,.7);
}

.hero-content p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

.hero-btns {

    display: flex;
    gap: 20px;
    flex-wrap: wrap;

}

.hero-image {

    flex: 1;
    text-align: center;

}

.hero-image img {

    max-width: 500px;

}

/* =========================
   TRUST STRIP
========================= */

.trust-strip {

    background: var(--primary);
    color: var(--white);
    padding: 50px 0;

}

.trust-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

}

.trust-box {

    text-align: center;

}

.trust-box h3 {

    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 24px;

}

/* =========================
   ABOUT
========================= */

.about-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;

}

.about-image img {

    border-radius: 20px;

}

.about-content h2 {

    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;

}

.about-content p {

    margin-bottom: 20px;
    font-size: 17px;

}

/* =========================
   SERVICES
========================= */

.services {

    background: var(--light);

}

.services-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

}

.service-card {

    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);

}

.service-card:hover {

    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);

}

/* =========================
   WHY CHOOSE
========================= */

.why-choose {

    background: var(--primary);

}

.why-choose .section-title h2 {

    color: var(--white);

}

.why-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

}

.why-box {

    background: rgba(255,255,255,0.08);
    color: var(--white);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    font-weight: 600;

}

/* =========================
   BMD SECTION
========================= */

.bmd-section {

    background: var(--light);

}

.bmd-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;

}

.bmd-image img {

    border-radius: 20px;

}

.bmd-content h2 {

    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;

}

.bmd-content p {

    margin-bottom: 20px;
    font-size: 17px;

}
/* =========================
BMD HERO FIX
========================= */

.bmd-hero {

    position: relative;

    background:
    linear-gradient(
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)),
    url('../images/bmd-hero.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 90vh;

    display: flex;
    align-items: center;

    color: #ffffff;

    overflow: hidden;
}


/* REMOVE EXTRA DARK OVERLAY */

.hero-overlay{
    display:none;
}


/* TEXT COLOR FIX */

.bmd-hero-content h1,
.bmd-hero-content p,
.bmd-hero-content span,
.bmd-floating-card,
.bmd-floating-card h3,
.bmd-floating-card li{

    color:#ffffff;
}


/* FLOATING CARD */

.bmd-floating-card{

    background: rgba(255,255,255,0.12);

    backdrop-filter: blur(8px);

    border:1px solid rgba(255,255,255,0.2);

    border-radius:20px;

    padding:30px;
}


/* MOBILE FIX */

@media(max-width:768px){

    .bmd-hero{

        min-height:auto;

        padding:120px 0 80px;
    }

    .bmd-hero-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

    .bmd-hero-content h1{

        font-size:2.2rem;

        line-height:1.2;
    }

    .bmd-hero-content p{

        font-size:1.05rem;

        line-height:1.8;
    }

    .hero-btns{

        flex-direction:column;

        align-items:flex-start;
    }

    .primary-btn,
    .secondary-btn{

        width:100%;
        text-align:center;
    }

}

.hero-overlay{
    display:none;
}


/* =========================
   CONDITIONS
========================= */

.conditions-grid {

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;

}

.condition-box {

    background: var(--light);
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);

}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {

    background: var(--light);

}

.testimonial-card {

    max-width: 850px;
    margin: auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);

}

.testimonial-card p {

    font-size: 20px;
    margin-bottom: 25px;
    font-style: italic;

}

.testimonial-card h4 {

    color: var(--secondary);

}

/* =========================
   FAQ
========================= */


.faq-item {

    border-bottom: 1px solid var(--border);

}

.faq-question {

    width: 100%;
    padding: 25px 0;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    color: var(--primary);

}

.faq-answer {

    display: block;
    padding-bottom: 25px;

}

.faq-answer p {

    font-size: 17px;

}
@media(max-width:768px){

    .floating-whatsapp,
    .floating-call{

        width: 58px;
        height: 58px;

        right: 16px;

    }

}

/* =========================
   CTA SECTION
========================= */

.cta-section {

    background: var(--primary);
    text-align: center;
    color: var(--white);

}

.cta-section h2 {

    font-size: 48px;
    margin-bottom: 20px;

}

.cta-section p {

    font-size: 18px;
    margin-bottom: 35px;

}

.cta-btns {

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;

}

/* =========================
   CONTACT
========================= */

.contact-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;

}

.contact-info h2 {

    font-size: 42px;
    color: var(--primary);
    margin-bottom: 25px;

}

.contact-info p {

    margin-bottom: 20px;
    font-size: 17px;

}

.contact-info a {

    color: var(--primary);
    font-weight: 700;

}

.contact-map iframe {

    border-radius: 20px;

}

/* =========================
   FOOTER
========================= */

.footer {

    background: #081a2f;
    color: var(--white);
    padding-top: 80px;

}

.footer-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;

}

.footer-box h3 {

    margin-bottom: 25px;
    color: var(--secondary);

}

.footer-box p {

    margin-bottom: 15px;

}

.footer-box ul li {

    margin-bottom: 12px;

}

.footer-box ul li a {

    color: var(--white);

}

.footer-box ul li a:hover {

    color: var(--secondary);

}

.footer-bottom {

    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;

}

/* =========================
   FLOATING BUTTONS
========================= */


.floating-whatsapp {

    position: fixed;

    right: 24px;
    bottom: 100px;

    width: 68px;
    height: 68px;

    border-radius: 50%;

    background: #25d366;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 34px;

    z-index: 9999;

    box-shadow:
        0 10px 30px rgba(37,211,102,0.35);

    transition: 0.3s ease;

    animation: whatsappPulse 2s infinite;

}
floating-whatsapp:hover {

    transform: scale(1.08);

    box-shadow:
        0 16px 40px rgba(37,211,102,0.45);

}

@keyframes whatsappPulse {

    0% {

        box-shadow:
        0 0 0 0 rgba(37,211,102,0.45);

    }

    70% {

        box-shadow:
        0 0 0 18px rgba(37,211,102,0);

    }

    100% {

        box-shadow:
        0 0 0 0 rgba(37,211,102,0);

    }

}

.floating-call {

    position: fixed;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;

}

.floating-whatsapp {

    bottom: 95px;
    background: #25d366;

}

.floating-call {

    bottom: 20px;
    background: var(--secondary);

}