/* ==========================================
   BET NA VET
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    /* Brand Colors (Based on Bet Na Vet Facebook Branding) */
    --primary:#7B4DB8;
    --primary-dark:#5E3A93;
    --secondary:#A06BEF;
    --accent:#D7B8FF;

    /* Neutral */
    --dark:#2D2144;
    --gray:#746C89;

    /* Background */
    --white:#FFFFFF;
    --bg:#FCFAFE;

    /* Shadow */
    --shadow:0 18px 45px rgba(123,77,184,.12);

}

html{

    scroll-behavior:smooth;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;

}

body{

    background:var(--bg);
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.7;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;
    display:block;

}

section{

    padding:100px 0;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F5F0FC;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}
/* ==========================================
   NAVBAR
========================================== */

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:999;

    background:rgba(255,255,255,.96);
    backdrop-filter:blur(16px);

    padding:18px 0;

    border-bottom:1px solid rgba(123,77,184,.10);

    transition:.35s;

}

.navbar .container{

    display:flex;
    align-items:center;

}

.navbar-brand{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo-img{

    width:62px;
    height:62px;
    object-fit:contain;

}

/* ---------- BRAND TEXT ---------- */

.brand-text{

    display:flex;
    flex-direction:column;
    line-height:1.15;

}

.brand-text h4{

    margin:0;
    font-size:31px;
    font-weight:800;
    color:var(--primary);

}

.brand-text span{

    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#6F6885;

}

.brand-text small{

    font-size:11px;
    color:#A06BEF;
    font-weight:500;

}

.nav-link{

    color:var(--dark)!important;

    font-size:15px;

    font-weight:600;

    margin:0 10px;

    padding:10px 15px;

    border-radius:12px;

    transition:.35s;

}

.nav-link::after{

    display:none;

}

.nav-link:hover{

    background:#F5EEFD;

    color:#7B4DB8!important;

}

.nav-link.active{

    color:#7B4DB8!important;

    font-weight:700;

}

/* ---------- BUTTONS ---------- */

.nav-buttons{

    display:flex;
    gap:12px;
    margin-left:25px;

}

.login-btn{

    background:var(--primary-dark);

    color:white!important;

    padding:11px 28px;

    border-radius:14px;

    font-weight:600;

    box-shadow:0 12px 25px rgba(123,77,184,.18);

    transition:.35s;

}

.login-btn:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-3px);

}

.hero-btn{

    background:linear-gradient(
        135deg,
        #A06BEF,
        #7B4DB8
    );

    color:white!important;

    padding:11px 28px;

    border-radius:14px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 30px rgba(123,77,184,.22);

}

.hero-btn:hover{

    transform:translateY(-3px);

    background:linear-gradient(
        135deg,
        #8B5FD6,
        #5F3E92
    );

}

.hero-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-top:35px;

}

.feature-card{

display:flex;

align-items:center;

gap:15px;

padding:18px 22px;

background:#fff;

border-radius:18px;

box-shadow:0 15px 35px rgba(123,77,184,.10);

transition:.35s;

}

.feature-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 45px rgba(123,77,184,.18);

}

.feature-card i{

width:55px;

height:55px;

display:flex;

justify-content:center;

align-items:center;

border-radius:14px;

background:#F4EEFC;

color:#7B4DB8;

font-size:22px;

}

.feature-card h5{

margin:0;

font-size:17px;

font-weight:700;

color:#2F2453;

}

.feature-card p{

margin:3px 0 0;

font-size:13px;

color:#7A6D96;

}
/* ---------- MOBILE ---------- */

.navbar-toggler{

    border:none;
    box-shadow:none!important;

}

.navbar-toggler i{

    color:var(--primary);
    font-size:24px;

}
/* ==========================================
   HERO SECTION
========================================== */

.hero{

    position:relative;

    overflow:hidden;

    padding:170px 0 110px;

    background:linear-gradient(
        135deg,
        #FCFAFE 0%,
        #F7F2FD 45%,
        #FFFFFF 100%
    );

}

/* Decorative Glow */

.hero::before{

    content:"";

    position:absolute;

    top:-160px;
    right:-120px;

    width:420px;
    height:420px;

    background:radial-gradient(circle,
        rgba(123,77,184,.12),
        transparent 70%);

    border-radius:50%;

    z-index:0;

}

.hero::after{

    content:"";

    position:absolute;

    bottom:-180px;
    left:-150px;

    width:350px;
    height:350px;

    background:radial-gradient(circle,
        rgba(160,107,239,.10),
        transparent 70%);

    border-radius:50%;

    z-index:0;

}

/* Container */

.hero .container{

    position:relative;

    z-index:2;

}

/* Badge */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 20px;

    border-radius:40px;

    background:#F4EEFC;

    color:var(--primary);

    font-weight:600;

    font-size:14px;

    margin-bottom:25px;

}

/* Title */

.hero h1{

    font-size:68px;

    font-weight:800;

    line-height:1.05;

    color:var(--dark);

    margin-bottom:22px;

}

.hero h1 span{

    color:var(--primary);

}

/* Description */

.hero-desc{

    max-width:520px;

    font-size:18px;

    line-height:1.9;

    color:var(--gray);

    margin-bottom:35px;

}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-btn{

    padding:15px 34px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #A06BEF,
        #7B4DB8
    );

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.hero-btn:hover{

    transform:translateY(-4px);

}

.hero-btn2{

    padding:15px 34px;

    border:2px solid var(--primary);

    border-radius:14px;

    color:var(--primary);

    font-weight:600;

    transition:.35s;

}

.hero-btn2:hover{

    background:var(--primary);

    color:white;

}

/* Feature Cards */

.stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:20px;

}

.stats div{

    background:#fff;

    padding:20px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(123,77,184,.10);

    transition:.35s;

}

.stats div:hover{

    transform:translateY(-6px);

}

.stats h2{

    font-size:18px;

    color:var(--primary);

    margin-bottom:8px;

}

.stats span{

    font-size:14px;

    color:var(--gray);

}

/* Video */

.hero-media{

    display:flex;

    justify-content:center;
    align-items:center;
    height:100%;

}

.hero-video-card{

    width:100%;
    max-width:620px;

    background:#fff;

    padding:16px;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(123,77,184,.18);

    position:relative;

}

.hero-video{

    width:100%;

    height:560px;

    object-fit:cover;

    border-radius:22px;

    display:block;

}

.hero-video{

    width:100%;

    max-width:650px;

    height:560px;

    object-fit:cover;

    border-radius:28px;

    border:8px solid #FFFFFF;

    box-shadow:0 25px 55px rgba(123,77,184,.18);

}
/* ==========================================
   ABOUT SECTION
========================================== */

.about{

    position:relative;

    overflow:hidden;

    padding:170px 0 110px;

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #FCFAFE 100%
    );

}

.about .container{

    position:relative;
    z-index:2;

}

/* ---------- Subtitle ---------- */

.section-subtitle{

    display:inline-block;

    padding:10px 22px;

    background:#F4EEFC;

    color:var(--primary);

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:22px;

}

/* ---------- Heading ---------- */

.about h2{

    font-size:52px;

    font-weight:800;

    color:var(--dark);

    line-height:1.15;

    margin-bottom:22px;

}

/* ---------- Paragraph ---------- */

.about-text{

    font-size:17px;

    line-height:1.9;

    color:var(--gray);

    margin-bottom:35px;

}

/* ---------- Video ---------- */

.about-video{

    overflow:hidden;

    border-radius:28px;

    box-shadow:0 20px 55px rgba(123,77,184,.15);

}

.about-video video{

    width:100%;

    height:580px;

    object-fit:cover;

    transition:.4s;

}

.about-video:hover video{

    transform:scale(1.03);

}

/* ---------- Cards ---------- */

.about-card{

    background:#FFFFFF;

    border-radius:22px;

    padding:28px 24px;

    text-align:center;

    height:100%;

    border:1px solid #EEE6FB;

    box-shadow:0 15px 35px rgba(123,77,184,.10);

    transition:.35s;

}

.about-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(123,77,184,.18);

}

.about-card i{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:18px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#F4EEFC;

    color:var(--primary);

    font-size:28px;

}

.about-card h5{

    font-size:21px;

    font-weight:700;

    color:var(--dark);

    margin-bottom:12px;

}

.about-card p{

    font-size:15px;

    color:var(--gray);

    line-height:1.7;

    margin:0;

}

/* ---------- Responsive ---------- */

@media(max-width:991px){

.about{

padding:140px 0 80px;

}

.about h2{

font-size:40px;

}

.about-video video{

height:420px;

}

}

@media(max-width:768px){

.about h2{

font-size:34px;

}

.about-video video{

height:320px;

}

}
.about-card p{

    font-size:15px;

    color:var(--gray);

    line-height:1.7;

    margin:0;

}

/* ==============================
   ABOUT IMAGE DESIGN
============================== */

.about-img{

    position:relative;

    background:#fff;

    padding:20px;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(123,77,184,.18);

    transition:.4s;

    transform:rotate(-2deg);

}

.about-img:hover{

    transform:rotate(0deg) scale(1.03);

    box-shadow:0 35px 70px rgba(123,77,184,.25);

}

.about-img::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:linear-gradient(
        135deg,
        #A06BEF,
        #7B4DB8
    );

    border-radius:50%;

    top:-70px;

    left:-70px;

    opacity:.18;

}

.about-img img{

    width:100%;

    height:560px;

    object-fit:cover;

    border-radius:22px;

    position:relative;

    z-index:2;

    transition:.5s;

}

.about-img:hover img{

    transform:scale(1.06);

}

.about-badge{

    position:absolute;

    top:25px;

    left:25px;

    background:#fff;

    padding:10px 18px;

    border-radius:50px;

    font-weight:700;

    color:#7B4DB8;

    z-index:5;

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

.about-floating{

    position:absolute;

    right:25px;

    bottom:25px;

    background:#fff;

    padding:18px 22px;

    border-radius:18px;

    color:#7B4DB8;

    font-weight:700;

    z-index:5;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

}


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

.services{

    padding:120px 0;

    background:#FCFAFE;

}

.services .section-subtitle{

    display:inline-block;

    padding:10px 22px;

    background:#F4EEFC;

    color:var(--primary);

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

.services h2{

    font-size:50px;

    font-weight:800;

    color:var(--dark);

    margin-bottom:18px;

}

.services-desc{

    max-width:650px;

    margin:auto;

    color:var(--gray);

    font-size:17px;

    line-height:1.8;

}

/* Accordion */

.accordion{

    margin-top:60px;

}

.accordion-item{

    border:none;

    border-radius:20px !important;

    overflow:hidden;

    margin-bottom:18px;

    background:#fff;

    box-shadow:0 15px 35px rgba(123,77,184,.10);

}

.accordion-button{

    background:#FFFFFF;

    color:var(--dark);

    font-size:18px;

    font-weight:700;

    padding:22px 28px;

    box-shadow:none!important;

}

.accordion-button i{

    color:var(--primary);

    margin-right:15px;

    font-size:20px;

}

.accordion-button:not(.collapsed){

    background:linear-gradient(
        135deg,
        #8B5FD6,
        #6F42C1
    );

    color:#fff;

}

.accordion-button:not(.collapsed) i{

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    background:#fff;

    padding:28px;

}

.accordion-body p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:18px;

}

.accordion-body ul{

    margin:0;

    padding-left:20px;

}

.accordion-body li{

    margin-bottom:12px;

    color:var(--gray);

}

/* Hover */

.accordion-item:hover{

    transform:translateY(-4px);

    transition:.35s;

    box-shadow:0 25px 45px rgba(123,77,184,.18);

}

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

.contact-page{

    padding:170px 0 100px;

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #FCFAFE 100%
    );

}

/* ---------- Banner ---------- */

.contact-banner img{

    width:100%;

    height:300px;

    object-fit:cover;

    border-radius:28px;

    box-shadow:0 20px 50px rgba(123,77,184,.15);

}

/* ---------- Image ---------- */

.contact-image{

    overflow:hidden;

    border-radius:28px;

    box-shadow:0 20px 55px rgba(123,77,184,.15);

}

.contact-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.contact-image:hover img{

    transform:scale(1.05);

}

/* ---------- Contact Cards ---------- */
.contact-card{

display:flex;
align-items:center;
gap:22px;

background:#fff;

padding:28px 32px;

margin-bottom:22px;

border-radius:22px;

border:1px solid #EEE6FB;

box-shadow:0 12px 30px rgba(123,77,184,.10);

transition:.35s;

}


.contact-card:hover{

transform:translateY(-6px);

box-shadow:0 25px 45px rgba(123,77,184,.18);

}

.contact-card h5{

font-size:25px;

font-weight:700;

margin-bottom:6px;

}


.contact-icon{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#F4EEFC;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.contact-card p{

font-size:17px;

margin:0;

}



.contact-card a{

    color:var(--primary);

    text-decoration:none;

}

.contact-card a:hover{

    color:var(--primary-dark);

}

/* ---------- Google Map ---------- */

.ratio{

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(123,77,184,.15);

}

/* ---------- Clinic Hours ---------- */

.hours-card{

    background:#FFFFFF;

    padding:35px;

    border-radius:24px;

    border:1px solid #EEE6FB;

    box-shadow:0 15px 35px rgba(123,77,184,.10);

}

.hours-card h3{

    color:var(--dark);

    font-weight:700;

    margin-bottom:25px;

}

.hours-card table{

    margin:0;

}

.hours-card td{

    padding:12px 0;

    color:var(--gray);

}

/* ---------- CTA ---------- */

.contact-cta{

    background:linear-gradient(
        135deg,
        #8B5FD6,
        #6F42C1
    );

    color:white;

    padding:45px;

    border-radius:24px;

    box-shadow:0 20px 45px rgba(123,77,184,.20);

}

.contact-cta h2{

    font-size:34px;

    font-weight:800;

    margin-bottom:18px;

}

.contact-cta p{

    opacity:.95;

    line-height:1.8;

    margin-bottom:30px;

}

.contact-cta .hero-btn{

    background:#FFFFFF;

    color:#6F42C1 !important;

    font-weight:700;

    width:fit-content;

}

.contact-cta .hero-btn:hover{

    background:#F4EEFC;

}
/* ===========================
WHY CHOOSE US
=========================== */

.why-us{

padding:100px 0;

background:#FCFAFE;

}

.why-card{

background:#fff;

padding:35px 25px;

border-radius:24px;

text-align:center;

height:100%;

box-shadow:0 20px 45px rgba(123,77,184,.10);

transition:.35s;

border:1px solid #EEE6FB;

}

.why-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(123,77,184,.18);

}

.why-card i{

width:80px;

height:80px;

margin:auto;

margin-bottom:20px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:#F4EEFC;

font-size:30px;

color:#7B4DB8;

}

.why-card h4{

font-size:22px;

font-weight:700;

margin-bottom:12px;

}

.why-card p{

color:var(--gray);

margin:0;

}
/* ===========================
GALLERY
=========================== */

.gallery-section{

padding:100px 0;

background:#FCFAFE;

}

.gallery-card{

overflow:hidden;

border-radius:25px;

background:#fff;

box-shadow:0 20px 45px rgba(123,77,184,.10);

transition:.4s;

}

.gallery-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(123,77,184,.20);

}

.gallery-card img{

width:100%;

height:280px;

object-fit:cover;

transition:.5s;

}

.gallery-card:hover img{

transform:scale(1.08);

}

/* ===========================
STATISTICS
=========================== */

.stats-section{

padding:90px 0;

background:linear-gradient(
135deg,
#7B4DB8,
#9B6CF3);

}

.stat-card{

padding:30px;

color:#fff;

transition:.35s;

}

.stat-card:hover{

transform:translateY(-8px);

}

.stat-card h2{

font-size:58px;

font-weight:800;

margin-bottom:10px;

}

.stat-card{

background:rgba(255,255,255,.10);

backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.15);

border-radius:25px;

padding:35px;

color:#fff;

box-shadow:0 20px 45px rgba(0,0,0,.15);

transition:.35s;

}


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

.footer{

    background:linear-gradient(135deg,#5E3A9E,#8B5CF6);

    color:#fff;

    padding:55px 0 18px;

    border-top:none;

}

.footer-logo{

    width:58px;
    margin-bottom:12px;

}

.footer-text{

    font-size:14px;
    line-height:1.7;
    opacity:.9;
    margin-bottom:18px;

}

.footer h5{

    font-size:17px;
    font-weight:700;
    margin-bottom:15px;

}

.footer ul{

    padding:0;
    list-style:none;
    margin:0;

}

.footer ul li{

    margin-bottom:8px;
    font-size:14px;
    opacity:.9;

}

.footer ul li a{

    color:#fff;
    transition:.3s;

}

.footer ul li a:hover{

    color:#E9D5FF;
    padding-left:5px;

}

.footer-social{

    display:flex;
    gap:10px;
    margin-top:12px;

}

.footer-social a{

    width:38px;
    height:38px;

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

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    background:#fff;
    color:#7B4DB8;

}

.footer hr{

    margin:22px 0 15px;
    opacity:.15;

}

.copyright{

    text-align:center;
    font-size:13px;
    opacity:.85;
    margin:0;

}
/* ==========================================
   RESPONSIVE DESIGN
========================================== */

/* ---------- Laptop ---------- */

@media (max-width:1200px){

.hero h1{
    font-size:58px;
}

.about h2,
.services h2,
.contact-title{
    font-size:44px;
}

.hero-video{
    height:500px;
}



}

/* ---------- Tablet ---------- */

@media (max-width:991px){

section{
    padding:80px 0;
}

.navbar{
    padding:15px 0;
}

.navbar-collapse{
    background:#FFFFFF;
    margin-top:15px;
    padding:25px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.nav-buttons{
    flex-direction:column;
    margin-left:0;
    margin-top:20px;
}

.login-btn,
.hero-btn{

    width:100%;
    text-align:center;

}

.hero{

    padding-top:150px;
    text-align:center;

}

.hero-desc{

    margin:auto;
    margin-bottom:35px;

}

.hero-buttons{

    justify-content:center;

}

.stats{

    grid-template-columns:1fr 1fr;
    margin-top:35px;

}

.hero-media{

    margin-top:50px;

}

.hero-video{

    height:420px;

}

.about{

    padding-top:140px;

}


.about-card{

    margin-bottom:20px;

}

.contact-banner img{

    height:220px;

}

.contact-image{

    margin-bottom:35px;

}

.hours-card{

    margin-bottom:30px;

}

.contact-cta{

    margin-top:30px;

}

.footer{

    text-align:center;

}

.footer-logo{

    margin:auto;
    margin-bottom:20px;

}

.footer-social{

    justify-content:center;

}

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

.logo-img{

    width:52px;
    height:52px;

}

.hero h1{

    font-size:42px;
    line-height:1.2;

}

.about h2,
.services h2,
.contact-title{

    font-size:34px;

}

.hero-desc,
.about-text{

    font-size:16px;

}

.hero-video{

    height:300px;

}

.about-video video{

    height:280px;

}

.stats{

    grid-template-columns:1fr;

}

.hero-buttons{

    flex-direction:column;

}

.hero-btn,
.hero-btn2{

    width:100%;

}

.feature-item{

    flex-direction:column;
    text-align:center;

}

.contact-card{

display:flex;
align-items:center;
gap:18px;

padding:18px 22px;

border-radius:18px;

margin-bottom:18px;

background:#fff;

box-shadow:0 10px 25px rgba(123,77,184,.10);

}

.contact-icon{


width:55px;
height:55px;
font-size:20px;

background:#F4EEFC;

color:#7B4DB8;

border-radius:18px;

display:flex;

justify-content:center;

align-items:center;

flex-shrink:0;

}

.hours-card{

    padding:25px;

}

.contact-cta{

    padding:35px 25px;

}

.contact-cta h2{

    font-size:28px;

}

.footer{

    padding:70px 0 30px;

}

}

/* ---------- Small Phones ---------- */

@media (max-width:480px){

.hero{

    padding-top:130px;

}

.hero h1{

    font-size:34px;

}

.about h2,
.services h2,
.contact-title{

    font-size:28px;

}

.section-subtitle{

    font-size:12px;
    padding:8px 16px;

}

.hero-video{

    height:240px;

}

.about-video video{

    height:220px;

}

.contact-banner img{

    height:160px;

}

.footer h5{

    margin-top:25px;

}

}

/* GOOGLE MAP */

.map-box{

    width:80%;

    height:600px;

    overflow:hidden;

    border-radius:24px;

    margin:50px auto;

    box-shadow:0 15px 40px rgba(123,77,184,.15);

}

.map-box iframe{

    width:100%;

    height:100%;

    border:0;

}