/* =============================================
   THE SOUL SQUARE - Complete Theme Styles
   Design clone of psykeo.themeht.com
   Colors: #4A7C59 (primary), #2D5A3D (dark)
   Fonts: Barlow Condensed (headings), DM Sans (body)
   ============================================= */

/* --- CSS Variables --- */
:root {
    --primary: #4A7C59;
    --primary-dark: #2D5A3D;
    --primary-light: #6B9F7B;
    --primary-rgb: 74, 124, 89;
    --secondary: #3F3F44;
    --dark: #3F3F44;
    --text-color: #666666;
    --body-color: #666666;
    --white: #FFFFFF;
    --light: #EFF6F4;
    --border: #DDDCDC;
    --bg-light: #f8faf8;
    --font-body: 'DM Sans', sans-serif;
    --font-heading: 'Barlow Condensed', sans-serif;
}

/* --- Reset / Cross-Browser Normalization --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 26px;
    color: var(--body-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}
a { text-decoration: none; transition: all 0.3s ease; -webkit-transition: all 0.3s ease; }
img { max-width: 100%; height: auto; -ms-interpolation-mode: bicubic; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; }
p { margin: 0 0 16px; }
button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col-lg-3 { padding: 0 15px; width: 25%; }
.col-lg-4 { padding: 0 15px; width: 33.333%; }
.col-lg-5 { padding: 0 15px; width: 41.666%; }
.col-lg-6 { padding: 0 15px; width: 50%; }
.col-lg-7 { padding: 0 15px; width: 58.333%; }
.col-lg-8 { padding: 0 15px; width: 66.666%; }
.col-md-6 { padding: 0 15px; width: 50%; }
.text-center { text-align: center; }
.text-end { text-align: right; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-end { justify-content: flex-end; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }
.m-0 { margin: 0; }
.p-0 { padding: 0; }
.list-inline { display: flex; gap: 8px; padding-left: 0; }
.list-inline-item { display: inline-block; }
.img-fluid { max-width: 100%; height: auto; }
.d-inline-block { display: inline-block; }
.w-100 { width: 100%; }

/* --- Typography --- */
h1, .h1 { font-family: var(--font-heading); font-weight: 600; font-size: 100px; line-height: 1.1; }
h2, .h2 { font-family: var(--font-heading); font-weight: 600; font-size: 50px; line-height: 1.2; }
h3, .h3 { font-family: var(--font-heading); font-weight: 600; font-size: 36px; line-height: 1.3; }
h4, .h4 { font-family: var(--font-heading); font-weight: 600; font-size: 28px; line-height: 1.4; }
h5, .h5 { font-family: var(--font-heading); font-weight: 600; font-size: 24px; line-height: 1.4; }
h6, .h6 { font-family: var(--font-heading); font-weight: 600; font-size: 22px; line-height: 1.3; }
p { margin-bottom: 16px; }

/* --- Buttons (themeht-btn clone) --- */
.themeht-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1;
    text-transform: capitalize;
}
.themeht-btn i { font-size: 14px; }
.themeht-btn.white-btn {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}
.themeht-btn.white-btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}
.themeht-btn.primary-btn {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.themeht-btn.primary-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
}
.themeht-btn.secondary-btn {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}
.themeht-btn.secondary-btn:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-3px);
}
.themeht-btn.outline-btn {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.themeht-btn.outline-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-3px);
}
.btn-group-flex { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Section Title (theme-title clone) --- */
.theme-title { margin-bottom: 50px; }
.theme-title h6 {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}
.theme-title h6::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: var(--primary);
}
.theme-title h2 {
    color: var(--dark);
    max-width: 600px;
}
.theme-title.center { text-align: center; }
.theme-title.center h6 { padding-left: 0; }
.theme-title.center h6::before { display: none; }
.theme-title.center h2 { max-width: 100%; margin: 0 auto; }

/* --- Section Spacing --- */
.section-padding { padding: 100px 0; }
.light-bg { background: var(--light); }
.white-bg { background: var(--white); }

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}
#header-wrap { padding: 0; }
.header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    transition: all 0.3s ease;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */
.navbar-brand.logo { display: flex; align-items: center; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    white-space: nowrap;
}
.logo-dark { color: var(--dark) !important; }
.sticky-logo { display: none; }

/* Phone Number */
.phone-num {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}
.phone-num i { font-size: 20px; color: var(--white); }
.phone-num a { color: var(--white); font-weight: 600; font-size: 16px; }
.phone-num span { display: block; font-size: 12px; opacity: 0.8; }

/* Appointment Button */
.header-btns {
    display: flex;
    align-items: center;
    gap: 12px;
}
.appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.appointment-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
}

/* Login Button */
.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.login-btn:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.site-header.sticky .menu-toggle span { background: var(--dark); }

/* Mobile Close */
.mobile-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    z-index: 10;
}

/* Mobile Nav Buttons (inside mobile menu) */
.mobile-nav-btns {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.mobile-nav-btns .appointment-btn,
.mobile-nav-btns .login-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    display: flex;
}
.mobile-nav-btns .login-btn {
    border-color: var(--border);
    color: var(--dark);
}
.mobile-nav-btns .login-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}
.main-nav .menu,
.main-nav ul {
    display: flex;
    gap: 0;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav .menu li,
.main-nav ul li { position: relative; }
.main-nav .menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.main-nav .menu li a:hover,
.main-nav .menu li.current-menu-item a,
.main-nav .menu li.current_page_item a {
    color: var(--primary-light);
}
/* Dropdown */
.main-nav .menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.main-nav .menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav .menu li .sub-menu li a {
    padding: 8px 24px;
    color: var(--dark);
    font-size: 14px;
}
.main-nav .menu li .sub-menu li a:hover {
    color: var(--primary);
    background: var(--light);
}

/* Mobile Toggle */
.nav-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
}
.ht-mobile-menu-bg {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Right Nav */
.right-nav { gap: 16px; }
.search-icon a {
    color: var(--white);
    font-size: 18px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.search-icon a:hover { background: rgba(255,255,255,0.1); }

/* Search Overlay */
.search-input {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.search-input.active {
    opacity: 1;
    visibility: visible;
}
.search-inner-box { width: 100%; max-width: 600px; padding: 20px; }
.search-form {
    display: flex;
    position: relative;
}
.search-form .search-field {
    width: 100%;
    padding: 16px 60px 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark);
}
.search-form .search-submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-search {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}

/* Sticky Header */
.site-header.sticky {
    position: fixed;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.site-header.sticky .logo-text { color: var(--dark); }
.site-header.sticky .header-in { padding: 12px 30px; }
.site-header.sticky .main-nav .menu li a,
.site-header.sticky .main-nav ul li a { color: var(--dark); }
.site-header.sticky .main-nav .menu li a:hover,
.site-header.sticky .main-nav .menu li.current-menu-item a,
.site-header.sticky .main-nav ul li a:hover,
.site-header.sticky .main-nav ul li.current-menu-item a { color: var(--primary); }
.site-header.sticky .phone-num { color: var(--dark); }
.site-header.sticky .phone-num i,
.site-header.sticky .phone-num a { color: var(--dark); }
.site-header.sticky .appointment-btn { background: var(--primary); color: var(--white); }
.site-header.sticky .login-btn { border-color: rgba(0,0,0,0.15); color: var(--dark); }
.site-header.sticky .login-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.site-header.sticky .main-nav .menu li .sub-menu li a { color: var(--text-color); }

/* =============================================
   HERO SLIDER (Swiper - exact Psykeo clone)
   ============================================= */
.banner-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    max-height: 950px;
    overflow: hidden;
}
.banner-slider .swiper-slide {
    position: relative;
    height: 100%;
}
.slider-img {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease-out;
}
.banner-slider .swiper-slide-active .slider-img {
    transform: scale(1.05);
}
.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    color: var(--white);
}
.banner-content h6 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.banner-content h6 span {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 20px;
    border-radius: 50px;
    margin-right: 12px;
    font-size: 14px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.banner-content h1 {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 600;
    line-height: 1.05;
    max-width: 700px;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.15);
}
.banner-content p {
    font-family: var(--font-body);
    font-size: 18px;
    max-width: 560px;
    line-height: 1.7;
    opacity: 0.92;
}
.banner-content .btn-box { display: flex; gap: 16px; flex-wrap: wrap; }

/* Swiper Navigation Arrows */
.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
    color: var(--white);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}
.banner-slider .swiper-button-next:hover,
.banner-slider .swiper-button-prev:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}
.banner-slider .swiper-button-next::after,
.banner-slider .swiper-button-prev::after {
    font-size: 20px;
}



/* =============================================
   ANIMATIONS
   ============================================= */
.marquee-swiper { overflow: hidden; padding: 20px 0; }
.marquee-section { width: auto !important; }
.marquee-text {
    padding: 0 30px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    white-space: nowrap;
}
.marquee-text span { display: inline-block; }
.marquee-section.style1 .marquee-text {
    border-right: 2px solid var(--border);
}
.marquee-section.style2 .marquee-text {
    border-right: 2px solid rgba(0,0,0,0.08);
}
.text-black .marquee-text { color: var(--dark); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-img-wrap { position: relative; }
.about-img-block {
    width: 100%;
    aspect-ratio: 1;
    min-height: 300px; /* fallback for browsers without aspect-ratio */
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-icon {
    font-size: 160px;
    color: rgba(255,255,255,0.15);
}
.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.3);
}
.about-exp-badge .exp-num {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    display: block;
    line-height: 1;
}
.about-exp-badge .exp-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 4px;
    display: block;
}
.about-highlights { margin: 28px 0 32px; }
.highlight-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.highlight-item:first-child { border-top: 1px solid var(--border); }
.highlight-num { color: var(--primary); margin-right: 10px; font-size: 22px; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.service-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    margin-bottom: 30px;
}
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.service-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.service-icon-bg i {
    font-size: 56px;
    color: rgba(255,255,255,0.8);
    transition: all 0.4s ease;
}
.service-item:hover .service-icon-bg i {
    transform: scale(1.1);
}
.service-desc { padding: 28px 24px; }
.service-title h4 { margin-bottom: 10px; }
.service-title h4 a {
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.service-title h4 a:hover { color: var(--primary); }
.service-desc p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 16px;
}
.arrow-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-top: 1px solid var(--border);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}
.arrow-button:hover {
    background: var(--primary);
    color: var(--white);
    gap: 14px;
}
.arrow-button i { font-size: 12px; transition: all 0.3s ease; }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.stat-box {
    text-align: center;
    color: var(--white);
    padding: 30px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.stat-box:hover {
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-4px);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 15px;
    opacity: 0.85;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-swiper { max-width: 800px; margin: 0 auto; }
.testimonial.style-1 {
    text-align: center;
    padding: 40px;
}
.testimonial-icon-wrap {
    font-size: 52px;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1;
}
.testimonial.style-1 p {
    font-style: italic;
    font-size: 18px;
    line-height: 1.85;
    color: var(--text-color);
    margin-bottom: 24px;
}
.testimonial.style-1 h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
}
.swiper-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    position: relative;
}
.swiper-nav-arrow .swiper-button-next,
.swiper-nav-arrow .swiper-button-prev {
    position: static;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.swiper-nav-arrow .swiper-button-next:hover,
.swiper-nav-arrow .swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
}
.swiper-nav-arrow .swiper-button-next::after,
.swiper-nav-arrow .swiper-button-prev::after {
    font-size: 16px;
}
.swiper-nav-arrow .swiper-pagination { position: static; width: auto; }
.swiper-nav-arrow .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border);
    opacity: 1;
}
.swiper-nav-arrow .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Rating */
.testimonial-reting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.teting-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--dark);
}
.testimonial-reting-text {
    font-weight: 600;
    color: var(--dark);
}
.reting-icon {
    display: flex;
    gap: 4px;
    color: #F4A422;
    font-size: 18px;
    margin-bottom: 4px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: 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");
    opacity: 0.5;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}
.cta-content p {
    font-size: 18px;
    max-width: 580px;
    margin: 0 auto 40px;
    opacity: 0.92;
    line-height: 1.7;
    color: var(--white);
}

/* =============================================
   BLOG SECTION
   ============================================= */
.post-swiper { overflow: hidden; }
.post-card.style-2 {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    margin: 15px;
}
.post-card.style-2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.post-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}
.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.post-card.style-2:hover .post-image img { transform: scale(1.05); }
.post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.post-placeholder i { font-size: 48px; color: rgba(255,255,255,0.3); }
.post-cat {
    position: absolute;
    top: 16px;
    left: 16px;
}
.cat-links a, .cat-links {
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}
.post-desc { padding: 24px; }
.post-bottom {
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-color);
    gap: 16px;
}
.post-bottom i { margin-right: 6px; color: var(--primary); }
.post-title h4 { margin-bottom: 8px; }
.post-title h4 a { color: var(--dark); transition: color 0.3s; }
.post-title h4 a:hover { color: var(--primary); }
.swiper-nav-none { position: relative; }
.swiper-nav-none .swiper-button-next,
.swiper-nav-none .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
}
.swiper-nav-none .swiper-button-next:hover,
.swiper-nav-none .swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
}
.swiper-nav-none .swiper-button-next::after,
.swiper-nav-none .swiper-button-prev::after { font-size: 16px; }
.swiper-nav-none .swiper-pagination { position: static; margin-top: 20px; }
.swiper-nav-none .swiper-pagination-bullet { background: var(--border); opacity: 1; }
.swiper-nav-none .swiper-pagination-bullet-active { background: var(--primary); }

/* =============================================
   PAGE BANNER (for inner pages)
   ============================================= */
.page-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
}
.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 600;
}
.page-banner .post-meta {
    margin-top: 16px;
    opacity: 0.85;
    font-size: 15px;
}
.page-banner .post-meta span { margin: 0 12px; }
.page-banner .post-meta i { margin-right: 6px; }

/* =============================================
   FOOTER (exact Psykeo clone)
   ============================================= */
.footer { background: var(--dark); color: var(--white); }
.primary-footer { padding: 60px 0 40px; }

/* Footer Top CTA Bar */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ftr-cta-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
}
.footer-top-button { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* Footer Logo */
.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}
.footer-widget { margin-bottom: 28px; }
.footer-widget p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.7; }
.footer-info { margin-top: 20px; }
.footer-info-in {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.footer-info-in i { color: var(--primary-light); font-size: 18px; margin-top: 4px; }
.footer-info-in a { color: rgba(255,255,255,0.8); transition: color 0.3s; }
.footer-info-in a:hover { color: var(--white); }
.footer-info-in p { color: rgba(255,255,255,0.7); margin: 0; font-size: 14px; }

/* Footer Widget Titles */
.widget-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* Footer Menu */
.footer-widget .menu { padding: 0; }
.footer-widget .menu li { margin-bottom: 10px; }
.footer-widget .menu li a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-widget .menu li a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-size: 10px;
    color: var(--primary);
}
.footer-widget .menu li a:hover { color: var(--white); padding-left: 6px; }

/* Footer Social */
.footer-social { margin-top: 20px; }
.footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    margin-right: 8px;
}
.footer-social li a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Secondary Footer (Copyright) */
.secondary-footer {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}
.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-align: center;
}
.copyright a { color: var(--primary-light); }
.copyright a:hover { color: var(--white); }

/* =============================================
   BACK TO TOP
   ============================================= */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 48px;
    height: 48px;
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top svg { border-radius: 50%; }
.scroll-top .svg-content path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    transition: stroke-dashoffset 0.3s;
}
.scroll-top:hover .svg-content path { stroke: var(--primary-dark); }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: waPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* =============================================
   RESPONSIVE: Tablet (992px)
   ============================================= */
@media (max-width: 992px) {
    h1, .h1 { font-size: 56px; }
    h2, .h2 { font-size: 40px; }
    .section-padding { padding: 70px 0; }

    /* Columns stack on tablet */
    .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-md-6 { width: 100%; }

    /* Header */
    .phone-num { display: none; }
    .header-btns { gap: 8px; }
    .appointment-btn, .login-btn { padding: 8px 16px; font-size: 12px; }
    .appointment-btn span, .login-btn span { display: none; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        overflow-y: auto;
    }
    .main-nav.active { right: 0; }
    .main-nav .menu, .main-nav ul { flex-direction: column; width: 100%; }
    .main-nav .menu li a, .main-nav ul li a { color: var(--dark); padding: 12px 0; border-bottom: 1px solid var(--border); }
    .main-nav .menu li .sub-menu, .main-nav ul li .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 20px; }
    .main-nav .menu li .sub-menu li a, .main-nav ul li .sub-menu li a { padding: 8px 0; border-bottom: none; }
    .menu-toggle { display: flex; }
    .mobile-close { display: block; }
    .mobile-nav-btns { display: flex; }
    .ht-mobile-menu-bg.active { display: block; opacity: 1; }

    /* Hero */
    .banner-content { padding: 0 30px; }
    .banner-content h1 { font-size: 54px; }
    .banner-slider .swiper-button-next,
    .banner-slider .swiper-button-prev { width: 48px; height: 48px; }

    /* About */
    .about-img-block { aspect-ratio: 4/3; }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* =============================================
   RESPONSIVE: Mobile (768px)
   ============================================= */
@media (max-width: 768px) {
    h1, .h1 { font-size: 40px; }
    h2, .h2 { font-size: 32px; }
    h3, .h3 { font-size: 28px; }
    .section-padding { padding: 60px 0; }

    .banner-content h1 { font-size: 42px; }
    .banner-content h6 { font-size: 14px; letter-spacing: 2px; }
    .banner-content p { font-size: 16px; }
    .banner-content .btn-box { flex-direction: column; gap: 12px; }
    .banner-slider { min-height: 550px; }

    .about-exp-badge { bottom: 16px; right: 16px; padding: 18px 24px; }
    .about-exp-badge .exp-num { font-size: 34px; }

    .cta-content h2 { font-size: 34px; }

    .footer-top { flex-direction: column; text-align: center; gap: 20px; }
    .footer-top-button { justify-content: center; }
    .ftr-cta-text { font-size: 22px; }

    .testimonial-reting { flex-direction: column; gap: 12px; }
    .teting-number { font-size: 38px; }
}

/* =============================================
   RESPONSIVE: Small Mobile (576px)
   ============================================= */
@media (max-width: 576px) {
    h1, .h1 { font-size: 34px; }
    h2, .h2 { font-size: 28px; }
    .container { padding: 0 15px; }
    .banner-content { padding: 0 20px; }
    .banner-content h1 { font-size: 34px; }
    .banner-slider { min-height: 500px; }
    .themeht-btn { padding: 12px 24px; font-size: 14px; }
    .btn-group-flex { flex-direction: column; align-items: stretch; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-number { font-size: 36px; }
    .stat-box { padding: 20px 12px; }
    .cta-section { padding: 60px 0; }
    .cta-content h2 { font-size: 28px; }
    .page-banner { padding: 120px 0 60px; }
    .page-banner h1 { font-size: 36px; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 26px; bottom: 20px; right: 20px; }
    .scroll-top { right: 82px; bottom: 20px; width: 42px; height: 42px; }
    .header-btns { gap: 6px; }
    .appointment-btn, .login-btn { padding: 6px 12px; font-size: 11px; }
}

/* =============================================
   RESPONSIVE: Mobile (768px)
   ============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
