/* ===== GLOBAL ===== */
:root {
 --bg:#FDF7F7;
 --navy:#0F203C;
 --text:#555;
 --accent:#d6c4a8;
  --space-xs:20px;
  --space-sm:40px;
  --space-md:60px;
  --space-lg:80px;
  --space-xl:120px;
}

body {
 margin:0;
 font-family:'Inter', sans-serif;
 background:var(--bg);
 color:var(--text);
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
}

h1,h2,h3 {
 font-family:'Playfair Display', serif;
 color:var(--navy);
 margin:0;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #1f2a37;
  margin-bottom: 20px;
}
a {
 text-decoration:none;
 color:inherit;
}

/* ===== HEADER ===== */
header {
 display:flex;
 justify-content:space-between;
 align-items:center;
 padding:25px 60px;
 background:#fff;
 border-bottom:1px solid #eee;
}

nav a {
 margin-left:25px;
 font-weight:500;
 color:var(--navy);
}

/* ===== LOGO UPGRADE ===== */
.logo-text-wrapper {
 display:flex;
 flex-direction:column;
 line-height:1.1;
}

.logo-name {
 font-family:'Playfair Display', serif;
 font-size:24px;
 font-weight:600;
 letter-spacing:1px;
 color:var(--navy);
}

.logo-subtitle {
 font-size:11px;
 letter-spacing:1.5px;
 text-transform:uppercase;
 color:#888;
 margin-top:2px;
}

.logo-subtitle {
 font-size:10px;
 letter-spacing:2px;
 text-transform:uppercase;
 color:#aaa;
}

/* ===== HERO ===== */
.hero {
 height:70vh;
 background:linear-gradient(135deg,#0F203C,#1e3a5f);
 display:flex;
 align-items:center;
 justify-content:center;
 text-align:center;
 color:#fff;
 padding:var(--space-xl) 20px var(--space-lg);
}
.hero-content {
 max-width:700px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 20px;
}
.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #e5e7eb;
  max-width: 520px;
}

.hero-clean {
    text-align:center;
    padding:100px 20px;
    max-width:800px;
    margin:auto;
}

.hero-clean h1 {
    font-size:52px;
    margin-bottom:20px;
}

.hero-clean p {
    font-size:18px;
    color:#666;
    margin-bottom:30px;
}

.hero-trust {
    margin-top:20px;
    font-size:14px;
    color:#ddd;
    line-height:1.6;
}
.trust-block {
    text-align:center;
    padding:60px 20px;
    max-width:800px;
    margin:0 auto;
}

.trust-block p {
    font-family:'Playfair Display', serif;
    font-size:26px;
    color:#0F203C;
    line-height:1.6;
}
.trust-block p::before {
    content:"";
    display:block;
    width:50px;
    height:2px;
    background:#d6c4a8;
    margin:0 auto 25px;
}
/* ===== SERVICES ===== */
.service-grid {
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:40px;
    margin-top:40px;
}
/* CARD */
.card {
    background:#fff;
    padding:30px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:all 0.35s ease;
    border:1px solid #f3ede8;
}

.card img {
    width:100%;
    border-radius:15px;
    margin-bottom:15px;
    height:auto;
    display:block;
}

.card:hover {
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.card i {
  transition: transform 0.3s ease;
}

.card:hover i {
  transform: scale(1.1);
}

@media(max-width:768px){
    .service-grid {
        grid-template-columns:1fr;
    }
}

.why-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

.why-card {
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s ease;
    border:1px solid #f3ede8;
}

.why-card h3 {
    margin-bottom:10px;
    font-size:18px;
}

.why-card p {
    color:#666;
    font-size:14px;
    line-height:1.6;
}

.why-card:hover {
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

@media(max-width:768px){
    .why-grid {
        grid-template-columns:1fr;
    }
}

/* ===== BUTTON ===== */
.btn-primary {
 display:inline-block;
 padding:14px 30px;
 border-radius:30px;
 background:var(--accent);
 color:#0F203C;
 font-weight:500;
 margin-top:20px;
}

/* ===== SECTION ===== */
.section {
  max-width:1100px;
  margin:var(--space-xl) auto;
  padding:0 20px;
}
.section p {
  margin-bottom:20px;
}

.section h2 {
  margin-bottom:var(--space-sm);
}

.hero + .section-center {
  margin-top:var(--space-lg);
}

.section + .section {
  padding-top:40px;
  margin-top:var(--space-md);
}

.section + .benefits {
    padding-top:40px;
}

.section-center p {
    margin:20px auto 30px;
    max-width:600px;
}
.section-center h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: #1f2a37;
  margin-bottom: 10px;
}
.section-note {
    text-align:center;
    margin-top:40px;
    color:#777;
    font-size:15px;
    max-width:600px;
    margin-left:auto;
    margin-right:auto;
    line-height:1.6;
}

.credentials-sub {
    margin-top:6px;
    font-size:13px;
    color:#999;
}

.cred-title {
    font-size:14px;
    color:#0F203C;
    margin-top:8px;
    font-weight:500;
}

.about-intro {
    margin-top:12px;
    color:#555;
    line-height:1.7;
    max-width:520px;
}

.about img,
.doctor-placeholder {
    border-radius:25px;
    background:#eae4dc;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#aaa;
    font-size:14px;
    height:420px;
}

.profile-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}
/* FULL WIDTH BACKGROUND WRAPPER */

.section-bg {
  background:#faf7f5;
  padding:var(--space-lg) 0;
}
.section-center {
  text-align:center;
  max-width:800px;
  margin:var(--space-lg) auto;
}

/* WHO SECTION ALIGNMENT */
.who-content {
 display:flex;
 flex-direction:column;
 justify-content:center;
 max-width:420px;   /* keeps text tighter */
}
.who-content h2 {
 margin-bottom:10px;
}
.grid-2 {
 display:grid;
 grid-template-columns:1fr 1fr;
 gap:70px;   /* increase spacing */
 align-items:center;
}
.grid-2 img {
 border-radius:25px;
 box-shadow:0 10px 30px rgba(0,0,0,0.08);
 width:100%;
 height:auto;
 display:block;
}
/* BETTER BULLETS */
.feature-list {
 list-style:none;
 padding:0;
 margin-top:15px;
}

.feature-list li {
 position:relative;
 padding-left:28px;
 margin-bottom:12px;
 color:#555;
}

/* elegant dot instead of ✓ */
.feature-list li::before {
 content:"•";
 position:absolute;
 left:0;
 color:var(--navy);
 font-size:20px;
 top:-2px;
}

/* custom tick */
.feature-list li::before {
 content:"✓";
 position:absolute;
 left:0;
 color:var(--accent);
 font-weight:600;
}

.grid-3 {
 display:grid;
 grid-template-columns:repeat(3,1fr);
 gap:30px;
 margin-top:var(--space-md);
}

.profile-placeholder {
    width:100%;
    height:420px;
    border-radius:25px;
    background:linear-gradient(135deg,#f3ece7,#e8dfd8);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#aaa;
    font-size:14px;
    letter-spacing:1px;
}

.about-intro {
    font-size:17px;
    color:#444;
    margin-bottom:15px;
}

/* PROCEDURE CARD REFINEMENT */
.grid-3 div {
 background:#0F203C;
 color:#fff;
 padding:40px 30px;
 border-radius:25px;
 transition:0.3s ease;
 border:1px solid rgba(255,255,255,0.05);
}
/* Title */
.grid-3 h3 {
 color:#fff;
 font-size:20px;
 margin-bottom:12px;
}

/* Description */
.grid-3 p {
 color:#d1d5db;
 margin-bottom:15px;
}

/* Bullet points */
.grid-3 li {
 color:#cbd5e1;
 margin-bottom:6px;
}

.grid-3 div:hover {
 transform:translateY(-6px);
 box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* ===== PREMIUM TREATMENT GRID ===== */

.area-grid {
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:30px;
}
/* CARD */
.area-card {
    position:relative;
    overflow:hidden;
    border-radius:22px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.4s ease;
}

/* IMAGE */

.area-card img {
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

/* OVERLAY (SUBTLE DARK GRADIENT) */
.area-card::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.35), transparent);
    opacity:0;
    transition:0.4s;
}

/* TEXT */
.area-card p {
    position:absolute;
    bottom:18px;
    left:20px;
    margin:0;
    color:#fff;
    font-weight:500;
    letter-spacing:0.5px;
    font-size:15px;
    z-index:2;
}

/* HOVER EFFECT */
.area-card:hover img {
    transform:scale(1.06);
}

.area-card:hover::after {
    opacity:1;
}

.area-card:hover {
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

.section h2 {
    margin-bottom:40px;
}

@media(max-width:768px){
    .area-grid {
        grid-template-columns:1fr;
    }
}

/* ===== DARK SECTION ===== */
.dark-section {
 background:linear-gradient(135deg,#2d1b3d,#0f203c);
 padding:100px 20px;
 text-align:center;
 color:#fff;
}

.dark-section h2 {
 color:#fff;
}

.dark-section p {
 color:#eee;
 max-width:750px;
 margin:20px auto 0;
}

/* ===== BENEFITS ===== */
.benefits {
 background:#F6F1EB;
 padding:80px 20px;
 text-align:center;
}

.benefits-grid {
 display:grid;
 grid-template-columns:repeat(3,1fr);
 gap:30px;
 max-width:1100px;
 margin:40px auto 0;
}

.benefit-card {
 background:#fff;
 padding:30px;
 border-radius:20px;
 box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* ===== JOURNEY TIMELINE ===== */
.journey {
 max-width:800px;
 margin:auto;
 position:relative;
}

.journey::before {
 content:"";
 position:absolute;
 left:25px;
 top:0;
 width:2px;
 height:100%;
 background:#e5e7eb;
}

.journey-step {
 display:flex;
 align-items:flex-start;
 margin-bottom:60px;
 position:relative;
}
.journey-step:hover .circle {
 background:#d6c4a8;
 color:#0F203C;
}

.circle {
 width:52px;
 height:52px;
 font-size:16px;
 border-radius:50%;
 background:#0F203C;
 color:#fff;
 display:flex;
 align-items:center;
 justify-content:center;
 font-weight:600;
 margin-right:20px;
 flex-shrink:0;
}
.content h3 {
 margin-bottom:5px;
}

.content p {
 color:#666;
}

.btn-primary {
  background-color: #cbb89d;
  color: #1f2a37;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 30px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #b8a88f;
}

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

.faq-item {
    border-radius:16px;
    margin-bottom:20px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,0.04);
    overflow:hidden;
    transition:0.3s ease;
    border:1px solid #f1ebe7;
}


/* HOVER LIFT */
.faq-item:hover {
    transform:translateY(-2px);
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

/* QUESTION */
.faq-question {
    padding:22px 24px;
    cursor:pointer;
    font-weight:500;
    color:#333;
    position:relative;
}

/* ARROW */
.faq-question::after {
    content:"+";
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    font-size:20px;
    color:#999;
    transition:0.3s;
}

/* ACTIVE STATE */
.faq-item.active .faq-question::after {
    content:"−";
    color:#0F203C;
}

/* ANSWER */
.faq-answer {
    max-height:0;
    overflow:hidden;
    transition:all 0.35s ease;
    padding:0 24px;
    color:#666;
    line-height:1.7;
}

/* OPEN */
.faq-item.active .faq-answer {
    max-height:300px;
    padding:0 24px 20px;
}

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

.cta h2 {
    margin-bottom:15px;
}

/* THIS IS THE KEY */
.cta-subtext {
    color:#777;
    font-size:16px;
    max-width:520px;
    margin:0 auto 30px;
    line-height:1.6;
}

.cta {
    text-align:center;
    max-width:700px;
    background:#f8f3ef;
    border-radius:30px;
    margin:var(--space-xl) auto;
    padding:var(--space-lg) 30px;
}
.cta .btn-primary {
    margin-top:20px;
}

.cta-note {
    margin-top:12px;
    font-size:13px;
    color:#888;
}
/* ===== MOBILE ===== */
@media(max-width:768px){
 .grid-2,
 .grid-3 {
  grid-template-columns:1fr;
 }
}
@media(max-width:768px){
    .sticky-cta {
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        background:#fff;
        padding:12px;
        box-shadow:0 -5px 20px rgba(0,0,0,0.08);
        text-align:center;
    }
}
