/* ============================================================
   LOVELY SALON & COSMETIC CENTER
   PRIMARY COLOR: change --primary below to update sitewide
   ============================================================ */ :root {
    --primary: #b3937d;
    --primary-dark: #504638;
    --primary-light: #cec5b4;
    --primary-pale: #dfdacc;
    --text-dark: #2c2c2c;
    --text-muted: #777;
    --white: #fff;
    --light-bg: #fdf8f8;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Lato', sans-serif;
    --transition: 0.3s ease;
    --shadow: 0 4px 24px rgba(141, 83, 86, 0.12);
    --shadow-hover: 0 8px 36px rgba(141, 83, 86, 0.22);
    --radius: 4px;
}
/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--primary-dark);
}
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}
/* ── Utility ── */
.section-tag {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -0.5px;
}
.section-title strong {
    font-weight: 700;
    color: var(--primary);
}
.divider {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 30px;
}
.divider.left {
    margin: 0 0 30px;
}
/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white)!important;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
	color: var(--white)!important;
}
.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white) !important;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary) !important;
    transform: translateY(-2px);
}
.btn-outline-primary {
    display: inline-block;
    background: transparent;
    color: var(--primary) !important;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
}
/* ── Top Bar ── */
#top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 16px;
    position: relative;
    z-index: 1001;
}
#top-bar .top-contact a {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
#top-bar .top-contact a:hover {
    color: var(--white);
}
#top-bar .top-social a {
    color: rgba(255, 255, 255, 0.85);
    margin-left: 12px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition), transform var(--transition);
}
#top-bar .top-social a:hover {
    color: var(--white);
    transform: translateY(-2px);
}
/* ── Navigation ── */
#main-nav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
}
#main-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
#main-nav .navbar-brand img {
    height: 100px;
    transition: height var(--transition);
}
#main-nav.scrolled .navbar-brand img {
    height: 50px;
}
#main-nav .nav-link {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-dark);
    padding: 15px 16px !important;
    transition: color var(--transition);
    font-family: var(--font-body);
    position: relative;
}
#main-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}
#main-nav .nav-link:hover::after, #main-nav .nav-link.active::after {
    transform: scaleX(1);
}
#main-nav .nav-link:hover, #main-nav .nav-link.active {
    color: var(--primary);
}
#main-nav .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: 0 0 8px 8px;
    border-top: 2px solid var(--primary);
    padding: 10px 0;
    min-width: 220px;
    margin-top: 0;
    animation: fadeDown 0.2s ease;
}
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#main-nav .dropdown-item {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all var(--transition);
}
#main-nav .dropdown-item:hover {
    background: var(--primary-pale);
    color: var(--primary);
    padding-left: 26px;
}
#main-nav .navbar-toggler {
    border: none;
    color: var(--primary);
    font-size: 22px;
    padding: 8px;
}
#main-nav .navbar-toggler:focus {
    box-shadow: none;
}
/* ── Hero Slider ── */
#hero-slider {
    position: relative;
    overflow: hidden;
}
.hero-slide {
    position: relative;
    height: 88vh;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-slide .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 8s ease;
}
.carousel-item.active .slide-bg {
    transform: scale(1);
}
.hero-slide .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.05) 100%);
}
.hero-slide .slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-left: 20px;
}
.slide-tag {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
    opacity: 0;
    animation: fadeUp 0.7s 0.3s forwards;
}
.slide-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
}
.slide-title em {
    font-style: normal;
    font-family: var(--font-script);
    font-size: 1.15em;
    color: #cec5b4;
    display: block;
}
.slide-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
    opacity: 0;
    animation: fadeUp 0.7s 0.7s forwards;
}
.slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s 0.9s forwards;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.carousel-item:not(.active) .slide-tag, .carousel-item:not(.active) .slide-title, .carousel-item:not(.active) .slide-desc, .carousel-item:not(.active) .slide-btns {
    opacity: 0;
    animation: none;
}
.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all var(--transition);
    margin: 0 20px;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
    background: var(--primary);
    opacity: 1;
}
.carousel-indicators {
    bottom: 20px;
}
.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}
.carousel-indicators button.active {
    background: var(--white);
    width: 30px;
    border-radius: 4px;
}
/* ── About Section ── */
#about-section {
    padding: 100px 0;
    background: var(--white);
}
#about-section .about-img-wrap {
    position: relative;
}
#about-section .about-img-main {
    border-radius: 8px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow-hover);
}
#about-section .about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}
#about-section .about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary);
    color: var(--white);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 2;
}
#about-section .about-badge .years {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}
#about-section .about-badge .label {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* ── Services Section ── */
#services-section {
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
}
#services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 10, 0.78);
}
#services-section .section-inner {
    position: relative;
    z-index: 1;
}
#services-section .section-title, #services-section .section-tag {
    color: var(--white);
}
#services-section .section-title strong {
    color: #cec5b4;
}
.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.service-card .card-img-wrap {
    overflow: hidden;
    height: 200px;
    position: relative;
}
.service-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .card-img-wrap img {
    transform: scale(1.08);
}
.service-card .card-icon {
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    box-shadow: var(--shadow);
    z-index: 2;
}
.service-card .card-body {
    padding: 30px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    margin-top: 8px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    flex: 1;
}
.service-card .card-link {
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 9px 22px;
}
/* ── Testimonials ── */
#testimonials-section {
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
#testimonials-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(80,70,56,0.80);
}
#testimonials-section .section-inner {
    position: relative;
    z-index: 1;
}
#testimonials-section .section-title, #testimonials-section .section-tag {
    color: var(--white);
}
.testimonial-slide {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 40px;
    color: var(--white);
    text-align: center;
    height: 100%;
}
.testimonial-slide .stars {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 20px;
}
.testimonial-slide .quote-text {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
    opacity: 0.95;
}
.testimonial-slide .reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}
.testimonial-slide .reviewer-service {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 4px;
}
.testimonial-slide .quote-icon {
    font-size: 42px;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 10px;
}
.swiper {
    padding-bottom: 50px !important;
}
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    background: var(--white) !important;
    width: 24px !important;
    border-radius: 3px !important;
}
/* ── Gallery Section ── */
#gallery-section {
    padding: 100px 0;
    background: var(--light-bg);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(141, 83, 86, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item .gallery-overlay i {
    color: var(--white);
    font-size: 28px;
}
/* ── Lightbox ── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.93);
    align-items: center;
    justify-content: center;
}
#lightbox.active {
    display: flex;
}
#lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}
#lightbox .lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition);
    background: none;
    border: none;
    line-height: 1;
    z-index: 10;
}
#lightbox .lb-close:hover {
    opacity: 1;
}
#lightbox .lb-prev, #lightbox .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
#lightbox .lb-prev {
    left: 20px;
}
#lightbox .lb-next {
    right: 20px;
}
#lightbox .lb-prev:hover, #lightbox .lb-next:hover {
    background: var(--primary);
}
/* ── Map ── */
#map-section iframe {
    width: 100%;
    height: 420px;
    display: block;
    filter: grayscale(20%);
    border: none;
}
/* ── Contact Bar ── */
#contact-bar {
    background: var(--primary);
    padding: 60px 0;
    color: var(--white);
}
#contact-bar .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 20px;
}
#contact-bar .contact-item .icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background var(--transition);
}
#contact-bar .contact-item:hover .icon-wrap {
    background: rgba(255, 255, 255, 0.25);
}
#contact-bar .contact-item h6 {
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    font-family: var(--font-body);
    font-weight: 700;
}
#contact-bar .contact-item p, #contact-bar .contact-item a {
    color: var(--white);
    font-size: 17px;
    margin: 0;
    font-weight: 600;
}
#contact-bar .contact-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    height: 60px;
    align-self: center;
}
/* ── Footer ── */
#footer {
    background: #504638;
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}
#footer .footer-logo img {
    height: 80px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
#footer .footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.65);
}
#footer .footer-social a {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all var(--transition);
}
#footer .footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}
#footer h5 {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b3937d;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
#footer ul {
    list-style: none;
    padding: 0;
}
#footer ul li {
    margin-bottom: 10px;
}
#footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
#footer ul li a::before {
    content: "›";
    color: var(--primary-light);
    font-size: 18px;
    line-height: 1;
}
#footer ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}
.footer-hours table {
    width: 100%;
    font-size: 14px;
}
.footer-hours table td {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.65);
}
.footer-hours table td:last-child {
    text-align: right;
    color: var(--white);
    font-weight: 600;
}
#footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 18px 0;
    margin-top: 60px;
}
#footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}
#footer-bottom img {
    height: 28px;
    opacity: 0.7;
    transition: opacity var(--transition);
}
#footer-bottom img:hover {
    opacity: 1;
}
/* ── Page Banner (subpages) ── */
.page-banner {
    height: 53vh;
    min-height: 320px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(133,124,115,0.87) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.page-banner .banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}
.page-banner h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 300;
}
.page-banner h1 span {
    font-family: var(--font-script);
    font-size: 1.2em;
    color: #dfdacc;
    display: block;
}
.page-banner .breadcrumb {
    background: none;
    padding: 0;
    margin-top: 12px;
}
.page-banner .breadcrumb-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}
.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.85);
}
.page-banner .breadcrumb-item.active {
    color: var(--white);
}
.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}
/* ── Service Subpages ── */
.service-page-content {
    padding: 80px 0;
}
.service-feature-list {
    list-style: none;
    padding: 0;
}
.service-feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0e6e7;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
}
.service-feature-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}
.service-feature-list li:last-child {
    border-bottom: none;
}
.service-price-table {
    background: var(--primary-pale);
    border-radius: 8px;
    padding: 30px;
}
.service-price-table h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    color: var(--primary);
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(141, 83, 86, 0.2);
    font-size: 15px;
}
.price-row:last-child {
    border-bottom: none;
}
.price-row .price-amount {
    font-weight: 700;
    color: var(--primary);
}
.benefit-box {
    background: var(--white);
    border-left: 3px solid var(--primary);
    padding: 20px 24px;
    margin-bottom: 16px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 12px rgba(141, 83, 86, 0.06);
    transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-box:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
.benefit-box i {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}
.benefit-box h5 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.benefit-box p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}
/* ── Prices Page ── */
.prices-page {
    padding: 80px 0;
}
.price-category {
    margin-bottom: 60px;
}
.price-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-pale);
}
.price-category-header .cat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.price-category-header h3 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary);
}
.price-table {
    width: 100%;
    border-collapse: collapse;
}
.price-table tr {
    border-bottom: 1px solid #f0e6e7;
    transition: background var(--transition);
}
.price-table tr:hover {
    background: var(--primary-pale);
}
.price-table td {
    padding: 12px 16px;
    font-size: 15px;
}
.price-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--primary);
    min-width: 90px;
}
.price-table .sub-item td {
    color: var(--text-muted);
    font-size: 14px;
}
.price-table .sub-item td:first-child {
    padding-left: 36px;
}
.price-table .sub-item td:first-child::before {
    content: "— ";
}
/* ── Gallery Page ── */
.gallery-page {
    padding: 80px 0;
}
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
/* ── About Page ── */
.about-page {
    padding: 80px 0;
}
.team-card {
    text-align: center;
    margin-bottom: 30px;
}
.team-card img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 4px solid var(--primary-pale);
    transition: border-color var(--transition);
}
.team-card:hover img {
    border-color: var(--primary-light);
}
.team-card h5 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.team-card span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}
.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--primary-pale);
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform var(--transition);
}
.stat-box:hover {
    transform: translateY(-4px);
}
.stat-box .number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}
.stat-box .label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
}
/* ── Booking Page ── */
.booking-page {
    padding: 80px 0;
}
.booking-form-wrap {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}
.booking-form-wrap label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}
.booking-form-wrap .form-control, .booking-form-wrap .form-select {
    border: 1px solid #e8d4d5;
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 15px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.booking-form-wrap .form-control:focus, .booking-form-wrap .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(141, 83, 86, 0.1);
    outline: none;
}
.booking-info-box {
    background: var(--primary-pale);
    border-radius: 12px;
    padding: 40px;
}
.booking-info-box h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.booking-info-list {
    list-style: none;
    padding: 0;
}
.booking-info-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(141, 83, 86, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
}
.booking-info-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}
.booking-info-list li:last-child {
    border-bottom: none;
}
/* ── Scroll Animations ── */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-up.delay-1 {
    transition-delay: 0.1s;
}
.fade-in-up.delay-2 {
    transition-delay: 0.2s;
}
.fade-in-up.delay-3 {
    transition-delay: 0.3s;
}
.fade-in-up.delay-4 {
    transition-delay: 0.4s;
}
/* ── Back to Top ── */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
#back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}
/* ── Responsive ── */
@media (max-width: 1200px) {
	#main-nav .nav-link {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-dark);
    padding: 15px 13px !important;
    transition: color var(--transition);
    font-family: var(--font-body);
    position: relative;
}
}
/* ── Responsive ── */
@media (max-width: 991px) {
    #main-nav .nav-link {
        padding: 14px 16px !important;
    }
    #main-nav .nav-link::after {
        display: none;
    }
    .hero-slide {
        height: 70vh;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #about-section .about-img-accent {
        display: none;
    }
    #about-section .about-badge {
        width: 80px;
        height: 80px;
        top: -10px;
        left: -10px;
    }
    #about-section .about-badge .years {
        font-size: 22px;
    }
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #contact-bar .contact-divider {
        display: none;
    }
    #contact-bar .contact-item {
        margin-bottom: 24px;
    }
    .booking-form-wrap {
        padding: 30px 24px;
    }
    #services-section {
        background-attachment: scroll;
    }
    #testimonials-section {
        background-attachment: scroll;
    }
}
@media (max-width: 767px) {
    .hero-slide {
        height: 80vh;
        min-height: 500px;
    }
    .slide-title {
        font-size: 2.4rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #top-bar .addr-link {
        display: none;
    }
    .page-banner {
        height: 45vh;
        min-height: 260px;
    }
    #services-section, #testimonials-section, #gallery-section, #about-section {
        padding: 70px 0;
    }
    .booking-form-wrap {
        padding: 24px 16px;
    }
    .booking-info-box {
        padding: 24px;
    }
}
@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-page-grid {
        grid-template-columns: 1fr 1fr;
    }
    .slide-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .testimonial-slide {
        padding: 24px 18px;
    }
    #footer {
        padding: 60px 0 0;
    }
    .booking-form-wrap {
        padding: 20px 14px;
    }
}
/* ── Dropdown opens on hover (desktop only) ── */
@media (min-width: 992px) {
    #main-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }
    #main-nav .dropdown > .dropdown-toggle:active {
        pointer-events: none;
    }
}