/* =========================================
   VANDE CARE GLOBAL
========================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

    background:#f5f7f5;

    color:#0f172a;

    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1380px;

    margin:0 auto;

    padding-left:60px;
    padding-right:60px;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

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

.main-header{
    position:sticky;
    top:0;
    z-index:999;

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

    backdrop-filter:blur(14px);

    border-bottom:
    1px solid rgba(0,0,0,0.04);
}

.navbar-container{
    max-width:1380px;

    margin:0 auto;

    padding:20px 60px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand-area{
    display:flex;
    align-items:center;
    gap:14px;
}

.brand-area img{
    width:50px;
    height:50px;
}

.brand-text{
    font-size:32px;
    font-weight:800;

    letter-spacing:1px;

    color:#00584B;
}

.desktop-nav{
    display:flex;
    align-items:center;
    gap:38px;
}

.desktop-nav a{
    position:relative;

    color:#00584B;

    font-size:15px;
    font-weight:700;

    transition:0.3s ease;
}

.desktop-nav a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    background:#ff7a1a;

    transition:0.3s ease;
}

.desktop-nav a:hover{
    color:#ff7a1a;
}

.desktop-nav a:hover::after{
    width:100%;
}

.whatsapp-btn{
    display:inline-flex;

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

    height:56px;

    padding:0 30px;

    border-radius:999px;

    background:#008c7a;

    color:#ffffff;

    font-size:14px;
    font-weight:700;

    transition:0.35s ease;

    box-shadow:
    0 10px 28px rgba(0,140,122,0.18);
}

.whatsapp-btn:hover{
    background:#ff7a1a;

    transform:translateY(-3px);
}
/* =========================
   VANDE CARE FOOTER
========================= */

.footer {
    background: linear-gradient(135deg, #004d43, #00695c);
    padding: 70px 0 20px;
    margin-top: 100px;
    border-top-left-radius: 36px;
    border-top-right-radius: 36px;
    overflow: hidden;
}

.footer .container {
    width: 92%;
    max-width: 1350px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.footer-logo h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin: 0;
}

.footer-brand p {
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);

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

    color: #fff;
    text-decoration: none;

    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: #ff7a1a;
    transform: translateY(-4px);
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 18px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;

    position: relative;
    transition: 0.3s ease;
}

.footer-links ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;
    background: #ff7a1a;

    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-contact p {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 14px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

.footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

.footer-logo h2 {
    font-size: 32px;
}

.footer-brand p,
.footer-links ul li a,
.footer-contact p {
    font-size: 15px;
}

}
/* =========================
   GLOBAL TRANSITIONS
========================= */

*{
    transition:
    background 0.3s ease,
    color 0.3s ease,
    border 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================
   PRIMARY BUTTON
========================= */

.primary-btn{
    position: relative;
    overflow: hidden;

    box-shadow:
    0 10px 25px rgba(0,150,136,0.18);

    transition: all 0.35s ease;
}

.primary-btn:hover{

    transform: translateY(-4px);

    box-shadow:
    0 18px 35px rgba(0,150,136,0.28);

    background: #00a693;
}


/* glowing effect */

.primary-btn::before{

    content: "";

    position: absolute;
    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transition: 0.7s;
}

.primary-btn:hover::before{
    left: 120%;
}


/* =========================
   SECONDARY BUTTON
========================= */

.secondary-btn{

    transition: all 0.35s ease;

    border: 2px solid rgba(0,77,67,0.12);
}

.secondary-btn:hover{

    background: #004d43;
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
    0 14px 30px rgba(0,77,67,0.18);
}


/* =========================
   NAVBAR LINKS
========================= */

.nav-links a{
    position: relative;
}

.nav-links a::after{

    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    background: #ff7a1a;

    transition: 0.35s ease;
}

.nav-links a:hover::after{
    width: 100%;
}

.nav-links a:hover{
    color: #ff7a1a;
}


/* =========================
   CARDS
========================= */

.session-card,
.expert-card,
.hero-card{

    transition: all 0.4s ease;
}

.session-card:hover,
.expert-card:hover,
.hero-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 24px 50px rgba(0,0,0,0.08);
}


/* =========================
   IMAGE ZOOM
========================= */

.session-card img,
.expert-card img,
.hero-card img{

    transition:
    transform 0.5s ease;
}

.session-card:hover img,
.expert-card:hover img,
.hero-card:hover img{

    transform: scale(1.05);
}


/* =========================
   CATEGORY PILLS
========================= */

.expert-strip a{

    transition: all 0.3s ease;
}

.expert-strip a:hover{

    background: #004d43;
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
    0 10px 20px rgba(0,77,67,0.14);
}


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

.footer-links a:hover{
    padding-left: 6px;
}


/* =========================
   FLOATING CTA
========================= */

.floating-cta{

    animation:
    floaty 2.8s ease-in-out infinite;

    box-shadow:
    0 15px 30px rgba(0,150,136,0.28);
}

@keyframes floaty{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-8px);
    }

    100%{
        transform: translateY(0px);
    }
}


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

.section-title h2{

    transition: 0.35s ease;
}

.section-title h2:hover{
    letter-spacing: 0.5px;
}


/* =========================
   SOCIAL ICONS
========================= */

.footer-socials a:hover{

    transform:
    translateY(-5px)
    rotate(6deg);
}