/* Custom Styles */
:root {
    /* Fonts */
    --font-alata: "Poppins", sans-serif;
    --font-eb-garamond: "EB Garamond", serif;

    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #06c1c1;
    /* Grayish green from design */
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --accent: #b0916d;
    /* Golden accent (optional) */

    /* Spacing */
    --spacing-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
    --padding-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
    --margin-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
}


body {
    font-family: var(--font-alata);
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-family: var(--font-eb-garamond);
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}

h2 {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
}

h4 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
}

h5 {
    font-size: clamp(1.25rem, 1vw + 1rem, 2rem);
}

h6 {
    font-size: clamp(1rem, 0.5vw + 1rem, 1.5rem);
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Header & Navbar */
.header-transparent {
    transition: background 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 400;
    text-transform: capitalize;
    margin: 0 10px;
    font-size: 1rem;
    position: relative;
    color: var(--white);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10px;
    right: 10px;
    height: 1px;
    background: var(--white);
}

.phone-number {
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.navbar-nav .badge {
    top: 23px;
    right: 0px;
}

/* Logo Styling */
.logo-circle {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 5px;
}

.logo-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-size: 0.35rem;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Hero Section */
.hero-title {
    font-family: "Bpmf Zihi Kai Std", sans-serif;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-subtitle {
    font-weight: 300;
    letter-spacing: 1px;
}

.btn-book {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background-color: #4a4f48 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Sidebar Icons */
.sidebar-icons {
    right: 0;
}

.sidebar-icon {
    font-size: 1.2rem;
    transition: background 0.3s ease;
    text-decoration: none;
}

.sidebar-icon:hover {
    background-color: var(--primary) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .offcanvas-body .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }

    .offcanvas-body .navbar-nav .nav-link {
        font-size: 1.4rem;
        padding: 15px 0;
        margin: 0;
    }

    .offcanvas-body .navbar-nav .nav-link::after {
        left: 30%;
        right: 30%;
    }
}

/* Dropdown styling */
.dropdown-menu {
    background-color: rgba(0, 0, 0, 1);
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    min-width: 220px;
}

.dropdown-item {
    font-family: var(--font-alata);
    font-size: 1.1rem;
    padding: 10px 25px;
    color: var(--white);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: var(--white);
    padding-left: 30px;
}

/* Dropdown on Hover for Desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: -10px;
        /* Slight overlap to ensure smooth hover */
        padding-top: 10px;
        animation: fadeIn 0.3s ease forwards;
    }

    .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background-color: rgba(255, 255, 255, 1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-input {
    font-family: var(--font-alata);
    outline: none;
    color: var(--dark) !important;
    /* border-bottom: 2px solid var(--primary) !important; */
    padding-right: 50px;
}

.search-input::placeholder {
    color: #999;
    font-weight: 300;
}

.close-search {
    cursor: pointer;
    transition: transform 0.3s ease;
    color: var(--dark) !important;
}

.close-search:hover {
    transform: rotate(90deg);
}

.search-container {
    max-width: 800px;
}

.search-input-group i {
    color: var(--primary) !important;
}

.fixed-top.header-transparent.bg-dark.bg-opacity-75.shadow {
    background: var(--primary) !important;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.fixed-top.header-transparent.bg-dark.bg-opacity-75.shadow .navbar-brand img {
    width: 80px;
}

.fixed-top.header-transparent.bg-dark.bg-opacity-75.shadow .py-3 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Journey & Who We Are Sections */
.journey,
.who-we-are {
    padding-top: 80px;
    padding-bottom: 80px;
}

.journey-title,
.who-we-are-title {
    font-size: clamp(2.5rem, 3.6vw + 1rem, 3.6rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 1px;
    color: var(--white);
}

.journey-text,
.who-we-are-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.who-we-are-text strong {
    color: var(--white);
    font-weight: 600;
}

.bg-black {
    background-color: #000 !important;
}

/* Consumer Choice Award Badge (CSS Placeholder) */
.award-badge-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.award-ribbon {
    position: absolute;
    width: 100px;
    height: 280px;
    background: linear-gradient(to right, #800, #c00, #800);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 90%, 0 100%);
    z-index: 1;
}

.award-circle {
    position: relative;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f9d976 0%, #b0916d 100%);
    border: 8px solid #a67c00;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    color: #331d00;
}

.award-text-top {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.award-text-mid {
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    margin: 5px 0;
}

.award-year {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.award-city {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* Services Section */
.services {
    padding-top: 100px;
    padding-bottom: 100px;
}

.services-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
}

.service-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    /* aspect-ratio: 10 / 14; */
    cursor: pointer;
    background-color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 500px;
}

.service-card:hover {
    /* transform: scale(1.05); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.4s ease;
    opacity: 0.85;
}

.service-card:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}

.service-overlay {
    position: absolute;
    inset: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.4s ease;
    width: 100%;
    height: 100%;
}

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.65);
}

.service-number {
    position: absolute;
    top: -100%;
    left: 30px;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--white);
    line-height: 1.1;
    font-family: var(--font-alata);
    transition: all 0.5s ease;
}

.service-hotspot {
    position: absolute;
    top: 110px;
    right: 25px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
}

.service-card:hover .service-hotspot {
    opacity: 1;
    transform: translateX(0);
}

.service-card:hover .service-number {
    top: 30px;
}

.hotspot-dot {
    width: 18px;
    height: 18px;
    background-color: #f1c3b1;
    /* Peach/Skin tone from design */
    border-radius: 50%;
    margin-right: 12px;
}

.hotspot-label {
    background: white;
    color: #3b5d50;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.service-content {
    transition: transform 0.9s ease;
    text-align: left;
}


.service-name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--white);
    line-height: 1.1;
    font-family: var(--font-alata);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.9s ease;
}

.service-card:hover .service-description {
    opacity: 1;
    max-height: 150px;
    margin-top: 15px;
}

.services-subtitle {
    font-size: 1rem;
    font-weight: 400;
}

.tracking-widest {
    letter-spacing: 0.25em;
    font-family: var(--font-alata);
    font-size: 1rem;
}

/* Custom grid for 11 items */
@media (min-width: 992px) {
    .services-section .row>div {
        flex: 0 0 25%;
        max-width: 25%;
    }

    /* Last row with 3 items centered */
    .services .row>div:nth-last-child(-n+3):nth-child(n+9) {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Scrolling Ticker (Marquee Effect) */
.ticker {
    background-color: #000;
    padding: 30px 0;
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: ticker-scroll 55s linear infinite;
}

.ticker-text {
    font-family: var(--font-eb-garamond);
    font-size: clamp(4rem, 8vw, 10rem);
    font-weight: 400;
    color: var(--primary);
    padding: 0 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

/* Offers Section */
.offers-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.offers-title,
.deals-title,
.bonus-title {
    font-family: var(--font-eb-garamond);
    font-weight: 300;
    line-height: 1.2;
}

.offers-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.8rem);
}

.deals-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.bonus-title {
    font-size: 2.2rem;
}

.bonus-text {
    font-size: 1.1rem;
    font-weight: 300;
}

.offer-card {
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 40px;
}

.offer-image {
    height: 450px;
    width: 100%;
}

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

.offer-details {
    background-color: #3b4d40;
    /* Dark grayish-green from design */
    height: 450px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-name {
    font-family: var(--font-eb-garamond);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
}

.price-promo {
    font-size: 1.5rem;
    font-weight: 300;
}

.price-promo strong {
    /* font-size: 1.6rem; */
    font-weight: 600;
}

.price-regular {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.price-regular span {
    text-decoration: line-through;
}

.offers-disclaimer {
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

.offers-disclaimer p {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

    .offer-image,
    .offer-details {
        height: auto;
    }

    .offer-details {
        padding: 40px 30px;
    }

    .offer-name {
        font-size: 1.8rem;
    }
}

/* Experience Section */
.experience {
    min-height: 800px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
}

.experience-title {
    font-family: var(--font-eb-garamond);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.2;
}

.experience-text {
    font-size: 1.4rem;
    line-height: 1.4em;
    font-weight: 300;
    max-width: 900px;
}

@media (max-width: 767.98px) {
    .experience-section {
        min-height: auto;
        padding: 80px 20px;
        background-attachment: scroll;
        /* Better performance on mobile */
    }
}

/* Stats Section */
.stats-section {
    background-color: #3b4d40;
    padding: 100px 0;
}

.stat-number {
    font-family: var(--font-eb-garamond);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
}

.stat-suffix {
    font-family: var(--font-eb-garamond);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: var(--font-alata);
}

.stat-description {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

@media (min-width: 992px) {
    .border-lg-start {
        border-left: 1px solid rgba(255, 255, 255, 1) !important;
    }

    .border-lg-end {
        border-right: 1px solid rgba(255, 255, 255, 1) !important;
    }
}

@media (max-width: 991.98px) {
    .stats-section {
        padding: 60px 0;
    }

    .stat-item {
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .col-lg-4:last-child .stat-item {
        padding-bottom: 0;
        border-bottom: none;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: #000;
}

.testimonials-title {
    font-family: var(--font-eb-garamond);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 300;
}

.stars {
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 5px;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto;
    color: #cbd0d4;
}

.italic {
    font-style: italic;
}

.client-name {
    font-family: var(--font-alata);
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
}

.quote-icon {
    font-family: var(--font-eb-garamond);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

/* Slick Slider Customization */
.testimonials-slider-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3b4d40;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: #4a5d4f;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: -20px;
}

.next-arrow {
    right: -20px;
}

/* Pagination Dots */
.slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff;
    text-indent: -9999px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background-color: #fff;
    transform: scale(1.2);
}

.testimonial-slide:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 70px;
    width: 67px;
    height: 44px;
    background: url(../images/comma3.png) no-repeat;
    background-size: 100%;
    transform: rotate(180deg);
    filter: brightness(0) invert(1);
}

.testimonial-slide:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 70px;
    width: 67px;
    height: 44px;
    background: url(../images/comma3.png) no-repeat;
    background-size: 100%;
    filter: brightness(0) invert(1);
}

.testimonial-slide {
    padding: 0 150px 50px 150px;
    position: relative;
    text-align: center;
}

@media (max-width: 767.98px) {
    .testimonial-text {
        font-size: 1.2rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .prev-arrow {
        left: 0;
    }

    .next-arrow {
        right: 0;
    }
}

/* Consultation CTA Section */
.consultation-cta {
    background-color: #4a5d4f;
    /* Muted dark green */
}

.cta-title {
    font-family: var(--font-eb-garamond);
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 300;
    color: #fff;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
}

.btn-consultation {
    background-color: #000;
    color: #fff;
    font-family: var(--font-alata);
    font-size: 1rem;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background-color: #1a1a1a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .consultation-cta {
        padding: 60px 0;
    }
}

/* Contact Us Section */
.contact-section {
    background-color: #000;
}

.contact-content-wrapper {
    background-color: #526053;
    padding: 80px;
}

.contact-title {
    font-family: var(--font-eb-garamond);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #fff;
}

.contact-desc,
.contact-bottom-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

.contact-list li {
    font-size: 1.1rem;
    font-weight: 300;
}

.contact-icon {
    width: 20px;
    text-align: center;
    color: #fff;
}

.object-fit-cover {
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .contact-img-wrapper {
        height: 300px !important;
    }
}

/* Blog Section */
.blog-section {
    background-color: #000;
    overflow: hidden;
}

.blog-card {
    transition: transform 0.3s ease;
}

.blog-card a {
    text-decoration: none;
}

.blog-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-category {
    font-family: var(--font-alata);
    font-size: 0.85rem;
    color: #fff;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-family: var(--font-eb-garamond);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: #fff !important;
}

.blog-info {
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: 300;
    color: #fff !important;
}

.blog-info i {
    color: #fff;
}

/* Blog slider dots */
.blog-dots .slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.blog-dots .slick-dots li {
    margin: 0 5px;
}

.blog-dots .slick-dots li button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.blog-dots .slick-dots li.slick-active button {
    background-color: #4a5d4f;
    transform: scale(1.2);
}

@media (max-width: 767.98px) {
    .blog-title {
        font-size: 1.25rem;
    }
}



/* Quick Contact Section */
.quick-contact-section {
    overflow: hidden;
}

.quick-contact-img {
    min-height: 500px;
}

.quick-contact-bar {
    background-color: #4a5449;
    /* Olive green bar */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quick-contact-section .serif-font {
    font-family: var(--font-eb-garamond);
    font-size: clamp(2rem, 2vw, 2rem);
}

.dot-lavender {
    width: 8px;
    height: 8px;
    background-color: #bfa3be;
    /* Lavender dot */
    border-radius: 50%;
    display: inline-block;
}

@media (max-width: 991.98px) {
    .quick-contact-img {
        min-height: 350px;
    }

    .quick-contact-bar {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}


/* FAQ Section */
.faq-section {
    background-color: var(--black);
}

.faq-img {
    min-height: 600px;
}

.faq-content {
    background-color: #4a5449;
    padding: 80px;
}

.faq-section .serif-font {
    font-family: var(--font-eb-garamond);
    font-weight: 300;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    padding-left: 10px !important;
    /* background: rgba(255, 255, 255, 0.05); */
}

.faq-item h5 {
    font-family: var(--font-alata);
    letter-spacing: 0.5px;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-body {
    max-height: 200px;
    /* Adjust based on content */
    opacity: 1;
}

.faq-item i {
    transition: transform 0.3s ease;
}

.faq-item.active i {
    transform: rotate(90deg);
}

.faq-item:hover {
    /* background: rgba(255, 255, 255, 0.05); */
}

@media (max-width: 991.98px) {
    .faq-img {
        min-height: 400px;
    }

    .faq-content {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
}

/* Map Section */
.map-section {
    line-height: 0;
}

.map-section iframe {
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-section iframe:hover {
    filter: grayscale(0);
}

/* Footer Styles */
.footer {
    font-family: var(--font-alata);
    background: #030603 !important;
}

.footer h5 {
    font-family: var(--font-alata);
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 20px;
}


.footer-social a {
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #bfa3be !important;
    /* Soft lavender hover */
    transform: translateY(-3px);
}

.footer-contact i {
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
    color: #000;
    font-size: 0.9rem;
}

.btn-subscribe {
    background-color: #4a5449;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    padding: 10px 25px !important;
    min-height: 51px;
    font-size: 1rem;
}

.btn-subscribe:hover {
    background-color: #3d453c;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-areas a {
    transition: color 0.3s ease;
}

.footer-areas a:hover {
    color: #ffffff !important;
}

.x-small {
    font-size: 0.75rem;
}

.footer-bottom {
    letter-spacing: 0.5px;
}

.newsletter-form .form-control {
    padding: 10px;
    height: 52px;
    color: #000 !important;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .footer-areas li {
        margin-bottom: 10px;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
}

/* Aboout Us Page start here */

.hero.about-banner {
    height: 458px !important;
}

.hero.about-banner .hero-title {
    font-family: var(--font-eb-garamond);
}

/* Mission and Values Section */
.mission-values {
    padding-bottom: 100px;
}

.mission-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    font-family: var(--font-eb-garamond);
}

.mission-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    font-weight: 300;
}

.values-content {
    background-color: #4a5449;
    /* Matching the greenish-grey from design */
    padding: 60px;
}

.value-icon {
    color: var(--white);
    font-size: 1.2rem;
}

.value-title {
    font-family: var(--font-alata);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
}

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.mission-img img {
    border-radius: 0;
}

.mission-values h6 {
    font-family: var(--font-alata);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .values-content {
        padding: 40px 30px;
    }

    .mission-values-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Contact Page start here */

.contact-info {
    padding-top: 100px;
}

.contact-info-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    font-family: var(--font-eb-garamond);
}

.contact-info-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.contact-form-card {
    background-color: #4a5449;
    /* Matching the greenish-grey from design */
}

.form-title {
    font-family: var(--font-eb-garamond);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
}

.form-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 0.9rem;
    color: var(--dark);
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form .input-group-text {
    border: none;
}

.contact-form .form-check-input {
    background-color: var(--white);
    border: none;
    width: 1.25rem;
    height: 1.25rem;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary);
}

.btn-submit {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--white);
    color: #4a5449;
}

.form-footer .text-white-50 {
    font-size: 0.85rem;
}

.security-info {
    color: rgba(255, 255, 255, 0.7);
}

.map-container iframe {
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0);
}

@media (max-width: 991.98px) {
    .contact-form-card {
        padding: 40px 30px !important;
    }
}

.offers-section.price-offers {
    padding-bottom: 70px;
}

/* Tattoo Removal Section */
.tattoo-removal-section {
    background-color: #4a5449;
    /* Dark olive green from design */
    color: var(--white);
    overflow: hidden;
}

.tattoo-removal-content {
    padding: 80px 100px;
/*     display: flex;
    flex-direction: column;
    justify-content: center; */
}

.tattoo-removal-title {
    font-family: var(--font-eb-garamond);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

.tattoo-removal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-appointment {
    background-color: var(--black);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    width: fit-content;
}

.btn-appointment:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tattoo-removal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

@media (max-width: 991.98px) {
    .tattoo-removal-content {
        padding: 60px 40px;
    }
}

/* Tattoo Process Section */
.tattoo-process-title {
    font-family: var(--font-eb-garamond);
    font-weight: 400;
    color: var(--white);
}

.tattoo-process-accordion .accordion-button {
    font-family: var(--font-alata);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.tattoo-process-accordion .accordion-button::after {
    background-image: none;
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    /* Plus icon */
    font-weight: 900;
    width: auto;
    height: auto;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.tattoo-process-accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\f068";
    /* Minus icon */
    transform: none;
}

.tattoo-process-image img {
    border-radius: 30px !important;
}

.tattoo-process-image img {
    height: 600px;
    object-fit: cover;
}

/* Benefit Section */
.benefit-section {
    background-color: #4a5449;
    /* Dark olive green */
    color: var(--white);
    overflow: hidden;
}

.benefit-content {
    padding: 80px 100px 44px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-title {
    font-family: var(--font-eb-garamond);
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

.benefit-intro,
.benefit-outro {
    font-size: 1.15rem;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
}

.benefit-list li {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #ffffff;
}

.benefit-list i {
    color: #ffffff;
    font-size: 1.2rem;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 700px;
}

@media (max-width: 991.98px) {
    .benefit-content {
        padding: 60px 40px;
    }
}

/* Why Choose Tattoo Section */
.eb-garamond {
    font-family: var(--font-eb-garamond) !important;
}

.why-choose-tattoo-section .feature-list li {
    font-size: 1.1rem;
    line-height: 1.6;
}

.why-choose-tattoo-section .feature-list i {
    font-size: 1.2rem;
}

.why-choose-image img {
    border-radius: 30px !important;
    height: 600px;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .why-choose-image img {
        height: 400px;
    }
}


/* Blog page about Section Styling end */
.blog-block {
    margin: clamp(4rem, 6vw + 1rem, 6rem) 0;
}

.blog--card {
    border-radius: 12px;
    border: 1px solid rgba(38, 99, 65, 0.10);
    padding: 0px;
    margin-bottom: 36px;
    transition: all 0.3s ease-in-out;
}

.blog--card:hover {
    transform: scale(1.03);
}

.blog-card-content {
    padding: 32px 24px;
}

.blog-card-content h5 {
    color: var(--black);
    font-family: var(--font-opensans);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 18px;
    margin-bottom: 14px;
}

a.blog-btn {
    color: #F57F2A;
    font-family: var(--font-opensans);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.blog-card-img img {
    width: 100%;
    border-radius: 0px 0px 12px 12px;
}

.form-select:focus {
    border-color: #F5F7F6;
    outline: 0;
    box-shadow: none;

}

.blog-detail-right select.form-select {
    display: flex;
    padding: 18px 16px;
    justify-content: center;
    align-items: center;
    gap: 218px;
    border-radius: 7px;
    background: #F5F7F6;
    background: url(../images/dropdown-arrow.png) no-repeat 95% 25px;
    appearance: none;
    background-size: 14px;
}

.search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 12px 12px 14px;
    border: 1px solid #cfd8d3;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
    color: #000;
    font-family: "Open Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.search-input::placeholder {
    color: #666;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 48%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}









/* Blog detail page about Section Styling  */
.blog--detail--us-banner {
    background: url('../images/blog-detail.png') no-repeat;
    background-position: center top;
    background-size: cover;
    height: 644px;
}

.blog-banner-detail-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
    margin-bottom: 100px !important;
}

.breadcrumb-text {
    color: var(--white);
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.b-n-g-n {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.b-t-h {
    color: var(--Black, #141414);
    font-family: "Open Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 119%;
    /* 38.08px */
}

ul.blog-detail-ul {
    list-style: none;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.d-flex.blog-detail--n {
    border-radius: 8px;
    background: #F7F7F7;
    padding: 15px;
    align-items: center;
    gap: 15px;
}

.d-flex.blog-detail--n img {
    width: 61px;
    height: 61px;
    max-width: 61px;
    object-fit: cover;
}

.d-flex.blog-detail--n {
    gap: 15px;
}

.blog-detail--n span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blog-detail--n p {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 991.98px) {

    .blog-banner-detail-title.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }
}

@media (max-width: 575px) {
    .blog-banner-detail-title {
        padding-top: 8rem;
    }


}
.blog--card h5 a {
    color: #000;
    text-decoration: none;
}
.blog-card-content h5 {
    min-height: 90px;
}
.blog--detail-block {
    margin: clamp(4rem, 6vw + 1rem, 6rem) 0;
}

.blog-card-img img {
    height: 250px;
    object-fit: cover;
}
.input-group p {
    width: 100%;
    color: #000;
}
.wpcf7-list-item {
    margin: 0;
}
.wpcf7-list-item-label {
    font-size: 1rem;
}
.map-container iframe {
    height: 797px;
    margin-bottom: 0;
}
.wpcf7-spinner
 {
    margin-right: -60px;
}
.quick-contact-bar {
    padding-left: 120px;
    padding-right: 120px;
}
.quick-contact-bar .wpcf7-list-item-label {
    color: #fff;
}
.quick-contact-bar .wpcf7-list-item {
    margin: 0;
    text-align: left;
    padding-left: 30px;
}
.quick-contact-bar .wpcf7 form .wpcf7-response-output {
    color: #fff;
}
.quick-contact-bar .wpcf7-list-item input[type="checkbox"] {
    margin-left: -28px;
    margin-right: 11px;
}
.contact-form-card .wpcf7-list-item input[type="checkbox"] {
    margin-left: -28px;
    margin-right: 11px;
}
.contact-form-card .wpcf7-list-item {
    margin: 0;
    text-align: left;
    padding-left: 30px;
}


.contact-form .form-control::placeholder, .contact-form .form-select::placeholder {
  color: #000;
  opacity: 1;
}

.contact-form .form-control::-ms-input-placeholder, .contact-form .form-select::-ms-input-placeholder { 
  color: #000;
}
ul.blog-detail-ul a {
    color: #000;
    text-decoration: none;
}

 
/* Pricing Page start here */
.pricing {
    padding-top: 100px;
    background-color: var(--black);
}

.pricing-main-title {
    font-size: clamp(2.5rem, 4vw + 1rem, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--black);
    position: relative;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-family: var(--font-alata);
}

.pricing-item {
    font-family: var(--font-alata);
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.4;
}

.pricing .service-name {
    flex-shrink: 0;
    max-width: 70%;
    color: var(--white);
    font-size: 1rem;
}

.price-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    margin: 0 10px 5px 10px;
}

.price-value {
    flex-shrink: 0;
    font-weight: 700;
    min-width: 40px;
    text-align: right;
}

@media (max-width: 991.98px) {
    .pricing {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .pricing-category {
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
}

/* Facial Care Table */


.facial-table {
    margin-bottom: 0;
}

.facial-table thead th {
    font-family: var(--font-alata);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px;
}

.facial-table tbody td {
    font-family: var(--font-alata);
    padding: 15px 20px;
    vertical-align: middle;
    color: var(--black);
    font-size: 0.95rem;
}

.facial-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.facial-table tbody tr td:first-child {
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .facial-table-container {
        padding: 15px;
    }

    .facial-table tbody td {
        padding: 10px;
        font-size: 0.85rem;
    }
}

.facial-care .table-responsive.table-striped {
    background: #121212;
    padding: 20px;
}

.facial-table thead th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}
	.search-input-group i {
		cursor:pointer;
	}
/* Pricing Page start here */
.hide-on-desktop {
    display: none;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.search-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    border: none;
    background: none;
    top: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.19/img/flags@2x.png");
  }
}
.top-bar {
    display: none;
}
.award-badge-container {
    margin-top: -140px;
}

.laser-hair-removal {
    padding: 60px 0;
}
.treat-skin {
}
.laser-hair-removal-sec {
    background: var(--black);
}
.hero-content h1 {
    font-weight: 300;
    line-height: 1.1;
    color: #333;
}

.feature-list {
    font-size: 1.25rem;
    color: var(--gray-text);
}

.feature-list li {
    margin-bottom: 1.5rem;
    position: relative;
}

.result-box h6 {
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.comparison-img-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.comparison-img-wrapper img {
    width: 100%;
    display: block;
}

.hero-woman {
    max-width: 100%;
}

.result-link {
    color: #333;
    text-decoration: underline;
    font-size: 0.85rem;
}

.footer-logos h4 {
    letter-spacing: 2px;
    font-size: 1.5rem;
    color: #444;
}


@media (max-width: 991.98px) {
    .hero-woman {
        margin-top: 40px;
        max-width: 80%;
    }

    .hero-content {
        text-align: center;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }
}