/* =========================================================================
   Base & Variables
   ========================================================================= */
:root {
    --color-dark-navy: #1a1528;
    --color-purple: #c198c6;
    --color-purple-light: #e5d9e8;
    --color-footer-purple: #7b70a6;
    --color-cream: #fff9f2;
    --color-white: #ffffff;
    --color-text-body: #000;
    --color-text-dark: #222222;

    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Lato', sans-serif;

    --transition: all 0.3s ease;
    --font-primary: 'Inter', sans-serif;

    --color-1: #c298c6;
    --color-2: #F7F7F7;
    --link-hover: #e3b077;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
    unicode-range: U +0460 -052F, U +1C80 -1C8A, U +20B4, U +2DE0 -2DFF, U + A640-A69F, U + FE2E-FE2F;
}

.bg-2 {
    background-color: var(--color-2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.custom-list {
    list-style: disc;
    color: black;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-body);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-narrow {}

/* =========================================================================
   Typography & Common Elements
   ========================================================================= */
.subtitle {
    display: inline-block;
    color: var(--color-purple);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    color: var(--color-dark-navy);
    font-size: 2.6rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-text {
    /* color: var(--color-text-body); */
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: black;
}

.text-warning {
    color: #f2b827 !important;
}

.bg-1 .section-title {
    color: white;
}

.appointment-form-wrapper {
    background-color: var(--color-1);
    padding: 40px;
    border-radius: 4px;

}

.section {
    padding: 60px 0;
}

.bg-1 {
    background-color: var(--color-1)
}

/* =========================================================================
   Experience Section
   ========================================================================= */
.experience-collage-section {
    padding: 60px 0 100px;
    background-color: var(--color-white);
}

.exp-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* or flex-start based on collage */
    gap: 60px;
}

.exp-text-col {
    flex: 1 1 45%;
}

.exp-timeline {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.timeline-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background-color: var(--color-cream);
    color: var(--color-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.timeline-icon.bg-purple {
    background-color: var(--color-purple);
}

.timeline-icon.bg-light-purple {
    background-color: var(--color-purple-light);
    color: var(--color-dark-navy);
}

.timeline-content h4 {
    color: var(--color-dark-navy);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--color-text-body);
    font-size: 0.95rem;
    line-height: 1.5;
}

.exp-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.users-group {
    display: flex;
}

.users-group img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    margin-left: -12px;
    object-fit: cover;
}

.users-group img:first-child {
    margin-left: 0;
}

.user-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark-navy);
    line-height: 1.3;
}

.user-text i {
    font-size: 0.75rem;
}

/* Collage adjustments (screenshot shows 2 side-by-side above 1 wide) */
.exp-img-col {
    flex: 1 1 45%;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.collage-grid img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.img-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 300px;
    /* example */
}

.img-square {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 300px;
}

.img-wide {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    height: 200px;
}

/* =========================================================================
   Stats Cream Banner
   ========================================================================= */
.stats-banner {
    background-color: var(--color-cream);
    padding: 60px 0;
}

.flex-stats {
    /* The screenshot shows text on left, and stat icons row underneath/next to it? Actually it's text "Delivering best results..." above the 4 stats in a lighter cream banner. */
    text-align: center;
}

.stat-banner-title h2 {
    font-family: var(--font-heading);
    color: var(--color-dark-navy);

    margin-bottom: 40px;
}

.stat-item i {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--color-purple);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.08);
}

.stat-item img {
    height: 40px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-item h3 {
    font-family: var(--font-heading);
    color: var(--color-dark-navy);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Utilities */
.text-purple {
    color: var(--color-purple) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.7) !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    padding: 12px 28px;
}

.btn-primary-purple {
    background: linear-gradient(135deg, var(--color-purple) 0%, #a272a8 100%);
    color: var(--color-white);
    border: none;
    box-shadow: 0 4px 15px rgba(193, 152, 198, 0.4);
}

.btn-primary-purple:hover {
    background: linear-gradient(135deg, #a272a8 0%, var(--color-purple) 100%);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(193, 152, 198, 0.6);
}

.btn-primary-dark {
    background-color: var(--color-dark-navy);
    color: var(--color-white);
}

.btn-primary-dark:hover {
    background-color: var(--color-purple);
}

/* =========================================================================
   Top Bar
   ========================================================================= */
.top-bar {
    background-color: #2b2847;
    color: var(--color-white);
    font-size: 0.85rem;
    padding: 0;
    overflow: hidden;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.top-bar-left {
    padding: 12px 0;
    display: flex;
    align-items: center;
}

.top-bar-left i {
    color: #c198c6;
    margin-right: 8px;
    font-size: 1rem;
}

.top-bar-right {
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 20px;
    position: relative;
}

.top-bar-right::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 50vw;

    background-color: var(--color-dark-navy);
}

.top-bar-right a {
    color: #a3a2af;
    font-size: 1rem;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--color-purple);
}

/* =========================================================================
   Header Navigation
   ========================================================================= */
.header {
    background-color: var(--color-white);
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 6px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.main-nav a {
    font-family: var(--font-primary);
    color: #18162b;
    font-weight: 500;
    font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--link-hover) !important;
}

.main-nav .nav-arrow {
    font-size: 0.75rem;
    margin-left: 5px;
    color: #888;
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero-section {
    position: relative;

    background-color: #2b2847;
    background-image: url('../images/hero-banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.hero-section .overlay {
    background-color: rgba(0, 0, 0, 0.12);
    padding-top: 150px;
    padding-bottom: 250px;

}

/* the original image has a doctor injecting a woman. This image URL from classic site seems close. Will verify later */

.hero-inner {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 550px;
}

.hero-content .title {
    font-family: var(--font-heading);
    color: var(--color-dark-navy);
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content .description {
    font-size: 1rem;
    color: var(--color-text-body);
    margin-bottom: 35px;
    max-width: 450px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.btn-video-play {
    color: var(--color-dark-navy);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
}

.btn-video-play .play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-purple);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(193, 152, 198, 0.4);
}

.btn-video-play:hover {
    color: var(--color-purple);
}

/* =========================================================================
   Services Grid Section
   ========================================================================= */
.services-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-label {
    display: none;
}

.service-card-new {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    aspect-ratio: 1 / 1;
}

.service-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-new:hover img {
    transform: scale(1.05);
}

.service-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-dark-navy);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.service-card-new:hover .service-label {
    background-color: var(--color-purple);
}

/* =========================================================================
   Parallax Black Machine Banner
   ========================================================================= */
.parallax-banner {
    padding: 150px 0;
    background-image: url('https://konarcaesthetics.com/wp-content/themes/quinnie/assets/img/cosmetic-machine-placeholder.jpg');
    /* Need real machine image */
    background-color: #2a2a2a;
    /* Fallback dark */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.parallax-inner {
    position: relative;
    z-index: 2;
}

.parallax-title {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* =========================================================================
   Help Overlapping Cards Section
   ========================================================================= */
.help-overlap-section {
    position: relative;
    margin-top: -120px;
    /* pull up into hero */
    z-index: 10;
    margin-bottom: 80px;
}

.help-cards-wrapper {
    display: flex;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    gap: 20px;
}

.help-card-white {
    flex: 1 1 60%;
    background-color: var(--color-white);
    padding: 50px;
    border-radius: 20px;
}

.help-card-dark {
    flex: 1 1 40%;
    background-color: var(--color-dark-navy);
    padding: 50px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title {
    font-family: var(--font-heading);
    color: var(--color-dark-navy);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.help-card-dark .card-title {
    color: var(--color-white);
    /* or white based on styling, screenshot says Book Consultantion.. */

}

.card-text {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin-bottom: 25px;
    line-height: 1.6;
}

.help-list-split {
    display: flex;
    gap: 40px;
}

.help-list li {
    font-size: 0.9rem;
    color: var(--color-dark-navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.help-list li i {
    font-size: 1.1rem;
}

.reviews-badge {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars-group {
    display: flex;
}

.avatars-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--color-dark-navy);
    margin-left: -15px;
    object-fit: cover;
}

.avatars-group img:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-purple);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-dark-navy);
    margin-left: -15px;
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 4;
}

.reviews-text strong {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.google-review-badge {
    position: absolute;
    top: 50px;
    left: 40px;
    background-color: var(--color-white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    z-index: 5;
}

/* =========================================================================
   Dr Preeti Section
   ========================================================================= */
.dr-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.dr-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.dr-img-col {
    flex: 1 1 45%;
    position: relative;
    display: flex;
    justify-content: center;
}

.dr-img-col img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* ensure there is no strange background */
}

.dr-floating-badge {
    position: absolute;
    bottom: 40px;
    left: 0;
    background-color: var(--color-white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 5;
    max-width: 250px;
}

.dr-floating-badge p {
    font-size: 1.1rem;
    color: var(--color-text-body);
    margin-bottom: 8px;
    line-height: 1.4;
}

.dr-floating-badge strong {
    color: var(--color-dark-navy);
    display: block;
    margin-bottom: 4px;
}

.dr-floating-badge .stars i {
    color: #f2b827;
    font-size: 0.9rem;
}

.dr-text-col {
    flex: 1 1 55%;
}

.dr-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.f-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-purple);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.f-text h4 {
    font-family: var(--font-heading);
    color: var(--color-dark-navy);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.f-text p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.5;
}

/* =========================================================================
   Testimonials Split Section
   ========================================================================= */
.testimonials-split {
    display: flex;
    flex-wrap: wrap;
    background-color: #1a1829;
    position: relative;
    overflow: hidden;
}

.test-img-side {
    flex: 0 0 30%;
    max-width: 30%;
    position: relative;
    background-image: url('https://konarcaesthetics.com/wp-content/themes/quinnie/assets/img/attractive-woman-doing-procedure-for-rejuvenation-quinnie.webp');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    z-index: 1;
}

.excellent-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    background: transparent;
    width: 250px;
}

.excellent-badge h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.excellent-badge .stars {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.excellent-badge p {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 15px;
}

.excellent-badge img {
    height: 35px;
    object-fit: contain;
}

.test-content-side {
    flex: 0 0 70%;
    max-width: 70%;
    /* prevent flex blowout */
    background-color: #1a1829;
    padding: 100px 50px 100px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-width: 0;
    /* allows child to have percentage width properly in flex */
}


.site-footer ul {
    padding-left: 0;
}

/* Swiper overrides to allow sliding over image */
.testimonialsSwiper {
    width: 100%;
    padding-left: 10px;
    padding-right: 60px;
    /* Leave room for arrows */
    box-sizing: border-box;
    padding-bottom: 20px;
    overflow: hidden;
    /* Restrict overflow so it stays only within 70% bounds */
    flex-shrink: 0;
    display: block;
}

.list-item-review {
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: auto;
}

.list-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.list-item-header img,
.avatar-letter {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.user-info .name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #202124;
    line-height: 1.2;
}

.user-info .date {
    font-size: 0.75rem;
    color: #70757a;
    margin-top: 2px;
}

.g-icon {
    width: 20px !important;
    height: 20px !important;
    border-radius: 0 !important;
    margin-right: 0 !important;
}

.list-item-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.list-item-rating .stars {
    font-size: 0.85rem;
}

.list-item-rating .verified {
    font-size: 0.9rem;
    color: #1a73e8;
    /* Google blue check mark */
}

.list-item-body {
    font-size: 0.9rem;
    color: #3c4043;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.list-item-body.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
}

.text-primary {
    color: var(--color-purple) !important;
}

.read-more {
    font-size: 0.85rem;
    color: #70757a;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    /* Push it to the bottom */
}

.read-more:hover {
    text-decoration: underline;
}

/* Custom Nav Arrows */
.custom-nav-arrow {
    background-color: transparent !important;
    width: 40px;
    height: 40px;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-nav-arrow::after {
    font-size: 1.5rem;
    font-weight: 400;
    color: #a3a2af;
    /* Light grey chevron color */
}

.custom-nav-arrow:hover::after {
    color: #ffffff;
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
    background-color: #7b70a6;
    color: var(--color-white);
    padding-top: 80px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--color-white);
    font-weight: 700;
}

.brand-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 20px;
}

.social-circles {
    display: flex;
    gap: 15px;
}

.social-circles a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f2b827;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-circles a:hover {
    background-color: var(--color-white);
    color: #f2b827;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a,
.footer-col ul li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: #f2b827;
    padding-left: 5px;
}

.map-placeholder img {
    width: 100%;
    border-radius: 10px;
    max-height: 150px;
    object-fit: cover;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: #f2b827;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.f-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

/* Utilities */


.text-center {
    text-align: center;
}

footer iframe {
    height: 218px;
    border-radius: 10px;
}

/* =========================================================================
   Header Dropdown Navigation
   ========================================================================= */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav .has-dropdown {
    position: relative;
    padding-bottom: 20px;
    /* Expand hover area */
    margin-bottom: -20px;
}

.main-nav .has-dropdown .nav-arrow {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.main-nav .has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--color-white);
    min-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(9, auto);
    grid-auto-flow: column;
    column-gap: 30px;
    row-gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.main-nav .has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu li {
    margin: 0;
}

.main-nav .sub-menu a {
    color: var(--color-dark-navy);
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* =========================================================================
   Inner Page Hero Section
   ========================================================================= */
.inner-hero-section {
    background-color: var(--color-white);
    /* padding: 60px 0 0; */
    position: relative;
    overflow: hidden;
    background-position: right;
    background-size: cover;
}

.inner-hero-bg {
    /* background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 250, 1) 100%); */
    position: relative;
}

.inner-hero-row {
    min-height: 420px;
}
.inner-hero-row.inner-hero{
min-height: auto !important;
padding: 90px 0;
}

.inner-hero-title {
    font-family: var(--font-heading);
    color: var(--color-dark-navy);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 0.95rem;
    font-family: var(--font-primary);
    margin-bottom: 0;
}

.breadcrumb a {
    color: var(--color-text-body);
}

.breadcrumb-item.active {
    color: var(--color-text-dark);
    font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    font-size: 1.2rem;
    line-height: 1;
    color: var(--color-text-body);
}

.inner-hero-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    margin-bottom: -5px;
    /* sit on bottom edge */
}

/* =========================================================================
   Custom Forms
   ========================================================================= */
.custom-appointment-form .form-control,
.custom-appointment-form .form-select {
    border: none;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 0.95rem;
}

.custom-appointment-form .form-control:focus,
.custom-appointment-form .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(75, 62, 101, 0.25);
}

/* =========================================================================
   FAQ Accordion (Inner Pages)
   ========================================================================= */
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--color-purple);
    background-color: transparent;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    background-size: 1rem;
}

.custom-accordion .accordion-item {
    background-color: transparent;
}