/* 
   Therapy Website - Ultra-Luxury Premium Design System
   Theme: Sophisticated Clean Light with Luxury Soft Glows
   Colors based strictly on client logo:
   - Primary: Deep Logo Blue (#194085)
   - Secondary: Spiritual Violet (#7c42a1)
   - Accent: Healing Aqua/Teal (#43b9da)
*/

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Karla:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --primary-color: #194085;       /* Deep Brand Blue */
  --primary-dark: #0f2244;
  --secondary-color: #7c42a1;     /* Wellness Purple */
  --accent-color: #43b9da;        /* Healing Aqua/Teal */
  --accent-light: rgba(67, 185, 218, 0.08);
  
  --white: #ffffff;
  --bg-main: #fbfbfc;            /* Ultra-clean Slate White */
  --bg-warm: #faf8f5;            /* Soft Cream */
  
  --text-main: #0b0f19;
  --text-muted: #3d4a5c;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --font-karla: 'Karla', sans-serif;
  
  --transition-luxury: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-pill: 50px;
  --border-radius-card: 28px;
  
  --shadow-subtle: 0 10px 40px rgba(25, 64, 133, 0.04);
  --shadow-luxury: 0 30px 60px -15px rgba(25, 64, 133, 0.08), 0 0 50px rgba(67, 185, 218, 0.03);
  --shadow-hover: 0 40px 80px -20px rgba(25, 64, 133, 0.15), 0 0 60px rgba(67, 185, 218, 0.1);
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.8;
  position: relative;
}

.padding80 {
  padding: 100px 0 !important;
}

.padding40 {
  padding: 50px 0 !important;
}

.margin80 {
  margin-top: -80px;
  position: relative;
  z-index: 9;
}

.background-white {
  background-color: var(--white) !important;
}

.background-warm {
  background-color: var(--bg-warm) !important;
}

/* ---- Inner Page Banner (About, Services, Contact, Blog) ---- */
.background-overlay-blue {
  background: linear-gradient(135deg, #0d2260 0%, #194085 45%, #7c42a1 100%);
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.background-overlay-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(67, 185, 218, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(124, 66, 161, 0.25) 0%, transparent 55%);
  pointer-events: none;
}
.background-overlay-blue::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.background-overlay-blue .container {
  position: relative;
  z-index: 2;
}


/* Organic Soft Glow Backgrounds (Luxury Brand Aesthetics) */
body::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(67, 185, 218, 0.09) 0%, transparent 70%);
  filter: blur(150px);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: absolute;
  top: 40%;
  left: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 66, 161, 0.06) 0%, transparent 70%);
  filter: blur(160px);
  z-index: -2;
  pointer-events: none;
}

/* Typography & Heading Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  font-family: var(--font-karla);
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Global: remove underlines from ALL links */
a {
  text-decoration: none !important;
}
a:hover {
  text-decoration: none !important;
}

/* Remove underline from all button-like elements */
.btn-premium, .btn-primary-premium, .book-link, .whatsapp-cta,
.cf-submit, [class*="btn"] {
  text-decoration: none !important;
}


/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(25, 64, 133, 0.01);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--accent-color), var(--secondary-color));
  border-radius: 4px;
}

/* Top Info Bar */
.top-bar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-family: var(--font-karla);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}
.top-bar .info ul li i {
  color: var(--accent-color);
  margin-right: 6px;
}
.top-bar a {
  color: var(--white);
  opacity: 0.9;
  text-decoration: none;
  transition: var(--transition-luxury);
}
.top-bar a:hover {
  opacity: 1;
  color: var(--accent-color);
}
.top-bar .social ul {
  justify-content: flex-end;
  gap: 12px;
}
.top-bar .social ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.75rem;
  transition: var(--transition-luxury);
}
.top-bar .social ul li a:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
}

/* Sticky Luxury Navbar */
.logo-area {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(25, 64, 133, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-luxury);
}
.navbar-brand img {
  height: 90px;
  width: auto;
  transition: var(--transition-luxury);
  filter: drop-shadow(0 2px 10px rgba(25,64,133,0.15));
}
.navbar-brand:hover img {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 6px 18px rgba(67,185,218,0.22));
}

/* Nav center: Bootstrap mx-auto on ul handles centering, collapse is flex */
@media (min-width: 992px) {
  .logo-area .navbar-collapse {
    display: flex !important;
    flex: 1;
    align-items: center;
    overflow: visible;
  }
  .logo-area .navbar-collapse .navbar-nav {
    flex-direction: row;
    flex: 1;
    justify-content: center;
  }
}

.nav-link-custom {
  font-weight: 600;
  color: var(--text-main) !important;
  margin: 0 16px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: var(--transition-luxury);
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  transition: var(--transition-luxury);
  transform: translateX(-50%);
}
.nav-link-custom:hover {
  color: var(--primary-color) !important;
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 80%;
}
header .logo-area .navbar .info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition-luxury);
}
header .logo-area .navbar .info a:hover {
  color: var(--accent-color);
}

/* Hero Section Carousel */
.hero-slider-item {
  min-height: 680px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
}
.hero-slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 34, 68, 0.82) 0%, rgba(8, 20, 43, 0.88) 100%);
  z-index: 1;
}
.hero-slider-item .content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-slider-item .content h2 {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
.hero-slider-item .content h2 span {
  color: var(--accent-color);
  background: linear-gradient(135deg, #43b9da, #9b6ddc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-slider-item .content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.4rem;
  margin-top: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Luxury Interactive Buttons */
.btn-premium,
.hero-slider-item .content button,
section .therapy button,
section .clarify button,
section .contact form .input-group button[type="submit"] {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 15px 36px;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-luxury);
  text-transform: uppercase;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none !important;
}
.hero-slider-item .content button,
.btn-primary-premium,
section .therapy button,
section .clarify button,
section .contact form .input-group button[type="submit"] {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(67, 185, 218, 0.25);
  border: none;
}
.hero-slider-item .content button:hover,
.btn-primary-premium:hover,
section .therapy button:hover,
section .clarify button:hover,
section .contact form .input-group button[type="submit"]:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(67, 185, 218, 0.45);
  color: var(--white);
}

/* Services Overlay Cards (Lifting Effect) */
section .service .item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(25, 64, 133, 0.04);
  padding: 40px 35px;
  border-radius: var(--border-radius-card);
  text-align: center;
  transition: var(--transition-luxury);
  position: relative;
  top: 0px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-luxury);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section .service .item:hover {
  top: -20px;
  border-color: rgba(67, 185, 218, 0.3);
  box-shadow: var(--shadow-hover);
}
section .service .item i {
  font-size: 42px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: var(--transition-luxury);
  background: linear-gradient(135deg, rgba(67, 185, 218, 0.08) 0%, rgba(124, 66, 161, 0.08) 100%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(67, 185, 218, 0.15);
}
section .service .item:hover i {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  transform: scale(1.05) rotate(3deg);
  border-color: transparent;
}
section .service .item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
}

/* What Sets Us Apart */
section .apart .item {
  background: var(--white);
  padding: 80px 60px;
  border-radius: var(--border-radius-card);
  border: 1px solid rgba(25, 64, 133, 0.03);
  box-shadow: var(--shadow-luxury);
}
section .apart .item h2 {
  font-size: 2.8rem;
  font-weight: 700;
}
section .apart .item .box {
  background: #fbfbfd;
  border: 1px solid rgba(25, 64, 133, 0.03);
  padding: 50px 30px;
  border-radius: var(--border-radius-card);
  color: var(--text-main);
  text-align: center;
  transition: var(--transition-luxury);
  position: relative;
  top: 0px;
  height: 100%;
}
section .apart .item .box:hover {
  top: -15px;
  background: var(--white);
  border-color: rgba(124, 66, 161, 0.25);
  box-shadow: var(--shadow-hover);
}
section .apart .item .box i {
  font-size: 40px;
  color: var(--secondary-color);
  background: rgba(124, 66, 161, 0.05);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px auto;
  transition: var(--transition-luxury);
  border: 1px solid rgba(124, 66, 161, 0.1);
}
section .apart .item .box:hover i {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  border-color: transparent;
  transform: scale(1.05);
}

/* Approach to Therapy Lists */
section .therapy h2 {
  font-size: 2.8rem;
  font-weight: 700;
}
section .therapy .item {
  background: var(--white);
  border: 1px solid rgba(25, 64, 133, 0.03);
  padding: 40px;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-luxury);
  height: 100%;
}
section .therapy .item:hover {
  border-color: rgba(67, 185, 218, 0.25);
  box-shadow: var(--shadow-hover);
}
section .therapy .item ul {
  padding: 0;
  margin: 0;
}
section .therapy .item ul li {
  list-style: none;
  color: var(--text-main);
  font-weight: 500;
  padding: 12px 0 12px 35px;
  position: relative;
  font-family: var(--font-sans);
}
section .therapy .item ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 14px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: var(--white);
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  font-size: 9px;
  box-shadow: 0 4px 10px rgba(67, 185, 218, 0.3);
}

/* Stats Counter Section */
section .counter {
  padding: 100px 0;
}
section .counter .item .number {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--accent-color);
  text-shadow: 0 10px 25px rgba(67, 185, 218, 0.15);
}

/* Blog Section Layout */
section .blog .item {
  background: var(--white);
  border-radius: var(--border-radius-card);
  border: 1px solid rgba(25, 64, 133, 0.03);
  box-shadow: var(--shadow-luxury);
  transition: var(--transition-luxury);
}
section .blog .item:hover {
  transform: translateY(-10px);
  border-color: rgba(67, 185, 218, 0.25);
  box-shadow: var(--shadow-hover);
}
section .blog .item .image img {
  height: 250px;
}
section .blog .item .content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary-color);
}
section .blog .item .content button {
  border: 1px solid rgba(67, 185, 218, 0.3);
  border-radius: var(--border-radius-pill);
  padding: 10px 26px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* FAQ Accordion */
.accordion-item {
  border-radius: var(--border-radius-card) !important;
  border: 1px solid rgba(25, 64, 133, 0.03) !important;
  box-shadow: var(--shadow-luxury);
}
.accordion-button {
  font-family: var(--font-serif);
  font-size: 19px;
  padding: 24px 30px;
}

/* Contact Form Container */
section .contact form .input-group input[type="text"],
section .contact form .input-group select,
section .contact form .input-group textarea {
  border-radius: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(25, 64, 133, 0.1);
  background: #fafafd;
  transition: var(--transition-luxury);
}
section .contact form .input-group input[type="text"]:focus,
section .contact form .input-group select:focus,
section .contact form .input-group textarea:focus {
  background: var(--white);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(67, 185, 218, 0.15);
}

/* Footer Section */
footer {
  background-color: #080d14;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  color: #8b99aa;
  padding: 90px 0 40px 0 !important;
  font-size: 0.95rem;
}
footer h5 {
  font-family: var(--font-sans);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 25px;
}
footer a {
  color: #8b99aa;
  text-decoration: none;
  transition: var(--transition-luxury);
  display: inline-block;
  margin-bottom: 12px;
}
footer a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  margin-top: 45px;
}

/* Footer logo: transparent PNG shows well on dark background */
footer .logo-container {
  background: transparent !important;
  padding: 0 !important;
}
footer .logo-container img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}


/* Custom interactive cards for subpages (Services page) */
.custom-card {
  background: white;
  border: 1px solid rgba(25, 64, 133, 0.06);
  border-radius: 20px;
  padding: 36px 32px 28px;
  box-shadow: 0 6px 30px rgba(25, 64, 133, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.custom-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #194085, #43b9da, #7c42a1);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom-card:hover::before {
  opacity: 1;
}
.custom-card:hover {
  transform: translateY(-8px);
  border-color: rgba(67, 185, 218, 0.2);
  box-shadow: 0 20px 55px rgba(25, 64, 133, 0.14);
}
.service-icon-img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(67, 185, 218, 0.1), rgba(124, 66, 161, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(67, 185, 218, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 4px;
}
.custom-card:hover .service-icon-img {
  background: linear-gradient(135deg, #194085, #7c42a1);
  border-color: transparent;
}
.custom-card:hover .service-icon-img i {
  color: white !important;
}
.custom-card h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #194085;
  font-size: 1.1rem;
}
.custom-card .book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #194085;
  text-decoration: none;
  margin-top: 20px;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(25, 64, 133, 0.2);
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
}
.custom-card .book-link:hover {
  background: linear-gradient(135deg, #194085, #7c42a1);
  color: white;
  border-color: transparent;
  text-decoration: none;
  transform: translateX(3px);
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
  .margin80 {
    margin-top: 25px !important;
  }
  .hero-slider-item .content h2 {
    font-size: 2.8rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .padding80 {
    padding: 50px 0 !important;
  }
  .padding40 {
    padding: 30px 0 !important;
  }
  .hero-slider-item {
    min-height: 480px !important;
  }
  .hero-slider-item .content {
    padding: 40px 0;
  }
  .hero-slider-item .content h2 {
    font-size: 2rem !important;
  }
  .hero-slider-item .content p {
    font-size: 1.1rem !important;
    margin-top: 15px;
  }
  section .apart .item {
    padding: 40px 20px !important;
  }
  section .apart .item h2 {
    font-size: 1.8rem !important;
  }
  section .therapy h2 {
    font-size: 1.8rem !important;
  }
  
  /* Collapsed Mobile Navbar styling */
  .navbar-collapse {
    background: var(--primary-color);
    padding: 20px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  .nav-link-custom {
    color: var(--white) !important;
    margin: 10px 0;
    text-align: center;
  }
  .nav-link-custom::after {
    display: none;
  }
  header .logo-area .navbar-toggler {
    background-color: rgba(25, 64, 133, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
  }
  header .logo-area .navbar-toggler span {
    color: var(--primary-color) !important;
  }
  body::before, body::after {
    display: none !important;
  }
}
