body {
    scroll-behavior: smooth;
    font-family: "Quicksand", sans-serif;
}

/* ==========================================================================
           NAVBAR & NAVIGATION STYLES
           ========================================================================== */
.navbar {
    padding: 0.8rem 2rem;
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
    font-family: "Jost", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #7a2b6e !important;
}

.logo {
    width: 180px;
}

.brand-ts {
    font-weight: 800;
    margin-right: 2px;
}

.brand-catering {
    font-style: italic;
    font-weight: 400;
}

.nav-link {
    font-family: "Jost", sans-serif;
    color: #4a154b !important;
    font-weight: 500;
    margin: 0 12px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: #c92a7a !important;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    border-radius: 8px;
    padding: 10px 15px;
    color: #4a154b;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #fdf4f8;
    color: #c92a7a;
    transform: translateX(5px);
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Call to Action Button */
.btn-book {
    background: linear-gradient(90deg, #c92a7a 0%, #7a2b6e 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(201, 42, 122, 0.25);
}

.btn-book:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(201, 42, 122, 0.4);
    color: #ffffff;
}

/* Mobile Navbar Adjustments */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .navbar-collapse {
        background: #ffffff;
        margin-top: 15px;
        padding: 15px;
        border-top: 1px solid #eee;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f9f9f9;
    }

    .btn-book {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.bi-list {
    font-size: 1.8rem;
    color: #7a2b6e;
}

/* footer */
.ts-footer {
    background-color: #f9f9fb;
    /* Light background */
    color: #18222C;
    /* Dark blue-gray text */
    font-family: 'Quicksand', sans-serif;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Ambient Glow (lighter + elegant) */
.ts-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #d6338491 0%, transparent 65%);
    pointer-events: none;
}

.ts-footer-brand h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #18222C, #F4C542);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ts-footer-brand p {
    color: rgba(24, 34, 44, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
}

.ts-footer-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(to right, #802b6f, #F4C542);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.ts-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ts-footer-links li {
    margin-bottom: 12px;
}

.ts-footer-links a {
    color: rgba(24, 34, 44, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.ts-footer-links a:hover {
    color: #b12a76;
    /* Your red */
    transform: translateX(5px);
}

.ts-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.ts-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(24, 34, 44, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b12a76;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ts-contact-item:hover .ts-contact-icon {
    background: linear-gradient(90deg, rgb(201, 42, 122) 0%, rgb(122, 43, 110) 100%);
    ;
    color: #ffffff;
}

.ts-contact-info p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(24, 34, 44, 0.8);
}

.ts-contact-info a {
    color: rgba(24, 34, 44, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ts-contact-info span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b12a76;
    margin-bottom: 2px;
    font-weight: 700;
}

.ts-social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.ts-social-btn {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 1px solid rgba(24, 34, 44, 0.1);
    color: #c02a79;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ts-social-btn:hover {
    background: linear-gradient(90deg, rgb(201, 42, 122) 0%, rgb(122, 43, 110) 100%);
    ;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-5px);
}

.ts-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(24, 34, 44, 0.08);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(24, 34, 44, 0.5);
}

.ts-footer-bottom .ts-designer {
    margin-top: 10px;
    display: block;
    color: rgba(24, 34, 44, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ts-footer-bottom .ts-designer span {
    color: #b42a77;
    /* Gold */
    font-weight: 700;
}

.ts-footer-bottom .ts-designer:hover {
    color: #000000;
}

@media (max-width: 767px) {
    .ts-footer {
        padding: 60px 0 30px;
    }

    .ts-footer-title {
        margin-top: 30px;
    }
}

/* hero */
/* ── HERO ── */
.hero {
    position: relative;
    height: 85vh;
    min-height: 400px;
    overflow: hidden;
}

.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 6s ease;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(88, 24, 90, 0.72) 0%, rgba(88, 24, 90, 0.2) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 620px; */
    padding: 0 60px;
    align-self: center;
    margin-right: auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero-title {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .2);
}

.hero-title em {
    font-style: italic;
    color: #f9a8d4;
}

.hero-subtitle {
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 460px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #DD1B84, #58185A);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(221, 27, 132, 0.45);
    transition: transform .2s, box-shadow .2s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 34px rgba(221, 27, 132, 0.55);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background .2s, border-color .2s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: .72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

@media (max-width: 992px) {
    .hero {
        height: 70vh;
    }
}

/* HIGHLIGHTS STRIP */
.highlights {
    background: #F8F9FA;
    padding: 0;
    border-top: 1px solid rgba(88, 24, 90, 0.07);
    border-bottom: 1px solid rgba(88, 24, 90, 0.07);
}

.highlights-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 30px;
    border-right: 1px solid rgba(88, 24, 90, 0.08);
    transition: background .25s;
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-item:hover {
    background: linear-gradient(120deg, rgba(221, 27, 132, 0.08), rgba(88, 24, 90, 0.08));
}

.hi-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #DD1B84, #58185A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(221, 27, 132, 0.3);
}

.hi-label {
    font-size: .7rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hi-value {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #58185A;
}

/* Tablet */
@media (max-width: 992px) {
    .highlights-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-item {
        border-right: none;
        border-bottom: 1px solid rgba(88, 24, 90, 0.08);
    }

    .highlight-item:nth-child(2n) {
        border-right: none;
    }

    .highlight-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .abt-photo {
        width: 90%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .highlights-inner {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-item {
        padding: 20px;
        gap: 12px;
        border-right: none;
        border-bottom: 1px solid rgba(88, 24, 90, 0.08);
    }

    .highlight-item:last-child {
        border-bottom: none;
    }

    .hi-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .hi-value {
        font-size: 0.95rem;
    }

    .hi-label {
        font-size: 0.65rem;
    }
}

/* about page */
.about-section {
    padding: 40px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Diagonal Background Split - High Contrast */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: #fdf2f7;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

/* Large Background Legacy Number */
.big-number {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 38rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(122, 43, 110, 0.04);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.container {
    position: relative;
    z-index: 2;
}

/* Deconstructed Photo Grid */
.photo-composition {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    z-index: 2;
}

.founder-frame img {
    width: 100%;
    border-radius: 120px 0 120px 0;
    box-shadow: 40px 40px 0px -10px #7a2b6e;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    object-fit: cover;
}

.founder-frame:hover img {
    transform: translate(-15px, -15px);
    box-shadow: 55px 55px 0px -10px #c92a7a;
}

/* Premium Floating Element - Cloche */
.cloche-badge {
    position: absolute;
    top: -30px;
    right: 0;
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(74, 21, 75, 0.15);
    z-index: 3;
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

/* Typography & Content Layout */
.about-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #c92a7a;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.about-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 4.2rem;
    color: #4a154b;
    line-height: 1.1;
    margin-bottom: 45px;
}

.about-heading span {
    display: block;
    font-style: italic;
    font-weight: 400;
    padding-left: 60px;
    color: #7a2b6e;
    font-size: 0.9em;
}

/* Main Copy Blocks */
.content-main {
    font-size: 1.15rem;
    color: #222;
    line-height: 1.9;
    margin-bottom: 35px;
    border-left: 3px solid #c92a7a;
    padding-left: 35px;
    font-weight: 400;
}

.content-secondary {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 38px;
}

.quote-block {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #7a2b6e;
    margin-top: 50px;
    padding-left: 38px;
    position: relative;
}

.quote-block::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    opacity: 0.2;
    color: #c92a7a;
}

/* Horizontal Feature Strip */
.feature-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 50px;
    padding-left: 38px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-dot {
    width: 10px;
    height: 10px;
    background: #c92a7a;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 42, 122, 0.4);
}

.feature-point span {
    font-weight: 700;
    color: #4a154b;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
}

/* Botanical Accent */
.botanical-element {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
}

@media (max-width: 991px) {
    .about-section::before {
        display: none;
    }

    .about-heading {
        font-size: 3rem;
    }

    .about-heading span {
        padding-left: 0;
    }

    .big-number {
        font-size: 18rem;
        top: 10%;
        left: 0;
    }

    .photo-composition {
        margin-top: 80px;
        order: 2;
    }

    .content-main,
    .content-secondary,
    .quote-block,
    .feature-strip {
        padding-left: 0;
    }

    .content-main {
        border-left: none;
        border-top: 2px solid #c92a7a;
        padding-top: 20px;
    }

    .cloche-badge {
        width: 90px;
        height: 90px;
        top: -10px;
    }
}

.expe {
    color: #c92a7a;
    font-weight: 700;
    font-family: 'Bricolage Grotesque', sans-serif;
}

/* services */
/* --- Global Paragraph Styling --- */
p {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

/* --- Services Section --- */
.services-section {
    padding: 80px 0 100px;
    background-image: radial-gradient(circle at 100% 0%, #fffafc 0%, #ffffff 100%);
    color: #333;
    /* Standardizing text color since body css was removed */
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-tag {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #c92a7a;
    /* Direct Hex for Pink */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #4a154b;
    /* Direct Hex for Plum */
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-style: normal;
    font-size: 1.15rem;
    color: #666;
    font-weight: 500;
}

/* --- Fixed Size Service Card --- */
.service-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 30px;
    aspect-ratio: 4 / 5;
    box-shadow: 0 15px 35px rgba(74, 21, 75, 0.1);
    background-color: #4a154b;
    /* Direct Hex for Plum */
    display: block;
    text-decoration: none;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.85;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(74, 21, 75, 0.95) 0%,
            rgba(74, 21, 75, 0.4) 40%,
            transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    color: white;
    transition: all 0.5s ease;
}

/* --- Text Animation Control --- */
.service-content {
    transform: translateY(100px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-icon {
    width: 45px;
    height: 45px;
    background: #c92a7a;
    /* Direct Hex for Pink */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease 0.1s;
}

.service-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: white;
}

.service-text {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    width: 45px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #DD1B84, #58185A);
    color: white;
    border-radius: 50px;
    margin: 0 0 0 auto;
}

/* --- Hover State Trigger --- */
.service-item:hover .service-img {
    transform: scale(1.15);
}

.service-item:hover .service-overlay {
    background: rgba(74, 21, 75, 0.85);
}

.service-item:hover .service-content {
    transform: translateY(0);
}

.service-item:hover .service-icon {
    opacity: 1;
    transform: scale(1);
}

.service-item:hover .service-text {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 767px) {
    .section-title {
        font-size: 2.5rem;
    }

    .service-item {
        aspect-ratio: 1 / 1.2;
    }

    .service-content {
        transform: translateY(0);
    }

    .service-icon,
    .service-text {
        opacity: 1;
        transform: none;
    }
}


/* button */


/* our services */
/* --- Base Layout --- */
.values-section {
    padding: 120px 0;
    /* Added background color and subtle gradient */
    background-color: #F8F9FA;
    background-image: linear-gradient(120deg, rgba(221, 27, 132, 0.03), rgba(88, 24, 90, 0.03));
    position: relative;
    overflow: hidden;
}

/* Ambient background decoration */
.values-section::before {
    content: '';
    position: absolute;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(201, 42, 122, 0.04) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    z-index: 0;
    pointer-events: none;
}

/* Floating Food Elements (Decorative) */
.food-deco {
    position: absolute;
    color: #4a154b1a;
    font-size: 5rem;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.deco-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.deco-2 {
    bottom: 10%;
    right: 5%;
    transform: rotate(20deg);
}

.deco-3 {
    top: 40%;
    right: 15%;
    font-size: 3rem;
    opacity: 0.5;
}

/* --- Section Header --- */
.section-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.section-tag {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #c92a7a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.section-tag i {
    margin-right: 10px;
    font-size: 1rem;
}

.section-main-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #4a154b;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

/* --- Floating Tile Design --- */
.value-tile {
    position: relative;
    z-index: 1;
    padding: 20px;
    height: 100%;
    transition: transform 0.4s ease;
}

.tile-inner {
    background: #fff;
    padding: 30px 20px;
    border-radius: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 40px rgba(74, 21, 75, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Hover Effect */
.value-tile:hover {
    transform: translateY(-15px);
}

.value-tile:hover .tile-inner {
    box-shadow: 0 40px 80px rgba(74, 21, 75, 0.12);
    background: #4a154b;
}

/* Icon Container */
.icon-wrap {
    width: 80px;
    height: 80px;
    background: #fffafc;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #c92a7a;
    margin-bottom: 40px;
    transition: all 0.5s ease;
    box-shadow: inset 0 0 0 1px rgba(201, 42, 122, 0.1);
}

.value-tile:hover .icon-wrap {
    background: #c92a7a;
    color: #fff;
    transform: scale(0.9) rotate(-10deg);
    border-radius: 50%;
}

/* Typography */
.value-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #4a154b;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    transition: color 0.4s ease;
}

.value-text {
    font-family: 'Quicksand', sans-serif;
    color: #6c757d;
    font-weight: 500;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 0;
    transition: color 0.4s ease;
}

/* Hover Text Color Swap */
.value-tile:hover .value-title {
    color: #fff;
}

.value-tile:hover .value-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Visual Accent Dot */
.accent-dot {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 10px;
    height: 10px;
    background: rgba(201, 42, 122, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.value-tile:hover .accent-dot {
    transform: scale(3);
    background: #c92a7a;
    box-shadow: 0 0 15px rgba(201, 42, 122, 0.5);
}

/* Mobile specific spacing */
@media (max-width: 991px) {
    .values-section {
        padding: 80px 0;
    }

    .section-main-title {
        margin-bottom: 40px;
    }

    .tile-inner {
        padding: 40px 30px;
    }

    .food-deco {
        display: none;
    }
}

/* testimonial */
/* --- Testimonial Section --- */
.ts-testimonial-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #1a061b;
    /* Specific section background */
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

/* Decorative Background Elements */
.ts-bg-glow {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(201, 42, 122, 0.15) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    z-index: 0;
    pointer-events: none;
}

/* --- Cinematic Video Box --- */
.ts-video-wrapper {
    position: relative;
    z-index: 2;
}

.ts-video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.ts-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.7);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ts-video-frame:hover .ts-video-thumbnail {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.ts-play-trigger {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.ts-play-circle {
    width: 70px;
    height: 70px;
    background: #ffffff;
    color: #2d0a2e;
    /* Brand Plum replacement */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.ts-video-frame:hover .ts-play-circle {
    background: #c92a7a;
    /* Brand Pink replacement */
    color: #ffffff;
    transform: scale(1.1);
}

.ts-play-text {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #ffffff;
}

/* --- Glassmorphism Swiper --- */
.ts-swiper-container {
    position: relative;
    z-index: 2;
}

.ts-section-tag {
    color: #c92a7a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

.ts-section-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 40px;
    background: linear-gradient(to right, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ts-testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 30px;
    position: relative;
}

.ts-quote-mark {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    color: #c92a7a;
    opacity: 0.2;
    font-family: serif;
}

.ts-testi-text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.ts-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ts-author-avatar {
    width: 50px;
    height: 50px;
    background: #c92a7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Bricolage Grotesque', sans-serif;
    color: #ffffff;
}

.ts-author-name h5 {
    margin: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

.ts-author-name p {
    margin: 0;
    font-size: 0.85rem;
    color: #c92a7a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Swiper Navigation */
.ts-nav-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.ts-nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.ts-nav-btn:hover {
    background: #ffffff;
    color: #2d0a2e;
}

@media (max-width: 991px) {
    .ts-section-title {
        font-size: 2.5rem;
    }

    .ts-testimonial-card {
        padding: 30px;
    }

    .ts-video-frame {
        margin-bottom: 50px;
    }
}

/* gallery */
.ts-gallery-section {
    padding: 100px 0;
    background-color: #1a061b;
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

.ts-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ts-tagline {
    color: #c92a7a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.ts-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, #c92a7a, #e6b96b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Filter Buttons --- */
.ts-filter-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ts-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ts-filter-btn.active,
.ts-filter-btn:hover {
    background: #c92a7a;
    border-color: #c92a7a;
    transform: translateY(-3px);
}

/* --- Gallery Grid --- */
.ts-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.ts-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: all 0.5s ease;
}

.ts-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ts-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(45 10 46 / 61%), #00000000);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 1;
    /* Visible by default */
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ts-gallery-item:hover .ts-gallery-overlay {
    opacity: 0;
    /* Hide on hover */
    visibility: hidden;
}

.ts-gallery-item:hover img {
    transform: scale(1.05);
}

.ts-overlay-info h5 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- YouTube Section --- */
.ts-youtube-section {
    padding-top: 80px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ts-yt-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ts-yt-card:hover {
    transform: translateY(-10px);
}

.ts-yt-thumb-wrap {
    position: relative;
    aspect-ratio: 16/9;
}

.ts-yt-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ts-yt-thumb-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 ratio */
    overflow: hidden;
    border-radius: 12px;
}

.ts-yt-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.ts-yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.ts-yt-info {
    padding: 20px;
}

.ts-yt-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #e6b96b;
}

/* --- Improved Lightbox --- */
.ts-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.ts-lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.ts-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: transform 0.3s ease;
}

.ts-lightbox-close:hover {
    transform: scale(1.2);
    color: #c92a7a;
}

/* Next/Prev Buttons */
.ts-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10000;
    user-select: none;
}

.ts-lb-nav:hover {
    background: #c92a7a;
    border-color: #c92a7a;
    transform: translateY(-50%) scale(1.1);
}

.ts-lb-prev {
    left: 40px;
}

.ts-lb-next {
    right: 40px;
}

@media (max-width: 768px) {
    .ts-title {
        font-size: 2.2rem;
    }

    .ts-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ts-lb-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .ts-lb-prev {
        left: 15px;
    }

    .ts-lb-next {
        right: 15px;
    }
}

/* common banner */
/* --- Common Banner Section --- */
.ts-common-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/common-banner.webp') no-repeat center center;
    background-size: cover;
    overflow: hidden;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}

/* Dark Overlay with Gradient using hardcoded Plum (#1a061b) */
.ts-common-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(26, 6, 27, 0.85),
            rgba(26, 6, 27, 0.6));
    z-index: 1;
}

/* Ambient Glow Effect using hardcoded Pink (#c92a7a) */
.ts-common-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 42, 122, 0.2) 0%, transparent 70%);
    z-index: 2;
}

.ts-banner-content {
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.ts-banner-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -1px;
    /* Gradient using white to gold (#e6b96b) */
    background: linear-gradient(to right, #ffffff, #e6b96b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
}

/* Breadcrumbs Styling */
.ts-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ts-breadcrumb li {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.ts-breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ts-breadcrumb li a:hover {
    color: #e6b96b;
    /* Gold */
}

.ts-breadcrumb li::after {
    content: '\f105';
    /* FontAwesome Chevron Right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 12px;
    font-size: 0.9rem;
    color: #c92a7a;
    /* Pink */
}

.ts-breadcrumb li:last-child::after {
    display: none;
}

.ts-breadcrumb li.active {
    color: #e6b96b;
    /* Gold */
    font-weight: 700;
}

/* Decorative Element using Pink (#c92a7a) */
.ts-banner-divider {
    width: 60px;
    height: 4px;
    background: #c92a7a;
    margin: 20px auto;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .ts-common-banner {
        height: 350px;
    }

    .ts-banner-title {
        font-size: 2.8rem;
    }

    .ts-breadcrumb li {
        font-size: 0.9rem;
    }
}

/* common banner */
/* ABOUT US PAGE */
.ts-story-section {
    padding: 120px 0;
    background: radial-gradient(circle at top right, #ffffff, #fcf4ff 40%, #ffffff 100%);
    color: #2d3436;
    font-family: 'Quicksand', sans-serif;
    overflow: hidden;
    position: relative;
}

/* Animated Floating Elements */
.ts-floating-shape {
    position: absolute;
    z-index: 0;
    filter: blur(40px);
    opacity: 0.4;
    pointer-events: none;
    border-radius: 50%;
    animation: float-slow 15s infinite alternate ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #c92a7a;
    top: -100px;
    left: -50px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: #e6b96b;
    bottom: -50px;
    right: 10%;
    animation-delay: -5s;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 60px) scale(1.1);
    }
}

.ts-content-wrapper {
    position: relative;
    z-index: 1;
}

/* Tagline with Icon Gradient */
.ts-story-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #c92a7a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* Main Title Text Gradient */
.ts-story-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1a061b 0%, #c92a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ts-story-highlight {
    font-size: 1.3rem;
    color: #b08d57;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.5;
    border-left: 4px solid #e6b96b;
    padding-left: 20px;
}

.ts-story-text {
    color: #555e61;
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Image Composition Styling */
.ts-image-composition {
    position: relative;
    padding: 30px;
}

.ts-main-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(26, 6, 27, 0.12);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ts-main-img-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 90px rgba(26, 6, 27, 0.2);
}

.ts-secondary-img-wrapper {
    position: absolute;
    bottom: -30px;
    right: -10px;
    width: 65%;
    z-index: 3;
    border: 12px solid #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    animation: sub-float 6s infinite alternate ease-in-out;
}

@keyframes sub-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

/* Floating Decorative Icon */
.ts-floating-icon {
    position: absolute;
    top: 10%;
    right: 0;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6b96b;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 4;
    animation: rotate-float 8s infinite linear;
}

@keyframes rotate-float {
    0% {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateY(-15px);
    }

    100% {
        transform: rotate(0deg) translateY(0);
    }
}

.ts-story-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ts-signature {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #1a061b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ts-signature::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #c92a7a;
}

@media (max-width: 991px) {
    .ts-story-title {
        font-size: 3rem;
    }

    .ts-image-composition {
        margin-top: 80px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .ts-floating-shape {
        display: none;
    }
}


/* ABOUT US PAGE */

/* service page */
/* --- Global Elements --- */

.section-padding {
    padding: 50px 0;
}



.ts-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c92a7a;
    /* Rose Accent */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}

.ts-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    /* background: linear-gradient(135deg, #1a061b 30%, #c92a7a 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ts-text {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.8;
    color: #444;
}

/* --- Background Orbs --- */
.ts-bg-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.12;
    animation: move-orb 25s infinite alternate ease-in-out;
}

.orb-1 {
    background: #c92a7a;
    top: 10%;
    right: -10%;
}

.orb-2 {
    background: #c5a059;
    bottom: 10%;
    left: -10%;
    animation-delay: -12s;
}

@keyframes move-orb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100px, 150px);
    }
}

/* --- Offer Cards --- */
.offer-card {
    background: white;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #f1f1f1;
    font-family: 'Quicksand', sans-serif;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.offer-content {
    padding: 30px;
}

.offer-content h5 {
    font-weight: 700;
    color: #1a061b;
    margin-bottom: 10px;
}

/* --- Process Step --- */
.process-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    font-family: 'Quicksand', sans-serif;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #c5a059;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* --- CTA Bar --- */
.cta-bar {
    background: linear-gradient(135deg, #1a061b, #2d0b2e);
    color: white;
    padding: 80px 0;
    border-radius: 40px;
    margin-top: 40px;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}

.btn-gold {
    background: #c5a059;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: white;
    color: #1a061b;
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* contact */
.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    font-family: 'Quicksand', sans-serif;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f1f1;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card p {
    word-break: break-all;
    margin-bottom: 0.5rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fdf2f7;
    color: #c92a7a;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.form-control,
.form-select {
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background-color: #fbfbfb;
    font-family: 'Quicksand', sans-serif;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(201, 42, 122, 0.1);
    border-color: #c92a7a;
    background-color: #fff;
}

.btn-submit {
    background: #c5a059;
    color: white;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Quicksand', sans-serif;
}

.btn-submit:hover {
    background: #1a061b;
    color: white;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 295px;
    /* min-height: 260px; */
    background-color: #f8f9fa;
    border: 1px solid #eee;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    /* min-height: 400px; */
    border: 0;
    display: block;
}

.services-tag {
    background: #fdf2f7;
    color: #c92a7a;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.services-tag:hover {
    background: #c92a7a;
    color: white;
}

.page-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    color: #1a061b;
    margin-bottom: 10px;
}

/* gallery */

/* modal popup form */
.btn-book {
    background: linear-gradient(135deg, #c92a7a, #1a061b);
    color: white;
    border: none;
    /* padding: 12px 25px; */
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-book:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 42, 122, 0.3);
}

/* Modal Styling */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    background: linear-gradient(135deg, #c92a7a, #1a061b);
    color: white;
    border-bottom: none;
    padding: 25px;
}

.modal-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.form-label {
    font-weight: 600;
    color: #1a061b;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    border-color: #c92a7a;
    box-shadow: 0 0 0 0.25rem rgba(201, 42, 122, 0.1);
    outline: 0;
}

.modal-footer {
    border-top: none;
    padding: 25px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #c92a7a, #1a061b);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* whatsapp and sroll to top */
/* Floating Actions Container */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: #25d366;
}

/* Scroll Top Button */
.btn-scroll-top {
    background: linear-gradient(135deg, #c92a7a, #1a061b);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.btn-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* model */
.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
    background: linear-gradient(135deg, #c92a7a, #1a061b);
    color: white;
    border: none;
    padding: 25px;
}

.modal-title {
    font-family: 'Bricolage Grotesque', sans-serif;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.form-label {
    font-weight: 600;
    color: #1a061b;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    border-color: #c92a7a;
    box-shadow: 0 0 0 0.25rem rgba(201, 42, 122, 0.1);
    outline: 0;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #c92a7a, #1a061b);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* Floating Actions */
/* Call Button */
.btn-call {
    background: linear-gradient(135deg, #007bff, #003f7f);
}