/* --- CSS Variables for Brand Colors (CORRECTED ORIGINAL COLORS) --- */
:root {
--brand-pink: #ff3399; /* Bright pink from logo heart */
--brand-purple: #4A144B; /* Deep purple from logo text and buttons */
--text-light: #ffffff;
/* The main diagonal gradient background */
--gradient-bg: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-purple) 100%);
--container-width: 1300px;
/* Palette */
--col-purple: #4A144B;
--col-pink: #ff3399;
--col-gold: #d4af37;
--col-white: #ffffff;
--col-grad: linear-gradient(to bottom, #ff3385, #4a144b);
/* Backgrounds */
--bg-white: #ffffff;
--bg-off-white: #f9fafb;
--bg-tint-pink: #fff0f6; 
--bg-champagne: #fffbf2; /* Warm Gold Tint */

/* Gradients */
--grad-primary: linear-gradient(135deg, var(--col-purple) 0%, var(--col-pink) 100%);
--grad-blob: linear-gradient(45deg, #ff3399, #ff9966);
--grad-line: linear-gradient(to right, var(--col-purple), var(--col-pink));

--text-dark: #1a1a1a;
--text-grey: #666;
--text-light: #f5f5f5;
            
--radius-lg: 30px;
--shadow-card: 0 15px 35px rgba(74, 20, 75, 0.1);


/* Friendly Pastels */
--bg-yellow-body: #fdfbf7;
--bg-soft-pink: #fff0f6;
--bg-soft-purple: #f3eafa;

--font-head: 'Playfair Display', serif;
--font-body: 'Outfit', sans-serif;

--radius-card: 24px;
--shadow-soft: 0 10px 40px rgba(0,0,0,0.05);
            
            
}

html {
    font-size: initial !important;
    scroll-behavior: smooth;
}

/* --- Global Resets --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Poppins', sans-serif;
background-color: var(--col-purple); 
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
/*padding: 20px;*/
}
.container:before {
    display:none !important;
}

a {
    text-decoration:none !important;
}

.whatsapplogo {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 9999;
}

/* The main container simulating the webpage view */
.website-wrapper {
width: 100%;
/*max-width: 1440px; */
background-color: var(--text-light);
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
border-radius: 0px;
overflow: hidden; 
}

/* --- Reusable Container utility --- */
.container {
width: 100%;
max-width: var(--container-width);
margin: 0 auto;
padding: 0 20px;
}

.menu-overlay, .menu-drawer, .menu-btn {
    display:none;
}
/* --- NEW HEADER STYLES --- */
header {
display: flex;
align-items: center;
/* Using gap instead of space-between for better control of the 3 distinct sections */
gap: 20px;
padding: 20px 40px;
background: #fff;
}

.logo-container {
flex-shrink: 0;
margin-right: auto; /* Pushes the rest of the nav to the right on large screens */
}

/* Logo styling */
.logo-text-fallback {
display: flex;
align-items: center;
font-weight: 700;
font-size: 28px;
color: var(--brand-purple);
}
.logo-heart { color: var(--brand-pink); margin-right: 10px; }

/* New Main Navigation Links (Education, Blogs etc) */
.main-nav {
display: flex;
gap: 25px;
}

.nav-link-item {
text-decoration: none;
color: var(--brand-purple);
font-weight: 600;
font-size: 15px;
transition: color 0.3s;
white-space: nowrap;
}

.nav-link-item:hover {
color: var(--brand-pink);
}

/* Container for the prominent action buttons */
.nav-actions {
display: flex;
align-items: center;
gap: 15px;
}

/* Base style for header buttons */
.btn-header {
padding: 10px 20px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 14px;
transition: all 0.3s ease;
border: 2px solid transparent; /* Reserve space for border */
white-space: nowrap;
}

.employer-video {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin: 0% 20% 5%;
}
/* "For Employers" - Outlined Purple */
.btn-employer {
border-color: var(--brand-purple);
color: var(--brand-purple);
}
.btn-employer:hover {
background-color: var(--brand-purple);
color: var(--text-light);
}

/* "Find Psychologist" - Solid Pink (Most Prominent) */
.btn-psychologist {
background-color: var(--brand-pink);
color: var(--text-light);
border-color: var(--brand-pink);
box-shadow: 0 4px 10px rgba(255, 51, 153, 0.3); /* Subtle pink glow */
}
.btn-psychologist:hover {
background-color: #d42a80; /* Slightly darker pink on hover */
border-color: #d42a80;
color:#fff;
transform: translateY(-1px);
}


/* --- Hero Section (The main content area) --- */
.hero-section {
background: var(--gradient-bg);
display: flex;
min-height: 550px; 
position: relative;
}

.hero-layout {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 100%;
margin: inherit;
margin-left: 2%;
}

.hero-text-content {
flex: 1;
color: var(--text-light);
z-index: 2; 
padding: 80px 0;
}

.hero-title {
font-size: 3.5rem;
font-weight: 700;
line-height: 1.2;
margin-bottom: 20px;
}

.hero-subtitle {
font-size: 1.1rem;
font-weight: 400;
line-height: 1.6;
margin-bottom: 40px;
opacity: 0.9;
max-width: 480px;
}

.btn-primary {
display: inline-block;
background-color: var(--brand-purple);
color: var(--text-light);
padding: 18px 35px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
border: none;
cursor: pointer;
transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn-primary:hover {
 transform: translateY(-3px);
 background-color: #350d36;
}

/* --- The Curved Image Container --- */
.hero-image-wrapper {
position: absolute;
top: 0;
right: 0;
width: 55%; 
height: 100%;
border-bottom-left-radius: 50% 100%;
overflow: hidden; 
z-index: 1;
}

.hero-image-wrapper img {
width: 100%;
height: 100%;
object-fit: cover; 
object-position: center top; 
}





.brand-badge {
    font-family: var(--font-body);
    font-size: 0.65rem;
    background: var(--col-purple);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left:5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-section {
    background: var(--grad-primary);
    padding: 30px 0; color: white;
    position: relative; overflow: hidden;
    border-bottom-right-radius: 100px; /* Big Desktop Curve */
}
.breadcrumb-section-without-curve {
    border-bottom-right-radius: 0px !important;
}
.breadcrumb-flex { display: flex; align-items: center; justify-content: space-between; }
.breadcrumb-text { flex: 1; max-width: 550px; padding-right: 50px; }
.breadcrumb-title { font-size: 2.5rem; font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.breadcrumb-sub { font-size: 1.1rem; opacity: 0.95; margin-bottom: 40px; font-weight: 300; line-height: 1.6; }

.btn-breadcrumb { 
    background: white; color: var(--col-pink); 
    padding: 16px 40px; border-radius: 50px; text-decoration: none; 
    font-weight: 700; font-size: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
    transition: transform 0.2s; display: inline-block;
}
.btn-breadcrumb:hover { transform: translateY(-3px); }

.breadcrumb-img-box {
    width: 450px; height: 300px;
    border-top-left-radius: 200px; border-top-right-radius: 200px; border-bottom-right-radius: 200px;
    overflow: hidden; border: 8px solid rgba(255,255,255,0.2);
    position: relative; z-index: 2; box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.breadcrumb-img-box-2 {
    border-top-left-radius: 0px !important;
    border-top-right-radius: 125px !important;
    border-bottom-left-radius: 125px !important;
    border-bottom-right-radius: 0px !important;
}
.breadcrumb-img-box img { width: 100%; height: 100%; object-fit: cover; }

.home-mobile { display:none; }



/* --- Features Footer Section --- */
.features-section {
background-color: var(--brand-purple);
padding: 50px 0;
color: var(--text-light);
}

.features-layout {
display: flex;
justify-content: space-around;
text-align: center;
}

.f-icon {
font-size: 3rem;
color: var(--brand-pink);
opacity: 0.9;
}

.feature-title, .f-text {
font-weight: 600;
font-size: 1.1rem;
}

/* --- Responsive Design --- */
/* Hide the main navigation links on smaller screens to prevent overcrowding */
@media (max-width: 1100px) {
.main-nav {
    display: none;
}
.logo-container { margin-right: 0; } /* Re-center elements */
header { justify-content: space-between; }
}

@media (max-width: 992px) {
.hero-title { font-size: 2.8rem; }
.hero-image-wrapper { width: 50%; }
}



.transformation-section { padding: 80px 0; background-color: #fff; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 50px auto; }
.section-label { text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; font-weight: 700; color: var(--brand-pink); margin-bottom: 10px; display: block; }
.section-title { font-size: 2.2rem; font-weight: 700; color: var(--brand-purple); line-height: 1.2; }
.journey-container { display: flex; flex-direction: column; gap: 15px; }
.journey-row { display: grid; grid-template-columns: 1fr 50px 1fr; align-items: center; gap: 15px; padding: 5px; border-radius: 15px; transition: all 0.3s ease; }
.journey-row:hover .arrow-circle { background: var(--brand-pink); color: white; transform: scale(1.1); box-shadow: 0 0 15px rgba(255, 51, 153, 0.5); border-color: var(--brand-pink); }
.journey-row:hover .card-solution { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(74, 20, 75, 0.15); border-color: var(--brand-pink); }
.journey-row:hover .card-problem { opacity: 0.8; }
.card-problem { background-color: var(--bg-dark-grey); padding: 20px 25px; border-radius: 15px; border: 1px solid #d1d5db; position: relative; }
.problem-header { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.icon-problem { color: #888; font-size: 1.1rem; }
.problem-title { font-size: 1rem; font-weight: 700; color: #555; }
.problem-desc { font-size: 0.9rem; color: #666; line-height: 1.4; font-weight: 400; }
.arrow-container { display: flex; justify-content: center; align-items: center; }
.arrow-circle { width: 35px; height: 35px; border-radius: 50%; background: white; border: 2px solid var(--brand-pink); color: var(--brand-purple); display: flex; justify-content: center; align-items: center; font-size: 0.9rem; transition: all 0.3s ease; z-index: 2; }
.card-solution { background: white; padding: 20px 25px; border-radius: 15px; border: 1px solid rgba(74, 20, 75, 0.15); box-shadow: 0 5px 15px rgba(0,0,0,0.03); position: relative; overflow: hidden; transition: all 0.3s ease; }
.card-solution::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gradient-main); }
.solution-header { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.icon-solution { color: var(--brand-pink); font-size: 1.2rem; }
.solution-title { font-size: 1.1rem; font-weight: 700; background: -webkit-linear-gradient(right, var(--brand-purple), var(--brand-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.solution-desc { font-size: 0.95rem; color: #444; line-height: 1.4; }


/* ================= NEW: HORIZONTAL PROCESS TRACKER ================= */
.process-section-horizontal {
    padding: 100px 0;
    background-color: var(--brand-purple); /* Dark Background */
    color: white;
    position: relative;
}

.process-header { text-align: center; margin-bottom: 70px; }
.process-label { color: var(--brand-pink); font-weight: 700; letter-spacing: 2px; font-size: 0.9rem; text-transform: uppercase; display: block; margin-bottom: 10px;}
.process-title { font-size: 2.5rem; font-weight: 700; color: white; }

/* The Flex Container for the steps */
.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1200px; /* Wider container for horizontal layout */
    margin: 0 auto;
    padding: 0 20px;
}

/* The connecting horizontal line */
.step-connector-line {
    position: absolute;
    top: 30px; /* Aligns with center of markers */
    left: 5%; right: 5%;
    height: 3px;
    background: rgba(255,255,255,0.2);
    z-index: 0;
}

/* Individual Step Block */
.single-step {
    flex: 1;
    text-align: center;
    z-index: 1; /* Sits on top of the line */
    padding: 0 15px;
}

/* Numbered Marker */
.step-marker {
    width: 60px; height: 60px;
    background: var(--brand-pink);
    border-radius: 50%;
    border: 4px solid var(--brand-purple); /* Matches bg so it looks like it cuts the line */
    display: flex; justify-content: center; align-items: center;
    font-weight: 700; font-size: 1.5rem; color: white;
    box-shadow: 0 0 20px rgba(255, 51, 153, 0.3);
    margin: 0 auto 25px auto;
}

/* Content below marker */
.step-content-h {
    text-align: center;
}

.h-icon {
    font-size: 1.8rem; color: var(--brand-pink); margin-bottom: 15px; display: block;
}

.h-step-title {
    font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: white;
}

.h-step-desc {
    font-size: 0.75rem; line-height: 1.6; color: rgba(255,255,255,0.8);
}


/* --- Responsive Timeline --- */
@media (max-width: 900px) {
    .hero-section { flex-direction: column; } .hero-text-content { text-align: center; padding: 40px 20px; } .hero-image-wrapper { position: relative; width: 100%; height: 350px; border-bottom-left-radius: 0; border-left: none; } .main-nav, .nav-actions { display: none; } .section-title { font-size: 1.8rem; } .journey-row { grid-template-columns: 1fr; grid-template-rows: auto 30px auto; gap: 5px; margin-bottom: 30px; background: #fdfdfd; padding: 15px; border: 1px solid #eee; } .arrow-circle { transform: rotate(90deg); margin: 0 auto; width: 30px; height: 30px; } .journey-row:hover .arrow-circle { transform: rotate(90deg) scale(1.1); } .card-solution::before { width: 100%; height: 4px; top: 0; left: 0; }

    /* Mobile Horizontal Process: Stack Vertically */
    .steps-container { flex-direction: column; gap: 40px; align-items: center; }
    .step-connector-line { 
        /* Switch to vertical line */
        width: 3px; height: 100%; top: 0; bottom: 0; left: 50%; right: auto; transform: translateX(-50%);
    }
    .single-step {
        width: 100%; max-width: 400px;
        background: rgba(255,255,255,0.05); /* Add card background for readability on mobile */
        padding: 30px; border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.1);
    }
     .step-marker { margin-top: -10px; } /* Pull marker up slightly on mobile card */
}




/* --- SUCCESS STORIES (Compact Web Version) --- */
.success-section { padding: 100px 0; background-color: var(--bg-light-pink); }

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* WEB CARD (Same style as mobile, just responsive width) */
.web-story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid white;
    transition: transform 0.3s ease;
}
.web-story-card:hover { transform: translateY(-5px); }

/* COMPACT HEADER (Reduced height to 100px for web balance) */
.ws-img-box {
    height: 100px; /* Reduced from big box */
    width: 100%;
    background: #eee; position: relative;
}
.ws-img-box img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

.ws-badge {
    position: absolute; bottom: -12px; right: 20px;
    background: var(--brand-purple); color: white;
    padding: 5px 12px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 600;
    display: flex; align-items: center; gap: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.ws-content { padding: 25px 25px 20px 25px; }

.ws-name { font-size: 1.2rem; font-weight: 700; color: var(--brand-purple); margin-bottom: 2px; }
.ws-meta { font-size: 0.8rem; color: #888; margin-bottom: 15px; display: block; }
.ws-quote { font-size: 0.9rem; color: #555; font-style: italic; line-height: 1.6; margin-bottom: 20px; }

.ws-insight {
    background: #f8f6f9; border-left: 4px solid var(--brand-pink);
    padding: 10px 15px; border-radius: 6px;
}
.ws-insight-lbl { font-size: 0.7rem; color: var(--brand-pink); font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 2px; }
.ws-insight-txt { font-size: 0.85rem; color: var(--brand-purple); font-weight: 600; }


/* FAQS */ 


/* Container spacing and 2-column layout */
.faq-section-grid {
  gap: 20px;
  padding: 50px 50px 100px;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

/* The Main Card */
.faq-card {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid rgba(74, 20, 75, 0.15);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top:10px;
}

/* Left accent bar */
.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--col-pink);
}

/* Hover Transformation Effect */
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(74, 20, 75, 0.15);
  border-color: var(--col-pink);
}

/* Header Area */
.faq-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Counter and Question Alignment */
.faq-heading-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--col-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.faq-question {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  background: var(--col-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height:1.5;
}

.faq-icon-status {
  color: var(--col-pink);
  font-size: 1.4rem;
  font-weight: bold;
}

/* Active Open State: Header turns black, Text turns white */
.faq-card.active .faq-header-top {
  background: #a52472;
}

.faq-card.active .faq-question {
  -webkit-text-fill-color: #ffffff;
}

.faq-card.active .faq-icon-status {
  color: #ffffff;
}

/* Answer/Description Area */
.faq-answer-container {
  max-height: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding: 0 25px;
}

.faq-card.active .faq-answer-container {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 25px;
  padding-top: 15px;
}

.faq-text {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}





/* Content */
.detailed-content {
    padding: 5%;
    font-size: 100%;
}
.detailed-content h3, .detailed-content h4 {
   font-weight:bold;
   font-size:100%;
}
.detailed-content ul li {
    list-style-type: decimal;
    margin-left: 20px;
}
.detailed-content a {
    color:#FF2D79;
}





/* --- UPGRADED HERO SECTION --- */
        .blog-hero-premium {
            position: relative;
            background: var(--grad-primary);
            padding: 80px 0;
            overflow: hidden;
            color:var(--col-white);
            border-bottom: 1px solid rgba(0,0,0,0.03);
        }

        .blog-hero-badge {
            display: inline-block;
            background: white;
            padding: 8px 20px;
            border-radius: 100px;
            color: var(--brand-pink);
            font-weight: 700;
            font-size: 13px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog-hero-title {
            font-weight: 800;
            font-size: 3.5rem;
            line-height: 1.5;
            background: var(--col-white);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        /* --- BETTER TITLE & SEE ALL DESIGN --- */
        .blog-main-section {
            padding:5%;
            background: var(--bg-tint-pink);
        }
        
        .blog-section-header-wrap {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        .blog-title-group {
            position: relative;
        }

        .blog-title-group h2 {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 0;
            color: var(--col-purple);
        }

        .blog-title-underline {
            position: absolute;
            bottom: -21px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--col-pink);
            border-radius: 10px;
        }

        .blog-see-all-pill {
            background: white;
            border: 1.5px solid #e2e8f0;
            padding: 10px 24px;
            border-radius: 100px;
            color: var(--col-purple);
            font-weight: 700;
            font-size: 12px;
            text-decoration: none !important;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .blog-see-all-pill:hover {
            border-color: var(--col-pink);
            color: var(--col-pink);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 45, 120, 0.1);
        }

        /* --- BLOG CARD --- */
        .blog-card {
            background: white;
            border-radius: 28px;
            border: none;
            overflow: hidden;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.01), 0 2px 4px -1px rgba(0,0,0,0.01);
            margin-bottom: 30px;
        }

        .blog-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px -12px rgba(31, 17, 53, 0.12);
        }

        .blog-img-container {
            height: 240px;
            overflow: hidden;
        }

        .blog-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-card:hover .img-container img {
            transform: scale(1.08);
        }

        .blog-body {
            padding: 30px;
        }

        .blog-meta-category {
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            color: var(--col-pink);
            letter-spacing: 1.5px;
            display: block;
        }

        .blog-title {
            font-weight: 700;
            font-size: 1rem;
            line-height: 1.4;
            color: var(--col-purple);
            margin-top: 10px;
        }
        
        .blog-desc {
            color: var(--text-grey);
        }

        /* Footer Meta (Text Only) */
        .blog-meta-footer {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f1f5f9;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .blog-author-name {
            font-weight: 700;
            font-size: 14px;
            color: var(--col-purple);
            display: block;
        }

        .blog-author-role {
            font-size: 12px;
            color: var(--text-grey);
        }

        .blog-post-date {
            font-weight: 600;
            font-size: 12px;
            color: var(--col-purple);
            text-align: right;
        }
    
        .blog-post-read {
            color: var(--text-grey);
            font-weight: normal;
        }
        
        .blog-not-found {
            margin-left: 2%;
            color: var(--col-purple);
            font-weight: bold;
        }




/* --- SUCCESS MODAL --- */

.story .modal-overlay {
    z-index:9999 !important;
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: 200; display: none; 
    justify-content: center; align-items: center; backdrop-filter: blur(5px);
}
.story .modal-box {
    background: white; width: 400px; padding: 40px; border-radius: 30px;
    text-align: center; animation: popUp 0.3s ease;
}
@keyframes popUp { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.check-circle { 
    width: 70px; height: 70px; background: #e8f5e9; border-radius: 50%; 
    display: flex; justify-content: center; align-items: center; 
    margin: 0 auto 20px auto; color: #2e7d32; font-size: 2rem; 
}



/* --- FOOTER --- */
footer { 
    background: var(--brand-purple-dark); color: rgba(255,255,255,0.6); padding: 50px 0; text-align: center;
}
.footer-grid {
    padding-left: 5% !important;
    padding-right: 5% !important;

}


.load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    background: var(--brand-pink);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.3s;
    margin-top:25px;
}
.load-more:hover {
    background: var(--col-purple);
    color: white;
}

/* --- FOOTER --- */
footer {
    background-color: var(--col-purple); color: white;
    padding: 80px 0 40px 0; margin-top: -30px;
    border-top-left-radius: 50px; border-top-right-radius: 50px;
    position: relative; z-index: 10;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; text-align: left; }

.foot-brand h3 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 10px; }
.foot-brand img {
    width:revert-layer !important;
    height: revert-layer;
    margin-bottom:10px;
}
.foot-tag { font-size: 12px; opacity: 0.6; letter-spacing: 2px; text-transform: uppercase; }

/* Center Column: Phone Button */
.foot-center { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.foot-bottom-left {
    width: 80%;
    text-align: left;
    margin-left: 40px;
    left: 0;
    position: absolute;
}
.foot-bottom-right {
    width: 20%;
    display: inline-block;
    right: 0;
    position: absolute;
}    
.foot-bottom-right ul {
    list-style-type: none;
}
.foot-bottom-right ul li {
    display: inline-block;
    float: left;
    color: #fff;
    text-decoration: none;
    padding-right: 10px;
    padding-left: 10px;
}
.foot-bottom-right ul li a {
    text-decoration: none;
    color: #fff;
}

.phone-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: white; color: var(--col-purple); text-decoration: none;
    padding: 15px 35px; border-radius: 50px; font-weight: 700; font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: transform 0.2s;
}
.phone-btn:hover { transform: scale(1.05); }
.phone-label { font-size: 12px; opacity: 0.8; margin-bottom: 15px; display: block; }

/* Right Column: Socials */
.foot-social { text-align: right; }
.social-label { font-size: 12px; font-weight: 700; color: var(--col-pink); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: block; }
.social-icons { display: flex; justify-content: flex-end; gap: 15px; }
.s-bubble {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: white; font-size: 22px; display: flex; justify-content: center; align-items: center;
    text-decoration: none; transition: 0.3s;
}
.s-bubble:hover { background: var(--col-pink); color:#fff; border-color: var(--col-pink); transform: translateY(-5px); }

.foot-bottom { margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 12px; opacity: 0.5; }
.error-border {
    border: 1px solid red !important;
}