:root {
  --primary: #674dad;
  --secondary: #14b8a6;
  --light: #f0fdfa;
  --white: #ffffff;
  --pink: #d55191; 
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

section {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.top-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP BAR */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
}

.top-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrap img {
  width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 15px;
  color: var(--primary);
}

.top-info i,
.top-info svg {
  font-size: 18px;
}

.book-btn {
  background: #674dad;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.book-btn:hover {
  background: var(--pink);
}

/* =========================
   NAVBAR MAIN (Middle Align)
========================= */
.main-nav {
  width: 100%;
  height: 50px;
  background: #6d4bb8;
  display: flex;
  justify-content: center; /* లింక్స్ అన్నీ పర్ఫెక్ట్ గా మధ్యలోకి రావడానికి */
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center; /* కంటైనర్ లోపల కూడా సెంటర్ చేస్తుంది */
  align-items: center;
  position: relative;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px; /* లింక్స్ మధ్య గ్యాప్ కొద్దిగా తగ్గించాను */
  height: 100%;
}

/* =========================
   NAV LINKS & HOVER PINK BAR
========================= */
nav a,
.drop-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px; /* నావ్‌బార్ హైట్‌కి మ్యాచ్ చేసాను */
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 0 5px;
  cursor: pointer;
  position: relative; 
  transition: 0.3s;
}

nav a:hover,
.drop-btn:hover {
  color: #ffd4f1;
}

/* మెయిన్ నావ్ లింక్స్ కి కింద వచ్చే పింక్ బార్ */
nav a::after,
.drop-btn::after {
  content: '';
  position: absolute;
  bottom: 4px; 
  left: 50%;
  transform: translateX(-50%);
  width: 0; 
  height: 3px; 
  background-color: var(--pink);
  border-radius: 2px;
  transition: width 0.3s ease; 
}

nav a:hover::after,
.drop-btn::after.active,
.dropdown:hover .drop-btn::after {
  width: 80%; 
}

/* =========================
   DROPDOWN (Spaces Reduced)
========================= */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%); /* డ్రాప్‌డౌన్ సెంటర్ అవ్వడానికి */
  width: 260px; /* వెడల్పు తగ్గించాను */
  background: #5b3fa3;
  border-radius: 10px;
  padding: 8px; /* ప్యాడింగ్ తగ్గించాను */
  display: none;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

/* 🔥 నార్మల్ డ్రాప్‌డౌన్ లింక్స్ స్పేసింగ్ తగ్గించబడింది */
.dropdown-content > a {
  display: block;
  color: #fff;
  padding: 8px 12px; /* ప్యాడింగ్ తగ్గించాను */
  margin-bottom: 4px; /* లింక్స్ మధ్య గ్యాప్ తగ్గించాను */
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.4; /* లైన్ హైట్ తగ్గించాను */
  transition: 0.3s;
}

.dropdown-content > a:hover {
  background: var(--pink);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* =========================
   SUB DROPDOWN
========================= */
.sub-dropdown {
  position: static;
}

.sub-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #fff;
  background: none;
  border: none;
  padding: 10px 12px; /* ప్యాడింగ్ తగ్గించాను */
  margin-bottom: 4px; /* గ్యాప్ తగ్గించాను */
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.sub-btn:hover {
  background: var(--pink);
}

.sub-content {
  position: absolute;
  left: 98%;
  top: 0;
  width: 350px;
  max-height: 450px;
  overflow-y: auto;
  background: #7a57ca;
  border-radius: 10px;
  padding: 12px;
  display: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.sub-content a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 6px 10px;
  margin-bottom: 5px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
  transition: 0.3s;
}

.sub-dropdown:hover .sub-content {
  display: block;
}

/* SCROLLBAR */
.sub-content::-webkit-scrollbar {
  width: 4px;
}

.sub-content::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 10px;
}

.sub-content::-webkit-scrollbar-track {
  background: #8f6be0;
}

.sub-content a:hover {
  background: var(--pink);
}

/* MENU BUTTON */
.menu-btn {
  display: none;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:768px) {

  .top-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .top-info {
    gap: 15px;
    font-size: 13px;
  }

  .main-nav {
  position: relative;
}

.menu-btn {
  display: block;
  position: absolute;
  top: -5px;
  right: 20px;   /* left remove చేసి right పెట్టండి */
  left: auto;
  transform: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 9999;
}

  /* MOBILE MENU */
  nav {
    width: 100%;
    background: #6d4bb8;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 20px;
  }

  nav.show {
    display: flex;
  }

  nav a,
  .drop-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 20px;
    height: auto;
    font-size: 17px;
    color: #fff;
  }

  nav a::after,
  .drop-btn::after {
    display: none;
  }

  /* DROPDOWN */
  .dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-content {
    position: static;
    transform: none;
    width: 100%;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
    max-height: none;
    display: none;
    background: #5b3fa3;
  }

  /* CLICK chesthe maatrame open */
  .dropdown.active .dropdown-content {
    display: block;
  }

  /* SUB MENU */
  .sub-dropdown {
    width: 100%;
  }

  .sub-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    justify-content: space-between;
  }

  .sub-content {
    position: static;
    width: 100%;
    margin-top: 5px;
    padding: 10px;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    display: none;
    background: #7a57ca;
    border-radius: 8px;
  }

  /* CLICK chesthe maatrame sub menu open */
  .sub-dropdown.active .sub-content {
    display: block;
  }

  .sub-content a {
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 10px;
  }
}














/* ================= FOOTER ================= */

.footer{
  background:#674dad;
  color:#ffffff;
  padding:60px 0 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  padding-bottom:40px;
}

/* HEADINGS */
.footer-col h4{
  font-weight:600;
  margin-bottom:15px;
}

/* ANIMATION */
.footer-anim{
  opacity:0;
  transform:scale(0.9);
  transition:all 0.6s ease;
}

.footer-anim.show{
  opacity:1;
  transform:scale(1);
}

/* LINKS */
.footer-col a{
  display:block;
  color:white;
  margin-bottom:8px;
}

.footer-col a:hover{
  color:#d55191;
}

/* LOGO */
.footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.footer-logo img{
  width:240px;
  height:auto;
  object-fit:contain;
}

/* SOCIAL */
.social span{
  display:block;
  margin-bottom:10px;
  font-weight:600;
}

.social-icons{
  display:flex;
  gap:12px;
}

.social-icons a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
  color:white;
  transition:0.3s ease;
}

.social-icons a:hover{
  background:#14b8a6;
  transform:scale(1.15);
}

/* ================= ADDRESS FIX ================= */

.footer-address{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer-address p{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:0;
  line-height:1.5;
  font-size:14px;
}

/* ICON ALIGN */
.footer-address p i{
  margin-top:3px;
  flex-shrink:0;
}

/* TEXT WRAP CLEAN */
.footer-address p{
  word-break:normal;
}

/* ================= COPYRIGHT ================= */

.copyright{
  background:#4a2f87;
  text-align:center;
  padding:15px;
  font-size:13px;
}

/* ================= FLOATING BUTTONS ================= */

.float-btn{
  position:fixed;
  right:20px;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:white;
  z-index:9999;
}

/* WhatsApp */
.whatsapp{
  bottom:90px;
  background:#25D366;
  animation:pulse 2s infinite;
}

/* Phone */
.phone{
  bottom:20px;
  background:#25D366;
  animation:float 2.5s infinite;
}

/* Animations */
@keyframes pulse{
  0%{transform:scale(1)}
  50%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

@keyframes float{
  0%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
  100%{transform:translateY(0)}
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  /* LEFT ALIGN EVERYTHING */
  .footer{
    text-align:left;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  /* LOGO LEFT */
  .footer-logo{
    justify-content:flex-start;
  }

  .footer-logo img{
    width:120px;
  }

  /* SOCIAL LEFT */
  .social-icons{
    justify-content:flex-start;
  }

  /* ADDRESS */
  .footer-address{
    gap:8px;
  }

  .footer-address p{
    font-size:13px;
  }

}
/* HIDE PHONE IN DESKTOP */
.phone{
  display:none;
}

/* MOBILE ONLY SHOW PHONE */
@media(max-width:768px){
  .phone{
    display:flex;
  }
}













/* HERO */
.hero {
  position: relative;
  height: 50vh;          /* 🔽 reduced */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
   font-family:Arial, Helvetica, sans-serif;
}

/* BG + OVERLAY (lighter) */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(43, 55, 110, 0.6), rgba(43, 55, 110, 0.6)), /* 🔽 lighter */
    url("../img/herobg.png") center/cover no-repeat;
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  animation: zoomInSoft 0.9s ease forwards; /* 🔽 faster */
}

.hero-content h1 {
  font-size: 44px;   /* 🔽 smaller */
  font-weight: 600;  /* 🔽 softer */
}

.hero-content p {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.85;
}

.hero-content span {
  margin: 0 6px;
}

/* SOFT ZOOM */
@keyframes zoomInSoft {
  from {
    transform: scale(1.12); /* 🔽 less zoom */
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 50vh; /* 🔽 */
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 13px;
  }
}











  
  
  
  /* ================= ABOUT SECTION PREMIUM ================= */
.about-section {
  padding: 50px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9ff 100%);
  overflow: hidden; /* AOS animations side scroll rakunda */
  position: relative;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* CONTENT SIDE */
.about-content {
  flex: 0 0 50%;
}

.sub-title {
  color: #674dad;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #d55191;
  margin-bottom: 20px;
  line-height: 1.2;
}


.about-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 22px;
  font-size: 16.5px;
  text-align: justify;
}

/* BUTTON STYLE */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  padding: 15px 35px;
  background: #674dad;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(103, 77, 173, 0.3);
  transition: all 0.4s ease;
  text-decoration: none;
}

.about-btn span {
  font-size: 20px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #d55191;
  color: #c8b2b2;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(213, 81, 145, 0.4);
}

.about-btn:hover span {
  transform: translateX(5px);
}

.image-main-wrapper {
  position: relative;
  z-index: 2;
}

.main-abt-img {
  width: 100%;
  height: auto; /* Desktop height */
  object-fit: cover;
  border-radius: 40px 10px 40px 10px; /* Irregular modern radius */
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  border: 8px solid #fff;
}
.about-image-side {
  flex: 0 0 57%; /* 🔥 increase from 45% → 55% */
}
/* Decorative background shape */
/* .shape-bg {
  position: absolute;
  top: -30px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: #674dad;
  border-radius: 40px 10px 40px 10px;
  opacity: 0.08;
  z-index: 1;
} */
/* Floating Glass Card */
.floating-card {
  position: absolute;
  bottom: 30px;
  left: -30px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  padding: 18px 22px;
  border-radius: 20px;

  display: flex;
  align-items: center;
  gap: 12px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.6);

  z-index: 5;
  max-width: 260px;
}

.floating-card i {
  font-size: 35px;
  color: #d55191;
}

.floating-card h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #674dad;
}

.floating-card p {
  margin: 0;
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

  .about-container {
    display: flex;
    flex-direction: column;
  }

  /* 🔥 ORDER MAIN BLOCKS */
  .about-content {
    order: 1;
  }
 
  .main-abt-img {
    height: auto;          /* 🔥 no cropping */
    max-height: none;      /* full image show */
    border-radius: 20px;   /* optional clean */
  }
  .about-image-side {
    order: 2;
    margin: 20px 0;
  
    width: 100%;
    flex: 100%;
  }
  /* 🔥 CONTENT INTERNAL ORDER */
  .about-content {
    display: flex;
    flex-direction: column;
  }

  .sub-title{
    order : 1;
    font-size: 12px;
  }
  .about-content h2 {
    order: 1; /* heading */
    font-size: 28px;
  }

  .about-content p {
    order: 2; /* text */
    text-align: justify;
    padding: 0 10px;
  }

  .about-btn {
    order: 3; /* button */
    margin: 20px auto 0;
  }

}

@media (max-width: 991px) {

  .floating-card {
    position: static;   /* 🔥 remove absolute */
    margin: 20px auto;  /* center below image */
    
    width: 90%;
    max-width: 320px;

    display: flex;
    justify-content: center;
    text-align: center;

    left: 0;
    bottom: 0;
  }

}
















/* ================= SECTION ================= */
.our-purpose{
  padding:30px 20px;
  background:linear-gradient(180deg,#f7f3ff,#ffffff);
  text-align:center;
}

/* ================= HEADING ================= */
.purpose-heading{
  font-size:36px;
  font-weight:800;
  color:#d55191;
  margin-bottom:20px;

  opacity:0;
  transform:scale(.85);
  transition:all .7s ease;
}

.purpose-heading span{
  color:#674dad;
}

/* SHOW STATE (triggered by JS) */
.purpose-heading.show{
  opacity:1;
  transform:scale(1);
}

/* INTRO TEXT */
.purpose-intro{
  max-width:760px;
  margin:0 auto 50px;
  font-size:16px;
  line-height:1.7;
  color:black;
}

/* ================= PANELS WRAP ================= */
.purpose-panels{
  display:flex;
  justify-content:center;
  gap:60px;
  flex-wrap:wrap;
}

/* ================= PANEL BASE ================= */
.purpose-panel{
  width:420px;
  padding:45px 40px;
  border-radius:30px;
  position:relative;
  background:#ffffff;
  box-shadow:0 30px 70px rgba(103,77,173,0.18);
  text-align:left;

  opacity:0;
  transition:all .8s ease;
}

/* LEFT CARD START POSITION */
.mission{
  border-top:6px solid #d55191;
  transform:translateX(-80px);
}

/* RIGHT CARD START POSITION */
.vision{
  border-top:6px solid #674dad;
  transform:translateX(80px);
}

/* SHOW STATE */
.purpose-panel.show{
  opacity:1;
  transform:translateX(0);
}

/* TAG */
.panel-tag{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  font-weight:600;
  margin-bottom:14px;
  color:#ffffff;
  padding:6px 14px;
  border-radius:30px;
}

.mission .panel-tag{ background:#d55191; }
.vision .panel-tag{ background:#d55191; }

/* ICON */
.purpose-panel .icon{
  font-size:32px;
  margin-bottom:12px;
  color:#d55191;
}

/* HEADINGS */
.purpose-panel h3{
  font-size:24px;
  font-weight:700;
  margin-bottom:14px;
  color:#674dad;
}

/* TEXT */
.purpose-panel p{
  font-size:15.5px;
  line-height:1.8;
  color:#000;
  text-align:justify;
}

/* GLOW EFFECT */
.purpose-panel::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:30px;
  background:radial-gradient(circle at top right,
    rgba(213,81,145,0.18),
    transparent 60%);
  opacity:.8;
  pointer-events:none;
}

/* HOVER */
.purpose-panel:hover{
  transform:translateY(-8px);
  box-shadow:0 40px 90px rgba(103,77,173,0.25);
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .purpose-heading{
    font-size:28px;
  }

  .purpose-intro{
    font-size:15px;
    text-align: justify;
    margin-bottom:40px;
  }

  .purpose-panel{
    width:100%;
    max-width:380px;
    padding:38px 26px;
    transform:translateY(50px);
  }

  .purpose-panel.show{
    transform:translateY(0);
  }
}















/* ================= CARE APPROACH ================= */
.care-section {
  padding: 50px 0;
  background: #ffffff;
}

/* HEADING */
.care-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #d55191;
  margin-bottom: 55px;

  /* ZOOM ANIMATION */
  opacity: 0;
  animation: zoomIn 1s ease forwards;
}

/* GRID */
.care-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.care-item {
  position: relative;
  padding: 36px 25px;
  border-radius: 16px;
  border: 1px solid rgba(15,118,110,0.25);
  background: #ffffff;
  transition: 0.3s ease;
  opacity: 0;
}

/* STEP BADGE */
.care-step {
  position: absolute;
  top: -18px;
  left: 25px;
  background: var(--primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
}

/* TEXT */
.care-item h3 {
  font-size: 15.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #d55191;
  margin-bottom: 10px;
}

.care-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #000;
}

/* HOVER */
.care-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(15,118,110,0.35);
}

/* ================= ANIMATIONS ================= */

/* Heading Zoom */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Card Animations */
.care-item:nth-child(1){
  animation: fromLeft 1s ease forwards;
}

.care-item:nth-child(2){
  animation: fromTop 1s ease forwards;
}

.care-item:nth-child(3){
  animation: fromBottom 1s ease forwards;
}

.care-item:nth-child(4){
  animation: fromRight 1s ease forwards;
}

@keyframes fromLeft {
  from { opacity:0; transform:translateX(-60px); }
  to { opacity:1; transform:translateX(0); }
}

@keyframes fromTop {
  from { opacity:0; transform:translateY(-60px); }
  to { opacity:1; transform:translateY(0); }
}

@keyframes fromBottom {
  from { opacity:0; transform:translateY(60px); }
  to { opacity:1; transform:translateY(0); }
}

@keyframes fromRight {
  from { opacity:0; transform:translateX(60px); }
  to { opacity:1; transform:translateX(0); }
}

/* ================= TABLET ================= */
@media (max-width: 1100px) {

  .care-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .care-title {
    font-size: 26px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .care-section {
    padding: 60px 0;
  }

  .care-container {
    grid-template-columns: 1fr;
  }

  .care-title {
    font-size: 24px;
  }

  .care-step {
    left: 20px;
  }
}















:root{
  --faq-blue:#674dad;
  --faq-light:#f4fbfa;
  --faq-white:#ffffff;
  --faq-pink:#d55191;
}

/* SECTION */
.faq-section{
  width:100%;
  padding:35px 15px; /* reduced */
  background:#fff;
}

/* CONTAINER */
.faq-container{
  max-width:1100px;
  margin:auto;
  background:var(--faq-light);
  border-radius:20px;
  padding:30px; /* reduced */
  display:grid;
  grid-template-columns:320px 1fr;
  gap:25px; /* reduced */
  align-items:center;
}

/* IMAGE */
.faq-image img{
  width:100%;
  border-radius:16px;
  display:block;
  object-fit:cover;
}

/* CONTENT */
.faq-subtitle{
  font-size:13px;
  color:#7a8793;
  margin-bottom:6px;
  font-weight:500;
}

.faq-title{
  font-size:38px;
  color:var(--faq-blue);
  font-weight:700;
  margin-bottom:18px; /* reduced */
  line-height:1.2;
}

/* FAQ ITEM */
.faq-item{
  background:var(--faq-white);
  border-radius:14px;
  margin-bottom:12px; /* reduced */
  overflow:hidden;
  box-shadow:0 2px 6px rgba(0,0,0,0.04);
}

/* QUESTION */
.faq-question{
  width:100%;
  border:none;
  background:none;
  padding:18px 22px; /* reduced */
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:16px;
  font-weight:600;
  color:#1d2a36;
  cursor:pointer;
  text-align:left;
}

.faq-question span{
  font-size:22px;
  color:var(--faq-pink);
  font-weight:700;
}

/* ANSWER */
.faq-answer{
  padding:0 22px 18px;
  display:none;
}

.faq-answer p{
  color:#5d6975;
  font-size:14px;
  line-height:1.6;
  margin:0;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  display:block;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .faq-section{
    padding:20px 10px;
  }

  .faq-container{
    grid-template-columns:1fr;
    padding:18px;
    gap:18px;
  }

  .faq-image img{
    max-height:360px;
  }

  .faq-title{
    font-size:26px;
    margin-bottom:15px;
  }

  .faq-subtitle{
    font-size:11px;
  }

  .faq-question{
    padding:14px;
    font-size:13px;
  }

  .faq-question span{
    font-size:18px;
  }

  .faq-answer{
    padding:0 14px 14px;
  }

  .faq-answer p{
    font-size:12px;
    line-height:1.5;
  }
}