@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Belleza&display=swap');

:root {
   --font-inter: 'Inter', sans-serif;
   --font-belleza: 'Belleza', serif;
   --background-color: #ffffff;
   --primary-color: #594a3e;
   --primary-hover: #87705c;
   --text-color: #A48D78;
   --text-light: #9e8d7f;
   --overlay-color: rgba(255, 255, 255, 0.705);
   --sidebar-bg: #faf8f6;
   --border-color: #e5dfd9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 3.5px;
}
::-webkit-scrollbar-track {
    background: var(--sidebar-bg );
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background:var(--text-color);
}
/* Header & Navbar Base Styles*/
a{
    text-decoration: none;
    color: inherit;
}
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border-color);
    height: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.navbar {
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Nav Links */
.nav-links {
    display: flex;
    gap: 2.2rem;
    flex: 1;
}

.nav-item {
    font-family: var(--font-inter);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-item:hover {
    color: var(--primary-color);
}

.nav-item:hover::after {
    width: 100%;
}

/* Center Logo */
.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

/* Right Nav Group */
.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    flex: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-right: 0.5rem;
}

.contact-label {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 2px;
    font-family: var(--font-belleza);
}

.contact-value {
    font-family: var(--font-inter);
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.vertical-divider {
    width: 1px;
    height: 35px;
    background-color: var(--border-color);
}

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-belleza);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline {
    border: 1px solid #a1907b;
    color: #A48D78;
    background-color: transparent;
    padding: 0.85rem 1.8rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: #ffffff;
}

.btn-outline:hover::before {
    left: 0;
}

/* Burgers */
.burger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.burger-btn:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

/* By default, hide mobile burger */
.mobile-burger-trigger {
    display: none;
}


/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/hero-section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px; /* Offset for absolute navbar */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    animation-delay: 0.3s;
}

.hero-subtitle {
    font-family: "Belleza", cursive;
    font-style: italic;
    font-size: 40px;
    color: #bda689;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-belleza);
    font-size: 44px;
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: 0.08em;
    font-weight: 400;
}

.btn-hero-book {
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(163, 138, 117, 0.15);
}

.btn-hero-book:hover {
    box-shadow: 0 8px 25px rgba(163, 138, 117, 0.3);
}


/* Sidebars (Drawer / Overlay)*/
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.sidebar-drawer {
    position: fixed;
    top: 0;
    height: 100%;
    width: 420px;
    max-width: 85%;
    background-color: var(--sidebar-bg);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 201;
}

/* Default Drawer Positions */
#mobile-sidebar {
    right: 0;
    transform: translateX(100%);
}

#desktop-sidebar {
    right: 0;
    transform: translateX(100%);
}

.sidebar-drawer.active {
    transform: translateX(0) !important;
}

/* Sidebar Elements */
.sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.8rem 2rem;
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.sidebar-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 3rem 3rem 3rem;
    overflow-y: auto;
}

/* Mobile Sidebar Specific */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: auto;
    margin-top: 1.5rem;
}

.mobile-nav-item {
    font-family: var(--font-belleza);
    font-size: 2.2rem; /* Big text */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.mobile-nav-item:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-sidebar-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mobile-phone {
    display: flex;
    flex-direction: column;
}

.mobile-phone .phone-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 5px;
}

.mobile-phone .phone-value {
    font-family: var(--font-belleza);
    font-size: 1.8rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-phone .phone-value:hover {
    color: var(--primary-color);
}

.btn-mobile-book {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #6e5e4e !important;
}

/* Desktop Sidebar Specific */
.desktop-sidebar-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-logo-img {
    height: 50px;
}

.desktop-sidebar-content h3 {
    font-family: var(--font-belleza);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 400;
}

.info-block {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.info-block i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.info-block h4 {
    font-family: var(--font-belleza);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 600;
}

.info-block p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}


/* Story Section Styles */
.story-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/second-photo.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
}

.story-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-card {
    background-color: rgba(246, 243, 239, 0.94);
    padding: 5rem 6rem;
    max-width: 940px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.story-subtitle {
    font-family: "Belleza", cursive;
    font-style: italic;
    font-size: 40px;
    color: #CBB9A3;
    margin-bottom: 0.8rem;
    display: block;
}

.story-title {
    font-family: var(--font-belleza);
    font-size: 44px;
    color: var(--text-color);
    letter-spacing: 0.12em;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.story-text {
    font-family: var(--font-inter) !important;
    font-size: 20px;
    line-height: 1.3;
    color: #A48D78;
    margin-bottom: 2.5rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.btn-story-more {
    padding: 0.95rem 2.5rem;
    font-size: 1rem;
}


/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* experience */
.experience-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/experience.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
}

.experience-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.experience-card {
    background-color: rgba(246, 243, 239, 0.94);
    padding: 5rem 6rem;
    max-width: 940px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.experience-subtitle {
    font-family: "Belleza", cursive;
    font-style: italic;
    font-size: 40px;
    color: #CBB9A3;
    margin-bottom: 0.8rem;
    display: block;
}

.experience-title {
    font-family: var(--font-belleza);
    font-size: 44px;
    color: var(--text-color);
    letter-spacing: 0.12em;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.experience-text {
    font-family: var(--font-inter) !important;
    font-size: 20px;
    line-height: 1.3;
    color: #A48D78;
    margin-bottom: 2.5rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.btn-story-more {
    padding: 0.95rem 2.5rem;
    font-size: 1rem;
}


/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Services Section Styles */
.services-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
}

.services-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-card {
    background-color: rgba(246, 243, 239, 0.94);
    padding: 2rem 6rem;
    max-width: 1140px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.services-subtitle {
    font-family: "Belleza", cursive;
    font-style: italic;
    font-size: 40px;
    color: #CBB9A3;
    margin-bottom: 0.8rem;
    display: block;
}

.services-title {
    font-family: var(--font-belleza);
    font-size: 44px;
    color: var(--text-color);
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    font-weight: 400;
}

.services-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
}

.services-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2.5rem;
    will-change: transform;
}

.service-slide {
    flex: 0 0 calc((100% - (2.5rem * 2)) / 3);
    text-align: center;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

.service-image-container {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.service-slide:hover .service-img {
    transform: scale(1.05);
}

/* Shapes matching the design */
.shape-arch .service-image-container {
    border-top-left-radius: 160px;
    border-top-right-radius: 160px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.shape-oval .service-image-container {
    border-radius: 160px;
}

.service-name {
    font-family: var(--font-belleza);
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-color);
    margin-top: 1rem;
    font-weight: 400;
}

.services-footer {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-services-all {
    padding: 0.95rem 2.5rem;
    font-size: 1rem;
}


/* Gallery Marquee Section Styles */
.gallery-section {
    padding: 2rem 0;
    overflow: hidden;
    width: 100%;
    background-color: var(--background-color);
}

.gallery-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
}

.gallery-marquee-track {
    display: flex;
    width: max-content;
    animation: galleryMarqueeScroll 70s linear infinite;
    will-change: transform;
}

.gallery-marquee-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    width: 550px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 30px;
    overflow: hidden;
    margin-right: 1.7rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background-color: var(--sidebar-bg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

@keyframes galleryMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* experience */
.team-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../assets/team-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 2rem;
}

.team-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-card {
    background-color: rgba(246, 243, 239, 0.94);
    padding: 5rem 6rem;
    max-width: 940px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.team-subtitle {
    font-family: "Belleza", cursive;
    font-style: italic;
    font-size: 40px;
    color: #CBB9A3;
    margin-bottom: 0.8rem;
    display: block;
}

.team-title {
    font-family: var(--font-belleza);
    font-size: 44px;
    color: var(--text-color);
    letter-spacing: 0.12em;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.team-text {
    font-family: var(--font-inter) !important;
    font-size: 20px;
    line-height: 1.3;
    color: #A48D78;
    margin-bottom: 2.5rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.btn-story-more {
    padding: 0.95rem 2.5rem;
    font-size: 1rem;
}


/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* View Marquee Section Styles */
.view-section {
    padding: 2rem 0;
    overflow: hidden;
    width: 100%;
    background-color: var(--background-color);
}

.view-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
}

.view-marquee-track {
    display: flex;
    width: max-content;
    animation: viewMarqueeScroll 60s linear infinite;
    will-change: transform;
}

.view-marquee-track:hover {
    animation-play-state: paused;
}

.view-item {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
    margin-right: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: var(--sidebar-bg);
}

.view-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.view-item:hover img {
    transform: scale(1.06);
}

@keyframes viewMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Footer Styles */
.infinite-footer {
    background-color: #F4F1EA;
    padding: 6rem 0 3rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-left {
    border-right: 1px solid var(--border-color);
    padding-right: 3.5rem;
}

.footer-col-center {
    padding: 0 1rem;
    text-align: center;
    align-items: center;
}

.footer-col-right {
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
}

.footer-title {
    font-family: var(--font-belleza);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-color);
    margin-bottom: 1.8rem;
    font-weight: 400;
}
.news-title{
    margin-top:3.2rem;
}
/* WEBSITE MAP */
.footer-map-links {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.map-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.map-col a {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-col a:hover {
    color: var(--primary-color);
}

/* NEWSLETTER */
.footer-newsletter-group {
    display: flex;
    flex-direction: column;
}

.newsletter-form .input-wrapper {
    position: relative;
    border-bottom: 1.5px solid #cbb9a3;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.newsletter-form input[type="email"] {
    border: none;
    background: transparent;
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--text-color);
    width: 100%;
    outline: none;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-light);
}

.newsletter-form button[type="submit"] {
    border: none;
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.2rem;
    transition: color 0.3s ease;
}

.newsletter-form button[type="submit"]:hover {
    color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    accent-color: var(--primary-color);
}

.checkbox-label a {
    color: var(--text-color);
    text-decoration: underline;
}

/* CENTER COLUMN */
.brand-tagline {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 280px;
}

.footer-logo img {
    height: 145px;
    width: auto;
}

/* RIGHT COLUMN */
.footer-contact-group {
    margin-bottom: 2.5rem;
}

.contact-address {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.contact-phone, .contact-email {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.6rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.legal-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.legal-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.legal-separator {
    color: var(--border-color);
}


/* 1. Desktop & Mini Desktop Adjustments (1025px to 1200px) */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .navbar {
        padding: 0 1.8rem;
    }
    .nav-links {
        gap: 1.5rem;
    }
    .nav-item {
        font-size: 0.85rem;
    }
    .logo-img {
        height: 48px;
    }
    .nav-right {
        gap: 1.2rem;
    }
    .contact-value {
        font-size: 0.95rem;
    }
    .btn-book-nav {
        padding: 0.7rem 1.4rem;
        font-size: 0.75rem;
    }
    .hero-title {
        font-size: 2.4rem;
    }
    .story-card {
        padding: 4.5rem 5rem;
    }
    .story-title {
        font-size: 2rem;
    }
    .services-card {
        padding: 4.5rem 5rem;
    }
    .services-title {
        font-size: 2rem;
    }
}

/* 2. Landscape Tablets (769px to 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .main-header {
        height: 90px;
    }
    .navbar {
        padding: 0 1.5rem;
    }
    /* Hide some desktop items, let's keep logo in center */
    .nav-links {
        gap: 1rem;
    }
    .nav-item {
        font-size: 0.8rem;
        letter-spacing: 0.08em;
    }
    .logo-img {
        height: 42px;
    }
    .contact-info {
        display: none; /* Hide phone number to save space */
    }
    .vertical-divider {
        display: none;
    }
    .nav-right {
        gap: 1rem;
    }
    .btn-book-nav {
        padding: 0.65rem 1.2rem;
        font-size: 0.75rem;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-subtitle {
        font-size: 1.8rem;
    }
    .story-section {
        padding: 5rem 2rem;
        min-height: auto;
    }
    .story-card {
        padding: 3.5rem 4rem;
    }
    .story-title {
        font-size: 1.8rem;
    }
    .story-subtitle {
        font-size: 2rem;
    }
    .services-section {
        padding: 5rem 2rem;
        min-height: auto;
    }
    .services-card {
        padding: 3.5rem 4rem;
    }
    .services-title {
        font-size: 1.8rem;
    }
    .services-subtitle {
        font-size: 2rem;
    }
    .service-slide {
        flex: 0 0 calc((100% - 2.5rem) / 2);
    }
    .gallery-section {
        padding: 4rem 0;
    }
    .gallery-item {
        width: 380px;
        height: 260px;
        border-radius: 30px;
        margin-right: 2rem;
    }
    .view-item {
        width: 220px;
        height: 220px;
        border-radius: 12px;
        margin-right: 1.2rem;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-col-left, .footer-col-center {
        border-right: none;
        padding-right: 0;
        padding-left: 0;
    }
    .footer-col-left {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 3rem;
    }
    .footer-col-center {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 3rem;
        text-align: left;
        align-items: flex-start;
    }
    .footer-col-right {
        padding-left: 0;
    }
    .brand-tagline {
        max-width: 100%;
    }
}

/* 3. Portrait Tablets (577px to 768px) */
@media screen and (min-width: 577px) and (max-width: 768px) {
    .main-header {
        height: 85px;
    }
    .navbar {
        padding: 0 1.5rem;
    }
    /* Hide left nav and desktop right nav links. Transition to mobile-like toggle */
    .nav-links {
        display: none;
    }
    .nav-right {
        display: none;
    }
    /* Show mobile burger menu trigger */
    .mobile-burger-trigger {
        display: flex;
    }
    /* Align logo left, burger right */
    .navbar {
        justify-content: space-between;
    }
    .nav-logo {
        flex: unset;
    }
    .logo-img {
        height: 42px;
    }
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .hero-subtitle {
        font-size: 1.6rem;
    }
    .btn-hero-book {
        padding: 0.95rem 2.2rem;
        font-size: 0.85rem;
    }
    .sidebar-drawer {
        width: 360px;
    }
    .mobile-nav-item {
        font-size: 1.8rem;
    }
    .story-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }
    .story-card {
        padding: 3rem 2.5rem;
    }
    .story-title {
        font-size: 1.6rem;
    }
    .story-subtitle {
        font-size: 1.8rem;
    }
    .story-text {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .services-section {
        padding: 4rem 1.5rem;
        min-height: auto;
    }
    .services-card {
        padding: 3rem 2.5rem;
    }
    .services-title {
        font-size: 1.6rem;
    }
    .services-subtitle {
        font-size: 1.8rem;
    }
    .service-slide {
        flex: 0 0 100%;
    }
    .services-slider-track {
        gap: 1.5rem;
    }
    .gallery-section {
        padding: 3.5rem 0;
    }
    .gallery-item {
        width: 320px;
        height: 220px;
        border-radius: 25px;
        margin-right: 1.5rem;
    }
    .view-item {
        width: 180px;
        height: 180px;
        border-radius: 10px;
        margin-right: 1rem;
    }
    .infinite-footer {
        padding: 4rem 0 2rem 0;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-col-left, .footer-col-center {
        border-right: none;
        padding-right: 0;
        padding-left: 0;
    }
    .footer-col-left {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 2.5rem;
    }
    .footer-col-center {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 2.5rem;
        text-align: left;
        align-items: flex-start;
    }
    .footer-col-right {
        padding-left: 0;
    }
    .brand-tagline {
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
        margin-top: 3.5rem;
    }
}

/* 4. Mobiles (up to 576px) */
@media screen and (max-width: 576px) {
    .main-header {
        height: 80px;
    }
    .navbar {
        padding: 0 1.2rem;
    }
    .nav-links {
        display: none;
    }
    .nav-right {
        display: none;
    }
    .mobile-burger-trigger {
        display: flex;
    }
    /* Logo left, burger right as requested */
    .navbar {
        justify-content: space-between;
    }
    .nav-logo {
        flex: unset;
    }
    .logo-img {
        height: 38px;
    }
    /* Hero Adjustments */
    .hero-section {
        padding-top: 80px;
    }
    .hero-content {
        padding: 0 1.2rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.3;
        letter-spacing: 0.05em;
        margin-bottom: 1.8rem;
    }
    .btn-hero-book {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
    }
    /* Sidebar adjustments for small viewports */
    .sidebar-drawer {
        width: 100%;
        max-width: 100%;
    }
    .sidebar-body {
        padding: 1rem 2rem 2rem 2rem;
    }
    .mobile-nav-item {
        font-size: 1.6rem;
        gap: 1.2rem;
    }
    .mobile-phone .phone-value {
        font-size: 1.5rem;
    }
    .story-section {
        padding: 3.5rem 1rem;
        min-height: auto;
    }
    .story-card {
        padding: 2.5rem 1.5rem;
    }
    .story-title {
        font-size: 1.4rem;
        letter-spacing: 0.08em;
        margin-bottom: 1.2rem;
    }
    .story-subtitle {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    .story-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.8rem;
    }
    .services-section {
        padding: 3.5rem 1rem;
        min-height: auto;
    }
    .services-card {
        padding: 2.5rem 1.5rem;
    }
    .services-title {
        font-size: 1.4rem;
        letter-spacing: 0.08em;
        margin-bottom: 1.8rem;
    }
    .services-subtitle {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    .service-slide {
        flex: 0 0 100%;
    }
    .services-slider-track {
        gap: 1.5rem;
    }
    .gallery-section {
        padding: 3rem 0;
    }
    .gallery-item {
        width: 260px;
        height: 180px;
        border-radius: 20px;
        margin-right: 1rem;
    }
    .view-item {
        width: 140px;
        height: 140px;
        border-radius: 8px;
        margin-right: 0.8rem;
    }
    .infinite-footer {
        padding: 4rem 0 2rem 0;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-col-left, .footer-col-center {
        border-right: none;
        padding-right: 0;
        padding-left: 0;
    }
    .footer-col-left {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 2.5rem;
    }
    .footer-col-center {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 2.5rem;
        text-align: center;
        align-items: center;
    }
    .footer-col-right {
        padding-left: 0;
    }
    .brand-tagline {
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
        margin-top: 3.5rem;
    }
    .experience-section, .team-section{
        min-height: auto;
        padding: 3.5rem 1.1rem;
    }
    .experience-card,.team-card{
        padding: 2.5rem 1.5rem;
    }
    .experience-title, .team-title{
        font-size: 1.4rem;
    }
    .experience-subtitle, .team-subtitle{
        font-size: 1.6rem;
    }
    .experience-text,.team-text{
        font-size: 0.9rem;
    }
}

/* Services Booking Selection Section */
.booking-section {
    background-color: var(--sidebar-bg);
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-container {
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* gap: 3rem; */
    background-color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.booking-left {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.booking-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.booking-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.booking-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 21, 19, 0.6);
    z-index: 1;
}

.booking-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 70%;
    text-align: center;
}

.booking-logo {
    width: 100%;
    max-width: 380px;
    height: auto;
}

.booking-right {
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.booking-panel-title {
    font-family: var(--font-belleza);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
    font-weight: 400;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.gender-filters {
    margin-bottom: 1rem;
}

.category-filters {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.filter-btn {
    font-family: var(--font-inter);
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.booking-cart-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(89, 74, 62, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.5rem;
}

.cart-status-text {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
}

.checkout-inline-btn {
    font-family: var(--font-belleza);
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-inline-btn:hover {
    background-color: var(--primary-hover);
}

.services-list-scrollable {
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-bottom: 2rem;
}

/* Scrollbar styles for services list */
.services-list-scrollable::-webkit-scrollbar {
    width: 4px;
}
.services-list-scrollable::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
}
.services-list-scrollable::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}
.services-list-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--text-color);
}

.category-block {
    margin-bottom: 2rem;
}

.category-block-title {
    font-family: var(--font-belleza);
    font-size: 0.95rem;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(229, 223, 217, 0.5);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.services-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dotted var(--border-color);
}

.service-item-row:last-child {
    border-bottom: none;
}

.service-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    padding-right: 1.5rem;
}

.service-item-name {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: #2c2520;
    font-weight: 500;
}

.gender-tag {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-left: 0.3rem;
}

.service-item-duration {
    font-family: var(--font-inter);
    font-size: 0.85rem;
    color: var(--text-light);
}

.book-item-btn {
    font-family: var(--font-belleza);
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.book-item-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.book-item-btn.booked {
    background-color: var(--primary-hover);
    color: #ffffff;
    border-color: var(--primary-hover);
}

.booking-footer {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.proceed-checkout-btn {
    font-family: var(--font-belleza);
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    opacity: 0.6;
    pointer-events: none;
}

.proceed-checkout-btn.active {
    opacity: 1;
    pointer-events: auto;
}

.proceed-checkout-btn.active:hover {
    background-color: var(--primary-hover);
}

/* Responsive Booking Section */
@media screen and (max-width: 1200px) {
    .booking-container {
        max-width: 95%;
        gap: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    .booking-left {
        min-height: 350px;
        height: 350px;
    }
    .booking-logo-container {
        top: 50%;
    }
}

@media screen and (max-width: 768px) {
    .booking-section {
        padding: 4rem 0rem;
    }
    .booking-right {
        padding: 2.5rem 1.5rem;
    }
    .booking-panel-title {
        font-size: 1.5rem;
    }
    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

/* Appointment Grid Layout */
.appointment-section {
    background-color: var(--sidebar-bg);
    padding: 6rem 2rem;
}

.appointment-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
    align-items: start;
}

.appointment-gender-filter {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.appointment-gender-filter .filter-label {
    font-family: var(--font-belleza);
    font-size: 0.95rem;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    font-weight: 600;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
}

.accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.4rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(89, 74, 62, 0.02);
}

.accordion-title {
    font-family: var(--font-belleza);
    font-size: 1.25rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.accordion-arrow {
    font-size: 0.9rem;
    color: var(--text-color);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1200px;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(229, 223, 217, 0.3);
    padding-top: 1.5rem;
}

.service-meta {
    display: flex;
    gap: 2rem;
    margin-top: 0.3rem;
}

.meta-duration, .meta-price {
    font-family: var(--font-inter);
    font-size: 0.85rem;
    color: var(--text-light);
}

.add-cart-btn {
    font-family: var(--font-belleza);
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.45rem 1.4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.add-cart-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.add-cart-btn.added {
    background-color: var(--primary-hover);
    color: #ffffff;
    border-color: var(--primary-hover);
}

/* Cart Side Widget */
.cart-widget {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2.2rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
}

.cart-widget-title {
    font-family: var(--font-belleza);
    font-size: 1.3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.cart-count-badge {
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: 0.8rem;
    font-weight: 600;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-empty-state {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
}

.empty-cart-icon {
    font-size: 2.6rem;
    color: var(--border-color);
    margin-bottom: 1.2rem;
}

.empty-state-title {
    font-family: var(--font-belleza);
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.empty-state-subtitle {
    font-family: var(--font-inter);
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.cart-selected-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 0.4rem;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(229, 223, 217, 0.4);
}

.cart-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cart-item-name {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: #2c2520;
    font-weight: 500;
}

.cart-item-duration {
    font-family: var(--font-inter);
    font-size: 0.8rem;
    color: var(--text-light);
}

.cart-item-remove-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.3rem;
    transition: color 0.2s ease;
}

.cart-item-remove-btn:hover {
    color: #b05c5c;
}

.cart-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: auto;
}

.proceed-book-btn {
    font-family: var(--font-belleza);
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 1.1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
    text-align: center;
}

.proceed-book-btn:hover:not(:disabled) {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 15px rgba(89, 74, 62, 0.15);
}

.proceed-book-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Grid Adjustments */
@media screen and (max-width: 992px) {
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .cart-widget {
        position: static;
        min-height: 320px;
    }
}

@media screen and (max-width: 768px) {
    .appointment-section {
        padding: 4rem 1rem;
    }
    .accordion-header {
        padding: 1.2rem 1.5rem;
    }
    .accordion-title {
        font-size: 1.15rem;
    }
    .accordion-item.active .accordion-content {
        padding: 1.2rem 1.5rem;
    }
}

/* Checkout Page Grid Layout */
.checkout-section {
    background-color: var(--sidebar-bg);
    padding: 6rem 2rem;
}

.checkout-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.checkout-summary-card, .checkout-form-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 2.2rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.summary-header, .form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1.5px solid var(--border-color);
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
}

.summary-icon, .form-icon {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.summary-card-title, .form-card-title {
    font-family: var(--font-belleza);
    font-size: 1.3rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.selected-service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(229, 223, 217, 0.4);
}

.selected-service-row:first-child {
    padding-top: 0;
}

.selected-service-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.selected-service-name {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
}

.selected-service-duration {
    font-family: var(--font-inter);
    font-size: 0.85rem;
    color: var(--text-light);
}

.selected-service-price {
    font-family: var(--font-inter);
    font-weight: 600;
    color: #2c2520;
    font-size: 0.95rem;
}

.summary-totals {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1.5px dashed var(--border-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.totals-label {
    font-family: var(--font-inter);
    font-size: 0.9rem;
    color: var(--text-color);
}

.totals-value {
    font-family: var(--font-inter);
    font-weight: 600;
    color: var(--primary-color);
}

.summary-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
    margin-top: 1.5rem;
}

.edit-services-link {
    font-family: var(--font-belleza);
    color: var(--text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s ease;
}

.edit-services-link:hover {
    color: var(--primary-color);
}

/* Form Styles */
.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-label {
    font-family: var(--font-belleza);
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.label-optional {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: none;
    font-weight: normal;
}

.form-input-field {
    font-family: var(--font-inter);
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--primary-color);
    outline: none;
    width: 100%;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-input-field:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(89, 74, 62, 0.05);
}

select.form-input-field {
    cursor: pointer;
}

.salon-status-indicator {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 1.5rem 0 0.8rem 0;
}

.status-icon {
    color: #4c7a50;
    font-size: 1.1rem;
}

.status-text {
    font-family: var(--font-inter);
    font-size: 0.9rem;
    color: #4c7a50;
    font-weight: 500;
}

.weekly-timings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
    gap: 0.6rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(89, 74, 62, 0.02);
    border: 1px solid rgba(229, 223, 217, 0.4);
    border-radius: 4px;
}

.timing-tag {
    font-family: var(--font-inter);
    font-size: 0.75rem;
    color: var(--text-color);
}

.day-label {
    color: var(--primary-color);
    font-weight: 600;
}

.confirm-booking-btn {
    font-family: var(--font-belleza);
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 1.1rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 20px;
}

.confirm-booking-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(89, 74, 62, 0.15);
}

.confirm-subtext {
    font-family: var(--font-inter);
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.8rem;
}

/* Responsive Grid Adjustments */
@media screen and (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .checkout-section {
        padding: 4rem 1rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1.2rem;
        margin-bottom: 0;
    }
    .form-group {
        margin-bottom: 1.2rem;
    }
    .weekly-timings-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* About Us Page Layout Styles */
.about-us-section {
    background-color: var(--sidebar-bg);
    padding: 6rem 2rem;
}

.about-us-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-paragraphs-block {
    margin-bottom: 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.about-para-text {
    font-family: var(--font-inter);
    font-size: 1.3rem;
    color: var(--text-color);
    line-height: 1.75;
    text-align: left;
}

.about-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-feature-box {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 3rem 1rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(89, 74, 62, 0.06);
}

.feature-icon-box {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 1.4rem;
}

.feature-box-title {
    font-family: var(--font-belleza);
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.feature-box-desc {
    font-family: var(--font-inter);
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Responsive Layout */
@media screen and (max-width: 992px) {
    .about-features-row {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .about-paragraphs-block {
        margin-bottom: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .about-us-section {
        padding: 4rem 1rem;
    }
    .about-features-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-paragraphs-block {
        gap: 1.2rem;
    }
    .about-para-text {
        font-size: 1rem;
    }
    .about-feature-box {
        padding: 2.5rem 1.5rem;
    }
}

/* Gallery Masonry Layout Styles */
.gallery-section-page {
    background-color: var(--sidebar-bg);
    padding: 6rem 2rem;
}

.gallery-page-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-masonry-grid {
    column-count: 3;
    column-gap: 1.8rem;
}

.gallery-grid-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.8rem;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-page-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(89, 74, 62, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zoom-glass-icon {
    color: #ffffff;
    font-size: 2.2rem;
    transform: scale(0.7) rotate(-15deg);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover effects */
.gallery-grid-item:hover {
    box-shadow: 0 15px 35px rgba(89, 74, 62, 0.08);
}

.gallery-grid-item:hover .gallery-overlay-hover {
    opacity: 1;
}

.gallery-grid-item:hover .gallery-page-img {
    transform: scale(1.04);
}

.gallery-grid-item:hover .zoom-glass-icon {
    transform: scale(1) rotate(0deg);
}

/* Lightbox Modal CSS */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 21, 19, 0.96);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-grid-item.item-video {
    cursor: default;
}

.lightbox-img-container {
    width: auto;
    height: auto;
    max-width: 95%;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close-btn {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.lightbox-close-btn:hover {
    color: #ffffff;
    transform: rotate(90deg);
}
.map-section iframe {
    width: 100%;
    height: 450px; /* Change to 400px if you want it slightly shorter */
    display: block;
    border: 0;
}

@media (max-width: 768px) {
    .map-section iframe {
        height: 350px;
    }
}
/* Responsive columns */
@media screen and (max-width: 992px) {
    .gallery-masonry-grid {
        column-count: 2;
        column-gap: 1.4rem;
    }
    .gallery-grid-item {
        margin-bottom: 1.4rem;
    }
}

@media screen and (max-width: 576px) {
    .gallery-section-page {
        padding: 4rem 1rem;
    }
    .gallery-masonry-grid {
        column-count: 1;
        column-gap: 0;
    }
    .gallery-grid-item {
        margin-bottom: 1.2rem;
    }
    .lightbox-close-btn {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }
      .map-section iframe {
        height: 350px;
    }
}

/* Contact Us Section Styles */
.contact-us-section {
    background-color: var(--sidebar-bg);
    padding: 6rem 2rem;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-card, .contact-info-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3.5rem 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

.contact-section-title {
    font-family: var(--font-belleza);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.msg-group {
    margin-bottom: 1.5rem;
}

.contact-textarea {
    resize: vertical;
}

.submit-contact-btn {
    width: auto;
    min-width: 180px;
    margin-top: 1rem;
}

.contact-info-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(89, 74, 62, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-heading {
    font-family: var(--font-belleza);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-weight: 600;
}

.info-detail {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.info-detail a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

.info-detail a:hover {
    color: var(--primary-color);
}

.contact-social-icons {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-us-section {
        padding: 4rem 1rem;
    }
    .contact-form-card, .contact-info-card {
        padding: 2.5rem 1.5rem;
    }
    .contact-section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    .submit-contact-btn {
        width: 100%;
    }
}

/* Privacy Policy Section Styles */
.privacy-policy-section {
    background-color: var(--sidebar-bg);
    padding: 6rem 2rem;
}

.privacy-policy-container {
    max-width: 850px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4.5rem 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

.privacy-intro {
    font-family: var(--font-inter);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.policy-block {
    margin-bottom: 2.5rem;
}

.policy-block:last-of-type {
    margin-bottom: 3rem;
}

.policy-heading {
    font-family: var(--font-belleza);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.privacy-policy-container p {
    font-family: var(--font-inter);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.policy-list {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.policy-list li {
    font-family: var(--font-inter);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: square;
}

.policy-contact-info {
    background: rgba(89, 74, 62, 0.03);
    padding: 1.5rem;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
    margin-top: 1rem;
}

.policy-contact-info a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.policy-contact-info a:hover {
    text-decoration: underline;
}

.policy-last-updated {
    font-style: italic;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 2rem !important;
}

@media screen and (max-width: 768px) {
    .privacy-policy-section {
        padding: 4rem 1rem;
    }
    .privacy-policy-container {
        padding: 2.5rem 1.8rem;
    }
    .policy-heading {
        font-size: 1.3rem;
    }
}

/* Our Team Section Styles */
.our-team-section {
    background-color: var(--sidebar-bg);
    padding: 6rem 2rem;
}

.team-page-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.team-hero-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3.5rem auto;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.team-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.team-intro-block {
    max-width: 900px;
    margin: 0 auto 5rem auto;
    text-align: center;
}

.team-intro-text {
    font-family: var(--font-inter);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-color);
}

.team-experts-title {
    font-family: var(--font-belleza);
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.expert-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3.5rem 2.2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.01);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.expert-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(89, 74, 62, 0.08);
}

.expert-card-icon {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expert-card-title {
    font-family: var(--font-belleza);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.expert-card-desc {
    font-family: var(--font-inter);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.expert-specialties {
    border-top: 1px dotted var(--border-color);
    padding-top: 1.5rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.expert-specialties li {
    font-family: var(--font-inter);
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .experts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .team-hero-img {
        height: 380px;
    }
}

@media screen and (max-width: 768px) {
    .our-team-section {
        padding: 4rem 1rem;
    }
    .team-hero-image-wrapper {
        margin-bottom: 2.5rem;
    }
    .team-hero-img {
        height: 280px;
    }
    .team-intro-block {
        margin-bottom: 3.5rem;
    }
    .team-intro-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    .team-experts-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    .expert-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Thank You Section Styles */
.thank-you-section {
    background-color: var(--sidebar-bg);
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.thank-you-container {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 5rem 4rem;
    text-align: center;
    max-width: 650px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Animated SVG Checkmark */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.checkmark-svg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: var(--primary-color);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--primary-color);
    animation: fillIcon .4s ease-in-out .4s forwards, scaleIcon .3s ease-in-out .9s forwards;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: var(--primary-color);
    fill: none;
    animation: strokeCircle .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--primary-color);
    animation: strokeCheck .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes strokeCircle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes strokeCheck {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes fillIcon {
    100% {
        box-shadow: inset 0px 0px 0px 30px rgba(89, 74, 62, 0.05);
    }
}

@keyframes scaleIcon {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.thank-you-title {
    font-family: var(--font-belleza);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.thank-you-message {
    font-family: var(--font-inter);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.go-home-btn {
    padding: 1rem 2.2rem;
    font-size: 0.95rem;
    min-width: 220px;
}

@media screen and (max-width: 576px) {
    .thank-you-section {
        padding: 4rem 1rem;
    }
    .thank-you-container {
        padding: 3.5rem 1.5rem;
    }
    .thank-you-title {
        font-size: 2rem;
    }
    .thank-you-message {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}





