@charset "utf-8";
/* CSS Document */

/* Set global font styles */
:root {
    --font-heading: 'Merriweather', serif;
    --font-body: 'Lora', serif;
}

/* Apply to body */
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: #333; /* Adjust for readability */
}

/* Apply to headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Adjust specific text weights if needed */
h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3, h4, h5, h6 { font-weight: 500; }

/* Global Link Styles - Remove Underlines */
a {
    color: #2F4031; /* Deep, earthy green */
    text-decoration: none;
}

a:hover, a:focus {
    color: #1E2C20; /* Even darker for contrast */
    text-decoration: none;
}

/* CTA Button */
.btn-primary {
    background-color: #726B59; /* Muted olive (new primary button) */
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #5F5849; /* Slightly darker muted olive on hover */
}

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: #ACAE9B; /* Soft sage green-gray for text and border */
    border: 2px solid #ACAE9B;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: #ACAE9B; /* Fill in with sage color on hover */
    color: #2B261C; /* Deep earthy brown text on hover for contrast */
}

.grecaptcha-badge { visibility: hidden; }

/* ---------------------------------------------------<NavBar>---------------------------------------------------------- */

/* Top Bar - Darker Color for Contrast */
.top-bar {
    width: 100%;
    background: #2B261C; /* Deep earthy brown */
    color: white;
    font-size: 0.95rem;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar a {
    color: #E0E0E0;
}
.top-bar a:hover {
    color: #726B59; /* Muted olive hover */
}

/* Top Bar Icons */
.top-bar-text {
    display: flex;
    align-items: center;
    margin: 0 15px;
    font-weight: 500;
}

.top-bar-text i {
    margin-right: 5px;
    font-size: 1.1rem;
    color: #726B59; /* Icons match muted olive */
}

/* Navbar - Light for Better Contrast */
.navbar {
    background: #F7F2EC; /* Very light neutral background */
    transition: all 0.3s ease-in-out;
    padding: 15px 0;
    margin-top: 45px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Change Navbar Background on Scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navbar Brand (Business Name) */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #726B59; /* Match brand muted olive */
}
.navbar-brand img {
    height: 50px;
    object-fit: contain;
    vertical-align: middle;
}

/* Navbar Items */
.navbar-nav .nav-item {
    position: relative;
    margin: 0 10px;
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2B261C; /* Dark earthy brown for high readability */
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
}

/* Navbar Hover Effect (Expanding Underline for Non-Dropdown Links) */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 4px;
    background: #726B59; /* Olive underline effect */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

/* Apply underline effect only for regular links, NOT dropdowns */
.navbar-nav .nav-item:not(.dropdown) .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Ensure dropdown menu is visible and well-positioned */
.dropdown-menu {
	width: max-content;
    min-width: 200px; /* prevents it from being too narrow on short lists */
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none; /* Hide initially */
}

.dropdown-item {
    white-space: nowrap;
    padding: 10px 20px;
}

/* Ensure Dropdown Arrow (Caret) Has No Background */
.navbar-nav .dropdown-toggle::after {
    position: relative;
    top: 0;
    left: 4px;
    margin-left: 6px; /* Space between text and arrow */
    display: inline-block;
    border-top: 5px solid #2B261C; /* Dark brown caret */
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    background: none !important; /* Remove any inherited background */
    vertical-align: middle;
    transition: none !important;
}

/* Prevent caret from changing color on hover */
.navbar-nav .dropdown-toggle:hover::after {
    border-top: 5px solid #2B261C !important;
    border-right: 5px solid transparent !important;
    border-left: 5px solid transparent !important;
    background: none !important;
    transition: none !important;
}

/* Fix Bootstrap hover behavior */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown Items */
.dropdown-item {
    color: #2B261C;
    padding: 10px 20px;
    font-weight: 500;
    transition: background 0.3s ease-in-out;
}

.dropdown-item:hover {
    background: #726B59; /* Olive background on hover */
    color: white;
}

/* Mobile Navbar */
@media (max-width: 992px) {
    .top-bar {
        font-size: 0.85rem;
        padding: 6px 0;
    }

    .top-bar-text {
        margin: 5px 10px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 10px;
    }
    .navbar-brand img {
    height: 35px!important;
}
}

/* ---------------------------------------------------</NavBar>---------------------------------------------------------- */



/* ---------------------------------------------------<Hero Section>---------------------------------------------------------- */

/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    min-height: 75vh; /* Adjust if needed */
    background-size: cover;
    background-color: #F7F2EC;
    background-position: center calc(100% - 50px); /* Moves it up by 50px */
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 80px 20px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden; /* Ensures the curved bottom stays visible */
}

/* Dark Overlay to Improve Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 5px); /* Stops 5px short */
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}


/* Hero Content Container */
.hero .container {
    position: relative;
    z-index: 2;
}
/* Adjust Hero Content Spacing */
.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adds space between all elements */
    margin-bottom: 100px; /* Moves content up */
}


/* Curved Bottom Effect */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px; /* Default for mobile */
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 315"><path fill="%23F7F2EC" d="M0,224 C480,320 960,160 1440,224 L1440,320 L0,320 Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 2;
    pointer-events: none; /* Prevents blocking clicks */
}

/* Adjust for Large Screens */
@media (min-width: 1200px) {
    .hero::after {
        height: 200px; /* Increased just for desktop to fully cover */
    }
}



/* Subhead */
.hero-subhead {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Main Heading */
.hero-head {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Hero Paragraph */
.hero-para {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Button Styles */
/*.hero-buttons .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.hero-buttons .btn-primary {
    background: #A6664E;
    color: white;
    border: none;
    transition: background 0.3s ease-in-out;
}

.hero-buttons .btn-primary:hover {
    background: #8c503d;
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #547A64;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.hero-buttons .btn-secondary:hover {
    background: #547A64;
    color: white;
}*/

/* Subline (Bottom Dotted List) */
.hero-subline {
    position: absolute;
    bottom: 150px; /* Move it slightly higher */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    opacity: 0.9;
    z-index: 3; /* ⬆ Ensures it's above the curve */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


/* Space between each item */
.hero-subline span {
    margin: 0 25px;
}

/* Style for dots */
.hero-subline .dot {
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0 15px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 60px 15px;
    }

    .hero-head {
        font-size: 2rem;
    }

    .hero-para {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-subline {
        font-size: 1.1rem;
        letter-spacing: 1px;
        gap: 15px;
        display: none;
    }

    /* Adjust curve for smaller screens */
    .hero::after {
        height: 90px; /* Smaller curve on mobile */
    }
}
@media (max-width: 1400px), (min-resolution: 1.25dppx), (-webkit-min-device-pixel-ratio: 1.25) {
    .hero-subline {
        bottom: 120px;
        font-size: 1.4rem;
    }
}


/* ---------------------------------------------------</Hero Section>---------------------------------------------------------- */

/* ---------------------------------------------------<Hero2 Section>---------------------------------------------------------- */

.hero2 {
    position: relative;
    width: 100%;
    min-height: 75vh;
    background-size: cover;
    background-position: center calc(100% - 50px);
    background-color: #F5ECE4;
    display: flex;
    align-items: flex-start; /* Shift layout upward */
    justify-content: center;
    padding: 60px 20px 40px;
    overflow: hidden;
    text-align: left;
    color: white;
}
.hero2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="black" fill-opacity="0.5" d="M0,224 C480,320 960,160 1440,224 L1440,320 L0,320 Z"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    filter: blur(8px);
    z-index: 1.5;
    pointer-events: none;
}


.hero2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px!important;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23F5ECE4" d="M0,224 C480,320 960,160 1440,224 L1440,320 L0,320 Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: 2;
    pointer-events: none;
}

@media (min-width: 1200px) {
    .hero2::after {
        height: 200px;
    }
}

.hero2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 5px);
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero2-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 40px; /* Moves container up */
    margin-bottom: 100px; /* Gives room before subline */
}

.hero2-logo {
    margin-right: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: logoFadeIn 0.8s ease-out 0.3s forwards;
}

.hero2-logo img {
    max-height: 260px;
    width: auto;
    display: block;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}

.hero2-content {
    flex: 1;
    max-width: 600px;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero2-subhead {
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero2-head {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero2-para {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Button Styles */
.hero2-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero2-buttons .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.hero2-buttons .btn-primary {
    background: #A6664E;
    color: white;
    border: none;
    transition: background 0.3s ease-in-out;
}

.hero2-buttons .btn-primary:hover {
    background: #8c503d;
}

.hero2-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #547A64;;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.hero2-buttons .btn-secondary:hover {
    background: #547A64;
    color: white;
}

/* Subline (restored to above curve) */
.hero2-subline {
    position: absolute;
    bottom: 150px; /* Restored to original position */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    opacity: 0.9;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero2-subline span {
    margin: 0 25px;
}

.hero2-subline .dot {
    color: white;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0 15px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero2 {
        min-height: 60vh;
        padding: 50px 15px 30px;
        text-align: center;
        align-items: flex-start;
    }

    .hero2-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 20px;
        margin-bottom: 60px;
    }

    .hero2-logo {
        margin: 0 0 20px 0;
    }

    .hero2-logo img {
        max-height: 150px!important;
    }
    

    .hero2-head {
        font-size: 2rem;
    }

    .hero2-para {
        font-size: 1rem;
    }

    .hero2-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero2-subline {
        font-size: 1.1rem;
        letter-spacing: 1px;
        bottom: 120px;
        display: none;
    }

    .hero2::after {
        height: 90px!important;
    }
}

@media (max-width: 1400px), (min-resolution: 1.25dppx), (-webkit-min-device-pixel-ratio: 1.25) {
    .hero2 {
        min-height: 75vh;
        padding: 20px 20px 40px;
    }
    .hero2-subhead {
        font-size: 1.5rem;
        font-weight: 500;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .hero2-head {
        font-size: 2.2rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .hero2-para {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .hero2-subline {
        bottom: 120px;
        font-size: 1.4rem;
    }
    .hero2-container {
        margin-top: 10px; /* Moves container up */
        margin-bottom: 20px; /* Gives room before subline */
    }
    .hero2-logo img {
        max-height: 225px;
    }
}

/* ---------------------------------------------------</Hero2 Section>---------------------------------------------------------- */





/* ---------------------------------------------------<Promo Bar>---------------------------------------------------------- */

/* Promo Bar Styles */
.promo-bar {
    position: relative;
    width: 100%;
    background: #2B261C; /* Deep earthy brown */
    color: #F7F2EC;
    text-align: center;
    padding: 25px 0;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    overflow: hidden;
}

/* Top Flair Line */
.promo-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(to right, #726B59, #EBDECE, #726B59);
    z-index: 1;
}

/* Bottom Flair Line */
.promo-bar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(to right, #726B59, #EBDECE, #726B59);
    z-index: 1;
}

/* Flex Container */
.promo-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2; /* Ensure content is above flair lines */
}

/* Promo Text */
.promo-text {
    margin: 0;
}

/* Promo Button */
.promo-bar .btn {
    background: #F7F2EC;
    color: #2B261C;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.promo-bar .btn:hover {
    background: #726B59;
    color: #F7F2EC;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .promo-bar {
        font-size: 1.1rem;
        padding: 20px 10px;
    }
}

/* ---------------------------------------------------</Promo Bar>---------------------------------------------------------- */



/* ---------------------------------------------------<One-Line Section>---------------------------------------------------------- */

/* One-Line Section Layout */
.one-line {
    padding: 80px 0;
    background: #F7F2EC; /* Soft warm background */
}

.one-line-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

/* Text Section */
.one-line-text {
    flex: 1;
    max-width: 550px;
}

.one-line-subhead {
    font-size: 1.2rem;
    font-weight: 600;
    color: #726B59; /* Muted olive for subtle emphasis */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.one-line-head {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2B261C; /* Deep earthy brown for heading */
    margin-bottom: 15px;
}

.one-line-para {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2B261C;
    margin-bottom: 20px;
}

.one-line-para a {
  color: #007bff; /* Bootstrap default link blue */
  text-decoration: underline;
  transition: color 0.2s ease;
}

.one-line-para a:hover {
  color: #0056b3; /* Darker blue on hover */
  text-decoration: none;
}


/* Buttons */
.one-line-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.one-line-buttons .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Primary Button */
.one-line-buttons .btn-primary {
    background: #726B59;
    color: white;
    border: none;
    transition: background 0.3s ease-in-out;
}

.one-line-buttons .btn-primary:hover {
    background: #5F5849;
}

/* Secondary Button */
.one-line-buttons .btn-secondary {
    background: transparent;
    color: #ACAE9B;
    border: 2px solid #ACAE9B;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.one-line-buttons .btn-secondary:hover {
    background: #ACAE9B;
    color: #2B261C;
}

/* Circular Image with Fancy Flair */
.one-line-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    position: relative;
}

/* Circular Image */
.one-line-image img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(114, 107, 89, 0.5); /* Use olive tone for shadow */
    position: relative;
    z-index: 2;
}

/* Fancy Outer Rings */
.one-line-image::before,
.one-line-image::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

/* First Ring - Static Solid Outline */
.one-line-image::before {
    width: 530px;
    height: 530px;
    border: 3px solid rgba(114, 107, 89, 0.4); /* Olive tone outline */
    top: -15px;
    left: -15px;
}

/* Second Ring - Rotating Dashed Line */
.one-line-image::after {
    width: 540px;
    height: 540px;
    border: 2px dashed rgba(114, 107, 89, 0.4);
    top: -30px;
    left: -30px;
    animation: rotateRing 16s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .one-line-content {
        flex-direction: column;
        text-align: center;
    }

    .one-line-text {
        max-width: 100%;
    }

    .one-line-buttons {
        justify-content: center;
    }

    .one-line-image {
        padding-top: 50px;
    }

    .one-line-image img {
        width: 250px;
        height: 250px;
    }

    .one-line-image::before {
        width: 280px;
        height: 280px;
        top: 40px;
        left: -10px;
    }

    .one-line-image::after {
        width: 290px;
        height: 290px;
        top: 30px;
        left: -20px;
    }
}

/* ---------------------------------------------------</One-Line Section>---------------------------------------------------------- */

/* ---------------------------------------------------<Difference Section>---------------------------------------------------------- */

/* What Makes Us Different */
.difference {
    position: relative;
    padding: 80px 0;
    background: #A69B88; /* Warm tan like Booking section */
    text-align: center;
    color: #F7F2EC;
    overflow: hidden;
}

/* Top Flair Line */
.difference::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #726B59, #EBDECE, #726B59);
    z-index: 1;
}

/* Bottom Flair Line */
.difference::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #726B59, #EBDECE, #726B59);
    z-index: 1;
}

.difference h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #F7F2EC;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.difference p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #F7F2EC;
    position: relative;
    z-index: 2;
}

/* Grid Layout */
.difference-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Feature Cards */
.difference-card {
    background: #F7F2EC;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    color: #2B261C;
}

.difference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(114, 107, 89, 0.4); /* Olive hover shadow */
}
.difference-card p {
    color: #2B261C;
}
/* Icons */
.difference-card i {
    font-size: 2.5rem;
    color: #726B59;
    margin-bottom: 15px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .difference-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ---------------------------------------------------</Difference Section>---------------------------------------------------------- */



/* ---------------------------------------------------<Benefits Section>---------------------------------------------------------- */

.benefits {
    position: relative;
    padding: 80px 0;
    background: #F7F2EC; /* Brand light background */
    text-align: center;
    overflow: hidden;
}

/* Heading & Paragraph */
.benefits-heading {
    font-size: 2.2rem;
    font-weight: bold;
    color: #726B59; /* Olive tone */
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.benefits-para {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #2B261C;
    position: relative;
    z-index: 2;
}

/* Grid Layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Benefit Card */
.benefit-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #2B261C;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(114, 107, 89, 0.4); /* Olive-tinted shadow */
}

/* Icons */
.benefit-card i {
    font-size: 2rem;
    color: #726B59;
    margin-bottom: 10px;
}

/* Title */
.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Description */
.benefit-card p {
    font-size: 1rem;
    color: #2B261C;
}

/* CTA Buttons */
.benefits-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.benefits-cta .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Secondary Button */
.benefits-cta .btn-secondary {
    background: transparent;
    color: #ACAE9B;
    border: 2px solid #ACAE9B;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.benefits-cta .btn-secondary:hover {
    background: #ACAE9B;
    color: #2B261C;
}

/* Responsive Layouts */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ---------------------------------------------------</Benefits Section>---------------------------------------------------------- */


/* ---------------------------------------------------<Step Section>---------------------------------------------------------- */

.step-section {
    padding: 80px 0;
    background: #EBDECE; /* Soft brand background */
    text-align: center;
}

/* Heading & Subheading */
.step-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #726B59; /* Olive tone */
    margin-bottom: 10px;
}

.step-subheading {
    font-size: 1.8rem;
    color: #2B261C; /* Deep brown */
    font-weight: 600;
    margin-bottom: 20px;
}

.step-para {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #2B261C;
}

/* Steps Container */
.step-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Individual Step */
.step-item {
    display: flex;
    align-items: center;
    max-width: 900px;
    width: 100%;
    text-align: left;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Alternate Layouts */
.step-left {
    flex-direction: row;
}

.step-right {
    flex-direction: row-reverse;
}

/* Step Icon */
.step-icon {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 50%;
    background: #726B59; /* Olive */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F7F2EC;
    font-size: 2rem;
    margin-right: 20px;
}

/* Step Content */
.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2B261C;
}

.step-content p {
    font-size: 1.1rem;
    color: #2B261C;
    margin-bottom: 15px;
}

/* CTA Buttons */
.step-ctas {
    display: flex;
    gap: 10px;
}

.step-ctas .btn {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Secondary Button */
.step-ctas .btn-secondary {
    background: transparent;
    color: #ACAE9B;
    border: 2px solid #ACAE9B;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.step-ctas .btn-secondary:hover {
    background: #ACAE9B;
    color: #2B261C;
}

/* Hover Effect */
.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(114, 107, 89, 0.4); /* Olive glow */
}

/* ✅ Mobile Adjustments */
@media (max-width: 992px) {
    .step-item {
        flex-direction: column !important;
        text-align: center;
        padding: 20px;
    }

    .step-icon {
        flex: 0 0 auto;
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }

    .step-ctas {
        justify-content: center;
    }
}

/* ---------------------------------------------------</Step Section>---------------------------------------------------------- */


/* ---------------------------------------------------<Booking Section>---------------------------------------------------------- */

/* Booking Section with Gradient Flair */
.booking {
    position: relative; /* Needed for ::before to anchor */
    padding: 80px 0;
    background: #A69B88;
    text-align: center;
    overflow: hidden; /* Ensure no weird overflow on mobile */
}

/* Gradient Top Border */
.booking::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(to right, #726B59, #EBDECE, #726B59);
    z-index: 1;
}
/* Bottom Gradient Border */
.booking::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(to right, #726B59, #EBDECE, #726B59);
    z-index: 1;
}

/* Heading & Paragraph */
.booking-heading {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #F7F2EC; /* Muted olive for heading */
}

.booking-para {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #F7F2EC; /* Match heading for readability on warm bg */
}

/* Booking Cards Layout */
.booking-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Booking Card */
.booking-card {
    background: #F7F2EC; /* Light card on warm background */
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #2B261C;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Continuous Pulse on Hover */
@keyframes pulseLoop {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.booking-card:hover {
    animation: pulseLoop 1.2s ease-in-out infinite;
}

/* Card Icons */
.booking-card i {
    font-size: 2.5rem;
    color: #726B59; /* Olive tone over light card */
    margin-bottom: 10px;
}

/* Card Titles */
.booking-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2B261C;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .booking-cards {
        flex-direction: column;
        align-items: center;
    }

    .booking-card {
        width: 100%;
        max-width: 300px;
    }
}

/* ---------------------------------------------------</Booking Section>---------------------------------------------------------- */



/* ---------------------------------------------------<Services Section>---------------------------------------------------------- */

/* Services Section */
.services {
    padding: 80px 0;
    background: #F7F2EC; /* Updated light background */
    text-align: center;
}

/* Heading & Paragraph */
.services-heading {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #726B59; /* Muted olive */
}

.services-para {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #2B261C; /* Deep brown for readability */
}

/* Subheading */
.services-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #726B59;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 40px;
}

/* Hide additional rows initially */
.hidden-row {
    display: none !important;
}

/* Service Card */
.service-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #2B261C; /* Updated from #333 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Service Card Hover Effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(114, 107, 89, 0.4); /* Olive shadow */
}

/* Service Image */
.service-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Title */
.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2B261C;
}

/* CTA Buttons */
.services-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.services-cta .btn-secondary {
    background: transparent;
    color: #ACAE9B;
    border: 2px solid #ACAE9B;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.services-cta .btn-secondary:hover {
    background: #ACAE9B;
    color: #2B261C;
}

/* View More Button */
.services-more {
    text-align: center;
    margin-bottom: 20px;
}

.services-more .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    background: #726B59; /* Olive button */
    color: white;
    border: none;
    transition: background 0.3s ease-in-out;
}

.services-more .btn:hover {
    background: #5F5849; /* Darker olive */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
    }
    .hidden-mobile {
        display: none !important;
    }
}

/* ---------------------------------------------------</Services Section>---------------------------------------------------------- */


/* ---------------------------------------------------<Treats Section>---------------------------------------------------------- */

.treats {
    padding: 70px 0;
    background: #2B261C; /* Deep earthy brown */
    text-align: center;
}

/* Heading */
.treats-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #F7F2EC; /* Light warm text for readability */
}

/* Grid Layout */
.treats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    justify-items: center;
}

/* Treat Card */
.treat-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
    max-width: 220px;
    width: 100%;
}

.treat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(114, 107, 89, 0.3); /* Muted olive shadow */
}

/* Icon */
.treat-icon {
    font-size: 4rem;
    color: #726B59; /* Olive accent */
    margin-bottom: 10px;
}

/* Text */
.treat-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2B261C;
}

/* CTA Buttons */
.treats-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.treats-ctas .btn-primary {
    background: #726B59;
    color: white;
    border: none;
    transition: background 0.3s ease;
}

.treats-ctas .btn-primary:hover {
    background: #5F5849;
}

.treats-ctas .btn-secondary {
    background: transparent;
    color: #F7F2EC;
    border: 2px solid #F7F2EC;
    transition: background 0.3s ease, color 0.3s ease;
}

.treats-ctas .btn-secondary:hover {
    background: #F7F2EC;
    color: #2B261C;
}

/* ---------------------------------------------------</Treats Section>---------------------------------------------------------- */



/* ---------------------------------------------------<Conditions Section>---------------------------------------------------------- */

/* Conditions Section */
.conditions {
    padding: 80px 0;
    background: linear-gradient(180deg, #2B261C 0%, #3A3328 100%); /* Dark earthy brown gradient */
    color: #F7F2EC;
    text-align: center;
}

/* Heading & Paragraph */
.conditions-heading {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #EBDECE; /* Warm beige for heading contrast */
}

.conditions-para {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #F7F2EC;
}

/* Grid Layout */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 40px;
}

/* Condition Card */
.condition-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 300px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Overlay (Desktop: Hidden, Mobile: Always Visible) */
.condition-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(43, 38, 28, 0.7); /* Slightly warmer than black */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 20px;
}

/* Always Show Overlay on Mobile */
@media (max-width: 768px) {
    .condition-overlay {
        opacity: 1;
    }
}

/* Overlay Text */
.condition-overlay h3 {
    color: #EBDECE; /* Warm beige */
}

.condition-overlay p {
    color: #F7F2EC; /* Creamy off-white */
}

/* Hover Effect */
.condition-card:hover .condition-overlay {
    opacity: 1;
}

/* Hover Effect - Lift + Glow */
.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15); /* Soft light glow */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .conditions-grid {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
    }

    .condition-overlay h3 {
        font-size: 1.3rem;
    }

    .condition-overlay p {
        font-size: 0.9rem;
    }
}

/* ---------------------------------------------------</Conditions Section>---------------------------------------------------------- */


/* ---------------------------------------------------<Team Section>---------------------------------------------------------- */

/* Team Section */
.team {
    padding: 80px 0;
    background: #F7F2EC; /* Soft warm background */
    text-align: center;
}

/* Heading */
.team-heading {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #726B59; /* Olive */
}

/* Team List */
.team-list {
  display: block;
}


/* Team Member */
.team-member {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

/* Image Left */
.image-left {
    flex-direction: row;
}

/* Image Right */
.image-right {
    flex-direction: row-reverse;
}

/* Team Image Wrapper */
.team-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* The Actual Doctor Image */
.team-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(114, 107, 89, 0.5); /* Muted olive */
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Outer Rings */
.team-ring {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

/* First Ring - Static Solid Outline */
.solid-ring {
    width: 318px;
    height: 318px;
    border: 3px solid rgba(114, 107, 89, 0.5); /* Olive */
    top: -10px;
    left: -22px;
}

/* Second Ring - Rotating Dashed Line */
.rotating-ring {
    width: 325px;
    height: 325px;
    border: 2px dashed rgba(114, 107, 89, 0.8);
    top: -20px;
    left: -20px;
    animation: rotateRing 12s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Text Section */
.team-text {
    max-width: 550px;
}

/* Doctor Name */
.team-name {
    font-size: 1.9rem;
    font-weight: bold;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #2B261C;
}

/* Animated Underline */
.team-name::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #726B59;
    margin: 5px auto 0;
    transition: width 0.3s ease-in-out;
}

.team-name:hover::after {
    width: 100%;
}

/* Team Title */
.team-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #726B59;
    margin-bottom: 10px;
}

/* Bio Text */
.team-bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2B261C;
}

/* CTA Buttons */
.team-cta {
    margin-top: 50px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-cta .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.team-cta .btn-secondary {
    background: transparent;
    color: #ACAE9B;
    border: 2px solid #ACAE9B;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.team-cta .btn-secondary:hover {
    background: #ACAE9B;
    color: #2B261C;
}
.team-divider {
  height: 1px;
  border: none;
  background-color: #726B59; /* Olive */
  margin: 60px auto;
  max-width: 80%;
}


/* Mobile Adjustments */
@media (max-width: 768px) {
    .team-member {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
    }

    .team-name {
        font-size: 1.7rem;
    }

    .team-image {
        width: 250px;
        height: 250px;
    }

    .solid-ring {
        width: 280px;
        height: 280px;
        top: -10px;
        left: -10px;
    }

    .rotating-ring {
        width: 290px;
        height: 290px;
        top: -20px;
        left: -20px;
        animation: rotateRing 12s linear infinite;
    }
}

/* ---------------------------------------------------</Team Section>---------------------------------------------------------- */



/* ---------------------------------------------------<Why Choose Us Section>---------------------------------------------------------- */

/* Section Layout */
.choose {
    padding: 80px 0;
    background: #F7F2EC url('../img/paper-02.webp') repeat; /* Brand background + texture */
    background-size: cover;
    position: relative;
    z-index: 1;
}

/* Light Overlay */
.choose::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Still works well */
    z-index: -1;
}

/* Content Container */
.choose-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Left Text Section */
.choose-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.choose-sub {
    font-size: 1.2rem;
    font-weight: 600;
    color: #726B59; /* Olive subhead */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.choose-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2B261C; /* Deep brown */
}

.choose-para {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #2B261C;
}

/* Call to Action Buttons */
.choose-cta {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.choose-cta .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.choose-cta .btn-secondary {
    background: transparent;
    color: #ACAE9B;
    border: 2px solid #ACAE9B;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.choose-cta .btn-secondary:hover {
    background: #ACAE9B;
    color: #2B261C;
}

/* Right List Section */
.choose-list {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.choose-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px 40px;
}

/* Two-column layout */
.choose-list.two-col ul {
    grid-template-columns: repeat(2, 1fr);
}

/* One-column layout */
.choose-list.one-col ul {
    grid-template-columns: 1fr;
}

/* List Items */
.choose-list li {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2B261C;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* List Links */
.choose-list li a {
    text-decoration: none;
    color: #2B261C;
    transition: color 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.choose-list li a:hover {
    color: #726B59;
}

/* List Icons */
.choose-list i {
    color: #726B59;
    font-size: 1.5rem;
}

.choose-list.one-col li {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.choose-list.one-col li:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/* Mobile Adjustments */
@media (max-width: 992px) {
    .choose-content {
        flex-direction: column;
        text-align: center;
    }

    .choose-text {
        max-width: 100%;
    }

    .choose-cta {
        justify-content: center;
    }

    .choose-list {
        max-width: 100%;
        margin-top: 20px;
    }

    .choose-list ul {
        grid-template-columns: 1fr;
        gap: 10px 20px;
    }

    .choose-list li {
        justify-content: left;
    }
}

/* ---------------------------------------------------</Why Choose Us Section>---------------------------------------------------------- */

/* ---------------------------------------------------<Reviews Section>---------------------------------------------------------- */

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: #F7F2EC; /* Soft cream background for warmth */
    text-align: center;
}

/* Carousel Container */
.carousel-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* Review Item */
.review {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Review Text */
.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #2B261C; /* Dark brown for text */
    margin-bottom: 10px;
}

/* Review Author */
.review-author {
    font-size: 1rem;
    font-weight: bold;
    color: #726B59; /* Olive tone */
}

/* CTA Button */
.reviews .btn-primary {
    margin-top: 25px;
    background-color: #726B59;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out;
}

.reviews .btn-primary:hover {
    background-color: #5F5849;
}

/* Review Card Styling */
.review-card {
    background: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 25px;
    max-width: 700px;
    margin: 10px auto;
    text-align: center;
}

/* Hover Effect */
.review-card:hover {
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.4s ease-in-out;
}

/* Carousel Arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(114, 107, 89, 0.8); /* Muted olive */
    border-radius: 50%;
    padding: 10px;
}

/* Adjust for Mobile */
@media (max-width: 768px) {
    .review-card {
        max-width: 90%;
        padding: 15px;
    }
}

/* ---------------------------------------------------</Reviews Section>---------------------------------------------------------- */




/* ---------------------------------------------------<Locations Section>---------------------------------------------------------- */

/* Locations Section */
.locations {
    padding: 80px 0;
    background: #fff; /* Warm light background */
    text-align: center;
}
.locations p {
    max-width: 700px;
    color: #2B261C; /* Deep brown text */
    margin: 0 auto 20px;
}

/* Location Card Container */
.location-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Individual Location Card */
.location-card {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(114, 107, 89, 0.4); /* Olive tone shadow */
    overflow: hidden;
    max-width: 350px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.location-card:hover {
    transform: translateY(-5px);
}

/* Location Image */
.location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Location Info */
.location-info {
    padding: 20px;
}

.location-info h3 {
    font-size: 1.8rem;
    color: #726B59; /* Olive */
    margin-bottom: 10px;
}

.location-info p {
    font-size: 1rem;
    color: #2B261C;
    margin-bottom: 10px;
}

/* Button Inside Cards */
.location-info .btn {
    margin-top: 10px;
}

/* CTA Buttons */
.location-ctas {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Primary Button */
.btn-primary {
    background-color: #726B59;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

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

/* Secondary Button */
.btn-secondary {
    background: transparent;
    color: #ACAE9B;
    border: 2px solid #ACAE9B;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.location-ctas .btn-secondary {
    background: transparent;
    color: #ACAE9B;
    border: 2px solid #ACAE9B;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.location-ctas .btn-secondary:hover {
    background: #ACAE9B;
    color: #2B261C;
}

/* ---------------------------------------------------</Locations Section>---------------------------------------------------------- */


/* ---------------------------------------------------<FAQ Section>---------------------------------------------------------- */

/* FAQ Section */
.faq {
    position: relative;
    padding: 80px 0;
    background: url('../img/1920/chiro-014.webp') center center / cover no-repeat;
    text-align: center;
    color: #F7F2EC;
    overflow: hidden;
}

/* Dark Overlay */
.faq::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(43, 38, 28, 0.75); /* Earthy dark overlay */
    z-index: 0;
}

.faq > * {
    position: relative;
    z-index: 1;
}

/* Accordion Container */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* Accordion Button */
.accordion-button {
    font-size: 1.2rem;
    font-weight: bold;
    color: #F7F2EC;
    background: rgba(114, 107, 89, 0.5); /* Translucent olive */
    border: none;
    transition: all 0.3s ease-in-out;
}

.accordion-button:hover {
    background: rgba(114, 107, 89, 0.7);
}

/* Active/Open Accordion Button */
.accordion-button:not(.collapsed) {
    background: #726B59;
    color: #F7F2EC;
}

/* Accordion Body */
.accordion-body {
    font-size: 1rem;
    color: #2B261C;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

/* FAQ CTA Button */
.faq-cta {
    margin-top: 30px;
}

.faq-cta .btn-primary {
    background-color: #726B59;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.faq-cta .btn-primary:hover {
    background-color: #5F5849;
}

/* ---------------------------------------------------</FAQ Section>---------------------------------------------------------- */



/* ---------------------------------------------------<Connect Section>---------------------------------------------------------- */

/* Section Layout */
.connect {
    padding: 80px 0;
    background: #F7F2EC; /* Updated light brand background */
    text-align: center;
}

/* Heading & Paragraph */
.connect-heading {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2B261C; /* Deep earthy brown */
}

.connect-para {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #2B261C;
}

/* Contact Info Layout */
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 40px 0;
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #EBDECE; /* Soft warm background */
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 280px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Icons */
.contact-item i {
    font-size: 2rem;
    color: #726B59; /* Olive accent */
}

/* Text */
.contact-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2B261C;
}

.contact-item p {
    font-size: 1rem;
    margin: 0;
    color: #2B261C;
}

/* Hours Toggle Button */
.toggle-hours {
    background: none;
    border: none;
    font-size: 1rem;
    color: #726B59;
    text-decoration: none;
    cursor: pointer;
}

/* Hidden Hours List */
.hours-list {
    margin-top: 10px;
    display: none;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Input Fields */
.contact-form .form-group {
    margin-bottom: 15px;
}

/* Buttons */
.connect-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.connect-ctas .btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.connect-ctas .btn-secondary {
    background: transparent;
    color: #ACAE9B;
    border: 2px solid #ACAE9B;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.connect-ctas .btn-secondary:hover {
    background: #ACAE9B;
    color: #2B261C;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        width: 90%;
    }
}

/* ---------------------------------------------------</Connect Section>---------------------------------------------------------- */


/* -------------------------------------<Service Intro Section>------------------------------------- */
.service-intro {
  background-color: #f9f6f2;
}

.service-intro p.lead {
  font-size: 1.2rem;
  color: #2B261C;
  line-height: 1.7;
}

.service-intro img {
  max-height: 400px;
  object-fit: cover;
}
/* -------------------------------------</Service Intro Section>------------------------------------- */

/* -------------------------------------<Service Expect Section>------------------------------------- */
.step-number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 1.2rem;
  flex-shrink: 0;
  text-align: center;
  border-radius: 50%;
  background-color: #A6664E!important;
  color: #fff;
  font-weight: bold;
}

/* -------------------------------------</Service Expect Section>------------------------------------- */

/* ---------------------------------------------------
<Special Section>
--------------------------------------------------- */
.special-section .card {
  border-left: 4px solid var(--primary-terra, #A6664E);
  background-color: #fff;
  transition: transform 0.2s ease;
  border-radius: 0.5rem;
}

.special-section .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.special-section .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #5A3E32;
}

.special-section .card-text {
  font-size: 0.9rem;
  color: #333;
}



/* ---------------------------------------------------<Tips Section>--------------------------------------------------- */
.tips-section {
  background-color: #F5ECE4;
}

.tip-card {
  background-color: white;
  transition: transform 0.2s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-icon i {
  color: #A6664E!important; /* Terracotta */
}
/* ---------------------------------------------------</Tips Section>--------------------------------------------------- */

/* ---------------------------------------------------<Footer Section>---------------------------------------------------------- */

/* Footer Styling */
.site-footer {
    background: #2B261C; /* Deep earthy brown */
    color: #F7F2EC;
    padding: 50px 0;
    font-size: 0.95rem;
}

.site-footer h5 {
    color: #F7F2EC;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Footer About Section */
.footer-about p {
    font-size: 1rem;
    color: #EBDECE;
    margin-top: 10px;
}

/* Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #EBDECE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ACAE9B; /* Sage hover */
}

/* Footer Contact */
.footer-contact p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #EBDECE;
}

.footer-contact a {
    color: #EBDECE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ACAE9B;
}

/* Social Icons */
.footer-socials {
    margin-top: 10px;
}

.footer-socials .social-link {
    color: #F7F2EC;
    font-size: 1.3rem;
    margin-right: 10px;
    transition: color 0.3s ease-in-out;
}

.footer-socials .social-link:hover {
    color: #ACAE9B;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #EBDECE;
}

.footer-bottom a {
    color: #EBDECE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ACAE9B;
}

/* ---------------------------------------------------</Footer Section>---------------------------------------------------------- */
