/* ===================================
   Global Styles & CSS Variables
   =================================== */
@font-face {
    font-family: 'Trivelas21';
    src: url('../trivelas-21/Trivelas21-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --pink: #ee3c8b;
    --green: #8ca955;
    --blue: #61aef4;
    --text-dark: var(--black);
    --bg-white: var(--white);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Trivelas21', serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* ===================================
   Logo Styles
   =================================== */
.top-logo-wrapper {
    position: absolute;
    top: -37px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-circle {
    width: 150px;
    height: 150px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.logo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--black) !important;
    padding: 0.5rem 1.5rem !important;
    margin: 0 0.2rem;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    display: inline-block;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1.5rem;
    width: 0;
    height: 1.5px;
    background-color: var(--pink);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover {
    color: var(--pink) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--black) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 3rem);
}

/* Remove glow for better readability on light background */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    text-shadow: none;
}

/* Ensure mobile toggler is visible on white background */
.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar-toggler-icon {
    filter: brightness(0);
}

.btn-order-online {
    background: linear-gradient(to right, #8b2f8a, #ec1c7e) !important;
    color: #ffffff !important;
    padding: 10px 30px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 0 0 2px #ec1c7e !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.btn-order-online:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px #8b2f8a, 0 8px 15px rgba(0, 0, 0, 0.2) !important;
    background: linear-gradient(to left, #8b2f8a, #ec1c7e) !important;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 44%);
    z-index: -1;
}

.hero-center-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
}

.hero-center-title {
    font-family: 'Trivelas21', serif;
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeUp 1.2s ease-out forwards;
    margin-top: 50px;
    margin-bottom: 2rem;
}

.we-text,
.signature-cakes-word {
    position: relative;
    display: inline-block;
}

.underline-img,
.slider-underline {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
}

@media (max-width: 767px) {
    .slider-underline {
        bottom: -6px;
        width: 100px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.hero-category-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 1.4s ease-out forwards;
}

.tag-item {
    background-color: transparent;
    color: var(--white);
    padding: 0.2rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 1px solid #ee3c8b;
    transition: var(--transition);
    box-shadow: none;
    cursor: default;
    font-family: 'Trivelas21', serif;

}

.tag-item:hover {
    background-color: transparent;
    color: var(--pink) !important;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(238, 60, 139, 0.4);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Info Section */
.info-banner-section {
    background-color: #fee6e5;
    padding: 3rem 0;
    width: 100%;
}

.info-banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.5px;
}

@media (max-width: 991px) {
    .info-banner-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .info-banner-title {
        font-size: 1.8rem;
    }
}

/* Welcome Section */
.welcome-jaipur-section {
    padding: 100px 0;
    background-image: url('../img/welcome-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.welcome-left-texture,
.welcome-right-texture {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: auto;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.welcome-left-texture {
    left: 0;
}

.welcome-right-texture {
    right: 0;
}

@media (max-width: 991px) {

    .welcome-left-texture,
    .welcome-right-texture {
        width: 150px;
        opacity: 0.15;
    }
}

.welcome-content {
    position: relative;
    z-index: 2;
}

.welcome-side-img {
    width: 85%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
    display: block;
    margin: 0 auto;
}

.welcome-side-img:hover {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .welcome-jaipur-section {
        padding: 60px 0;
    }

    .welcome-image-wrapper {
        margin-top: 50px;
    }
}

.welcome-title {
    font-family: 'Trivelas21', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 25px;
    letter-spacing: 1px;
}

.title-line {
    display: inline-block;
    height: 1px;
    background: #ccc;
    width: 60px;
}

.welcome-desc p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #282828;
    line-height: 1.5;
    margin-bottom: 1rem;
    max-width: 600px;
}

@media (max-width: 767px) {
    .welcome-title {
        font-size: 2rem;
    }

    .welcome-desc p {
        font-size: 1.1rem;
    }
}

.products-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 15px;
}

.slider-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.5px;
}

.hero-content {
    padding: 2rem 0;
}

/* Watch Video Button */
.watch-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.watch-video-btn:hover {
    transform: translateX(5px);
}

.play-icon {
    width: 50px;
    height: 50px;
    background-color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-icon i {
    color: var(--bg-white);
    font-size: 1rem;
    margin-left: 3px;
}

.watch-video-btn:hover .play-icon {
    background-color: var(--pink);
    transform: scale(1.1);
}

.watch-video-btn span {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
}

/* Hero Title */
.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.difference-text {
    font-style: italic;
    position: relative;
    display: inline-block;
}

.underline-img {
    position: absolute;
    bottom: -17px;
    left: auto;
    right: 0;
    width: 150px;
    height: auto;
    max-width: 100%;
    display: block;

}

/* Hero Description */
.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 90%;
    line-height: 1.8;
}

.navbar-brand .brand-name,
.navbar-nav .nav-link {
    color: var(--white) !important;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-read-more {
    background: linear-gradient(to right, #8b2f8a, #ec1c7e) !important;
    color: #ffffff !important;
    padding: 12px 35px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 0 0 2px #ec1c7e !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.btn-read-more:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px #8b2f8a, 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    background: linear-gradient(to left, #8b2f8a, #ec1c7e) !important;
}

.btn-order-outline {
    background: linear-gradient(to right, #8b2f8a, #ec1c7e) !important;
    color: #ffffff !important;
    padding: 12px 35px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 0 0 2px #ec1c7e !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.btn-order-outline:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px #8b2f8a, 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    background: linear-gradient(to left, #8b2f8a, #ec1c7e) !important;
}

/* ===================================
   Hero Image Section
   =================================== */
.hero-image-section {
    position: relative;
    padding: 2rem;
}

.main-cake-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.cake-circle {
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cake-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

.cake-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    color: var(--white);
}

/* Product Carousel */
.product-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-white);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.carousel-nav {
    width: 40px;
    height: 40px;
    background-color: var(--pink);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-nav:hover {
    background-color: var(--green);
    transform: scale(1.1);
}

.product-items {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-thumb {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(238, 60, 139, 0.1) 0%, rgba(97, 174, 244, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-item.active .product-thumb,
.product-item:hover .product-thumb {
    background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.product-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

/* ===================================
   Animations
   =================================== */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .hero-center-title {
        font-size: 4rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .info-banner-title {
        font-size: 2.2rem;
    }

    .cake-circle {
        width: 380px;
        height: 380px;
    }

    .cake-placeholder {
        font-size: 10rem;
    }

    .hero-image-section {
        margin-top: 2rem;
    }

    /* Center Logo on Tablet/Mobile */
    .navbar>.container {
        justify-content: center;
        position: relative;
    }

    .navbar-brand {
        margin-right: 0 !important;
        padding: 0;
    }

    .nav-logo {
        height: 70px;
        width: auto;
    }

    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-center-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .info-banner-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-read-more,
    .btn-order-outline {
        width: 100%;
        text-align: center;
    }

    .cake-circle {
        width: 320px;
        height: 320px;
    }

    .cake-placeholder {
        font-size: 8rem;
    }

    .product-carousel {
        border-radius: 30px;
        padding: 0.8rem;
    }

    .product-thumb {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .product-name {
        font-size: 0.75rem;
    }

    .product-items {
        gap: 1rem;
    }

    .hero-category-tags {
        gap: 0.6rem;
        padding: 0 1rem;
    }

    .tag-item {
        padding: 0.2rem 1rem;
        font-size: 0.75rem;
    }

    .underline-img {
        position: absolute;
        bottom: -6px;
        left: auto;
        right: 0;
        width: 150px;
        height: auto;
        max-width: 100%;
        display: block;
    }
}

@media (max-width: 575px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-center-content {
        position: relative;
        z-index: 10;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 80px;
    }

    .hero-center-title {
        font-size: 1.7rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .watch-video-btn {
        margin-bottom: 1.5rem;
    }

    .play-icon {
        width: 45px;
        height: 45px;
    }

    .cake-circle {
        width: 280px;
        height: 280px;
    }

    .cake-placeholder {
        font-size: 6rem;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .product-thumb {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .product-items {
        gap: 0.8rem;
    }


    .hero-category-tags {
        gap: 10px;
        padding: 0 10px;
        justify-content: center;
    }

    .tag-item {
        padding: 4px 12px;
        font-size: 0.85rem;
        /* Increased size for readability */
        letter-spacing: 0.5px;
    }

    .underline-img {
        position: absolute;
        bottom: -6px;
        left: auto;
        right: 0;
        width: 150px;
        height: auto;
        max-width: 100%;
        display: block;
    }

    .nav-logo {
        height: 64px;
    }

    .logo-circle {
        width: 120px;
        height: 120px;
    }

    .top-logo-wrapper {
        top: -26px;
    }
}

/* Featured Products Slider */
.featured-products-section {
    padding: 5rem 0;
    background-color: #ffffff;
    position: relative;
}

.product-card-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.product-card-v2 .img-wrapper {
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.product-card-v2:hover .img-wrapper {
    transform: translateY(-10px);
}

.product-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.product-card-v2 .img-wrapper i {
    font-size: 5rem;
    color: var(--white);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.product-card-v2 h3 {
    font-size: .9rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    /* background-image: url(../img/bg-shape.png); */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px 16px;
    display: inline-block;
    min-width: 160px;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.productSwiper {
    padding: 30px 0;
}

/* Swiper Navigation Customization */
.featured-products-section {
    position: relative;
}

.swiper-nav-wrapper {
    display: flex;
    gap: 15px;
    z-index: 100;
}

.swiper-button-next,
.swiper-button-prev {
    position: static !important;
    background-color: var(--pink) !important;
    color: var(--white) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: 2px solid var(--pink) !important;
    box-shadow: 0 4px 15px rgba(238, 60, 139, 0.3) !important;
    margin-top: 0 !important;
    transition: var(--transition) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: transparent !important;
    color: var(--pink) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 60, 139, 0.4) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

@media (max-width: 767px) {
    .products-slider-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .slider-title {
        font-size: 1.9rem;
    }

    .swiper-nav-wrapper {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        transform: none !important;
        justify-content: center;
        margin-top: 1.5rem;
        gap: 15px;
    }

    .info-banner-title {
        padding-right: 0 !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1rem !important;
    }
}

@media (max-width: 991px) {
    .product-card-v2 .img-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 575px) {
    .featured-products-section {
        padding: 3rem 0;
    }

    .product-card-v2 .img-wrapper {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }

    .product-card-v2 h3 {
        font-size: 1.2rem;
        font-weight: 500;
        color: #ffffff;
        text-align: center;
        margin: 0;
        font-family: 'Poppins', sans-serif;
        /* background-image: url(../img/bg-shape.png); */
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        padding: 10px 16px;
        display: inline-block;
        min-width: 200px;
        background: black;
        border-radius: 5px;
    }

    .productSwiper {
        padding: 0px 0;
    }
}

/* ===================================
   Container Width Override
   =================================== */
@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1250px;
    }
}

/* ===================================
   Celebrations Section
   =================================== */
.celebrations-section {
    padding: 100px 0;
    background-color: var(--white);
    background-image: url('../img/body-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.celebration-title {
    font-family: 'Trivelas21', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #000000;
    letter-spacing: 1px;
    margin-bottom: 25px;
    /* Increased margin for underline space */
}

.celebrate-word {
    position: relative;
    display: inline-block;
}

.celebrate-underline {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 60%;
    height: auto;
    pointer-events: none;
}

.celebration-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #888;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.celebration-accent {
    width: 60px;
    height: 4px;
    background-color: #4CAF50;
    margin: 30px auto 0;
    border-radius: 2px;
}

.circles-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    flex-wrap: nowrap;
    /* Keep them in a row for the effect */
}

.circle-item {
    margin: 0 -25px;
    /* Overlap effect */
    position: relative;
    z-index: 1;
    transition: z-index 0.3s;
}

.circle-item:hover {
    z-index: 10;
}

.dashed-circle {
    width: 290px;
    height: 290px;
    border: 1.5px dashed #d1d1d1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.circle-content {
    text-align: center;
    padding: 30px;
    max-width: 240px;
}

.circle-content img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.circle-content h4 {
    font-family: 'Trivelas21', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.circle-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #282828;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Hover Effects */
.circle-item:hover .dashed-circle {
    border-color: var(--pink);
    border-style: solid;
    /* Changes to solid on hover for emphasis */
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.circle-item:hover .circle-content img {
    transform: scale(1.15) rotate(5deg);
}

.circle-item:hover h4 {
    color: var(--pink);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .dashed-circle {
        width: 250px;
        height: 250px;
    }

    .circle-item {
        margin: 0 -20px;
    }
}

@media (max-width: 991px) {
    .circles-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }

    .circle-item {
        margin: 0;
    }

    .dashed-circle {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 575px) {
    .celebration-title {
        font-size: 1.9rem;
    }

    .celebration-subtitle {
        font-size: 0.9rem;
    }

    .dashed-circle {
        width: 300px;
        height: 300px;
    }

    .circle-content img {
        width: 115px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        transition: transform 0.4s ease;
        filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
    }
}

/* ===================================
   Desserts Section
   =================================== */
.desserts-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.desserts-title {
    font-family: 'Trivelas21', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--black);
    margin: 0;
}

.desserts-title .accent-text {
    color: #ee3c8b;
}

.dessertSwiper {
    width: 100%;
    padding: 0px;
}

.dessertSwiper .swiper-wrapper {
    flex-direction: row !important;
}

.dessertSwiper .swiper-slide {
    height: auto;
    margin-top: 0 !important;
}

.dessert-card {
    /* background-color: #fff9f0; */
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    min-height: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    overflow: hidden;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    margin-bottom: 5px;
}


.dessert-card:hover {
    transform: translateY(-10px);
}

.dessert-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.badge-new {
    background-color: #cd853f;
}

.badge-best {
    background-color: #cd853f;
}

.badge-hot {
    background-color: #cd853f;
}

.dessert-img {
    width: 100%;
    height: 220px;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
}

.dessert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dessert-card:hover .dessert-img img {
    transform: scale(1.1);
}



.btn-dessert-order {
    background: linear-gradient(to right, #ff0052, #b12b6a) !important;
    color: #ffffff !important;
    padding: 5px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 0 0 1px #ec1c7e !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.btn-dessert-order:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 1px #8b2f8a, 0 3px 5px rgba(0, 0, 0, 0.15) !important;
    background: linear-gradient(to right, #ff0052, #b12b6a) !important;
}

.product-card-v2 .btn-dessert-order {
    margin-top: -10px;
    z-index: 2;
}

@media (max-width: 575px) {
    .desserts-title {
        font-family: 'Trivelas21', serif;
        font-size: 1.9rem;
        font-weight: 500;
        color: #000000;
        margin: 0;
    }
}

/* ===================================
   Custom Cake Section
   =================================== */
.custom-cake-section {
    background-color: var(--white);
    padding: 10px;
}

.custom-cake-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.custom-cake-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #000000;
    /* Dark blue color from image */
    margin-bottom: 20px;
}

.perfect-color {
    color: #ee3c8b;
}

.custom-cake-desc {
    font-size: 1rem;
    color: #282828;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;

    margin-bottom: 35px;
}

.btn-custom-design {
    background: linear-gradient(135deg, #8b2f8a 0%, #ec1c7e 100%) !important;
    color: #ffffff !important;
    padding: 10px 40px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    letter-spacing: .5px !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 5px 15px rgba(236, 28, 126, 0.3), 0 0 0 2px #ec1c7e !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.btn-custom-design:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(236, 28, 126, 0.5), 0 0 0 1px #8b2f8a !important;
    color: #ffffff !important;
}

.btn-custom-design i {
    transition: transform 0.4s ease;
}

.btn-custom-design:hover i {
    transform: translateX(5px) rotate(15deg);
}

@media (max-width: 575px) {
    .custom-cake-title {
        font-size: 1.9rem;
        font-weight: 500;
        color: #000000;
        margin-bottom: 20px;
    }
}

/* ===================================
   Testimonial Section
   =================================== */
.testimonial-section {
    background-color: #ef6c11;
    background-image: url('../img/welcome-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-main-title {
    font-family: 'Trivelas21', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #000;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-line {
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
}

.testimonial-nav {
    display: flex;
    gap: 15px;
}

.testi-prev,
.testi-next {
    width: 50px;
    height: 50px;
    background-color: var(--pink);
    border: 2px solid var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(238, 60, 139, 0.3);
}

.testi-prev:hover,
.testi-next:hover {
    background-color: transparent;
    color: var(--pink);
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(238, 60, 139, 0.4);
}

.testimonial-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 900px;
    margin-top: 50px;
}

.testi-left-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ef6c11;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    font-size: 2.5rem;
    color: #ef6c11;
}

.testi-right-side {
    padding-left: 40px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.testi-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #000;
    line-height: 1.4;
    margin-bottom: 25px;
}

.client-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #000;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 575px) {
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 10px !important;
        /* Reduced margin for mobile */
    }

    .testimonial-main-title {
        font-size: 1.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .testimonial-nav {
        display: flex;
        /* Ensure navigation buttons are visible */
        justify-content: center;
        margin-top: 10px;
    }

    .testi-prev,
    .testi-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .testimonial-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-top: 30px;
    }

    .testi-left-side {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .testi-right-side {
        padding-left: 0;
        border-left: none;
        padding-top: 10px;
    }

    .header-line {
        display: none;
    }
}

@media (max-width: 991px) {
    .testimonial-main-title {
        font-size: 2.2rem;
    }

    .testi-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .testimonial-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .testi-right-side {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }
}

/* ===================================
   Menu Section
   =================================== */
.menu-section {
    background-color: #fdfaf7;
    background-image: url('../img/body-bg.png');
    background-size: cover;
}

.menu-title {
    font-family: 'Trivelas21', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #000;
}

.menu-subtitle {
    color: #282828;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.menu-container {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-row-gap {
    --bs-gutter-x: 50px;
}

.menu-section .nav-tabs .nav-link {
    color: #282828;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 50px;
    margin: 5px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.menu-section .nav-tabs .nav-link:hover {
    color: #ff0052;
    background-color: rgba(255, 0, 82, 0.05);
}

.menu-section .nav-tabs .nav-link.active {
    background: linear-gradient(to right, #ff0052, #b12b6a) !important;
    color: #ffffff !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 0 0 1px #ec1c7e !important;
    transform: scale(1.05);
}

.category-title {
    font-family: 'Trivelas21', serif;
    color: #000000;
    border-bottom: 2px solid #ef6c11;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.menu-item-row span:first-child {
    font-weight: 500;
    color: #444;
}

.price {
    font-weight: 700;
    color: #000;
}

/* Pizza Special Styles */
.pizza-header-row {
    font-weight: 500;
    color: #000000;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    font-family: 'Trivelas21', serif;
}

.price-header {
    width: 100px;
    text-align: right;
}

.menu-item-pizza {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.pizza-info h6 {
    margin-bottom: 2px;
    font-weight: 700;
    color: #000;
}

.pizza-info p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0;
    font-style: italic;
}

.pizza-prices {
    display: flex;
    gap: 40px;
}

.pizza-prices span {
    width: 60px;
    text-align: right;
    font-weight: 700;
    color: #000;
}

/* Combo Card Styles */
.combo-card {
    background: #fffcf9;
    border: 1px solid #ffe8d6;
    transition: all 0.3s ease;
}

.combo-card:hover {
    transform: translateX(10px);
    border-color: #ef6c11;
    box-shadow: 0 5px 15px rgba(239, 108, 17, 0.1);
}

.combo-card h5 {
    color: #ee3c8b;
    font-weight: 500;
}

.combo-card p {
    color: #282828;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .menu-title {
        font-size: 1.9rem;
    }

    .pizza-prices {
        gap: 15px;
    }

    .pizza-prices span {
        width: 50px;
        font-size: 0.9rem;
    }

    .menu-section .nav-tabs .nav-link {
        padding: 8px 15px;
        font-size: 0.9rem;
        margin-bottom: 10px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        /* Added border with low opacity */
    }
}

/* ===================================
   Footer Section
   =================================== */
/* ===================================
   Footer Section
   =================================== */
.footer-section {
    background-color: #ffffff;
    color: #000000;
    padding-top: 20px;

}

/* Newsletter Styles */
/* Main Footer Logo */
.main-footer-logo {
    width: 250px;
    height: auto;
    filter: none;
    opacity: 0.9;
    transition: var(--transition);
}

.main-footer-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
    margin: 10px 0;
}

/* Footer Bottom Styles */
.copyright-text {
    font-size: 1rem;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.synergy-link {
    color: #ee3c8b;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.synergy-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #ee3c8b;
    transition: var(--transition);
}

.synergy-link:hover {
    color: #ee3c8b;
}

.synergy-link:hover::after {
    width: 100%;
}

/* Footer Contact Info */
.footer-contact-info .footer-brand-name {
    font-family: 'Trivelas21', serif;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 5px;
}

/* Footer Owner Badge Styling */
.owner-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 10px;
}

.owner-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-contact-info .owner-name {
    font-family: 'Trivelas21', serif;
    font-size: 1.6rem;
    color: #ee3c8b;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-contact-info .owner-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, transparent, #ee3c8b, transparent);
}

.footer-contact-info .footer-address {
    font-size: 1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
    max-width: 700px;
    margin: 0 0 10px;
    /* Default to start (left) */
}

@media (min-width: 768px) {
    .footer-contact-info .footer-address {
        margin: 0 auto 10px;
        /* Center on desktop */
    }
}

.footer-contact-info .footer-contact-links {
    font-size: 1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

/* Dual Outlet Styling */
.footer-outlet-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    border: 1px solid #eee;
}

.footer-outlet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--pink);
}

.outlet-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 15px;
}

.footer-address {
    font-size: 0.95rem !important;
    line-height: 1.6;
    color: #555 !important;
}

.footer-contact-info .separator {
    color: #ee3c8b;
    font-weight: 300;
}

.footer-contact-info a {
    color: #333;
    transition: var(--transition);
}

.footer-contact-info i {
    color: #ee3c8b !important;
}

.footer-contact-info a:hover {
    color: #ee3c8b !important;
}

@media (max-width: 768px) {
    .newsletter-input {
        width: 100%;
        margin-bottom: 0px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px !important;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-bottom: 20px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 1rem !important;
    }

    .footer-contact-info {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .footer-section {
        padding-top: 40px;
    }

    .footer-title {
        margin-top: 20px;
    }
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    background-color: #fcfcfc;
}

.faq-main-title {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #282828;
    font-size: 1.1rem;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-section .accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #000;
    background-color: #fff;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--pink);
    background-color: #fff;
}

.faq-section .accordion-button::after {
    background-size: 16px;
}

.faq-section .accordion-body {
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.accent-text {
    color: var(--pink);
}

@media (max-width: 768px) {
    .faq-main-title {
        font-size: 2.2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }
}

/* ===================================
   Jaipur Bakers Branding & CTA Bar
   =================================== */
.jaipur-bakers-branding {
    background-color: #ffffff;
    padding: 80px 0 40px;
}

.branding-header {
    margin-bottom: 20px;
}

.branding-title {
    font-family: 'Trivelas21', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.branding-title-line {
    width: 60px;
    height: 1.5px;
    background-color: #ddd;
    margin-top: 15px;
}

.branding-desc {
    font-size: 1.15rem;
    color: #888;
    max-width: 90%;
    margin: 0;
    font-weight: 300;
    line-height: 1.8;
}

.party-cakes-cta {
    background-color: #ee3c8b;
    /* Vibrant CTA Orange */
    padding: 45px 0;
}

.cta-flex-wrapper {
    gap: 20px;
}

.cta-text {
    font-family: 'Trivelas21', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.btn-cta-order {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 14px 45px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 1.1rem !important;
    letter-spacing: 1px !important;
    border: 3px solid #ffffff !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.btn-cta-order:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    color: #000000 !important;
}

@media (max-width: 991px) {
    .branding-title {
        font-size: 2.5rem;
    }

    .cta-text {
        font-size: 1.8rem;
        text-align: center;
    }

    .party-cakes-cta {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .branding-title {
        font-size: 1.9rem;
    }

    .branding-desc {
        font-size: 1rem;
    }

    .cta-text {
        font-size: 1.9rem;
        margin-bottom: 0px;
    }

    .branding-title-line {
        width: 40px;
    }

    .dessertSwiper {
        width: 100%;
        padding: 0px;
    }
}

/* ===================================
   Enhanced Floating CTA Section
   =================================== */
/* ===================================
   Premium Floating CTA Section (Refined)
   =================================== */
.floating-cta-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.cta-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 0% 0%, hsla(335, 84%, 58%, 0.25) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(285, 49%, 36%, 0.25) 0, transparent 50%),
        radial-gradient(at 100% 100%, hsla(335, 84%, 58%, 0.25) 0, transparent 50%),
        radial-gradient(at 0% 100%, hsla(285, 49%, 36%, 0.25) 0, transparent 50%);
    filter: blur(40px);
    z-index: 1;
    animation: meshRotate 20s linear infinite alternate;
}

@keyframes meshRotate {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.1) rotate(5deg);
    }
}

.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2.5rem;
    animation: floatAround 10s ease-in-out infinite alternate;
}

.cake-1 {
    top: 10%;
    left: 8%;
    animation-delay: 0s;
    font-size: 3rem;
}

.cake-2 {
    top: 50%;
    left: 91%;
    animation-delay: -2s;
    font-size: 2.5rem;
}

.cake-3 {
    top: 75%;
    left: 12%;
    animation-delay: -5s;
    font-size: 2rem;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(15px, 20px) rotate(15deg);
    }

    100% {
        transform: translate(-10px, -15px) rotate(-10deg);
    }
}

.cta-premium-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 35px;
    padding: 50px 30px;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-premium-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.cta-main-text {
    font-family: 'Trivelas21', serif;
    font-size: 3rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 35px;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, #ffbccd, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shineText 5s linear infinite;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

.cta-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium-cta {
    position: relative;
    padding: 6px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    overflow: hidden;
    z-index: 1;
    animation: buttonPulse 3s ease-in-out infinite;
}

@keyframes buttonPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-whatsapp-glow {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    animation-delay: 0s;
}

.btn-whatsapp-glow:hover {
    background: transparent;
    color: #25D366;
    transform: scale(1.08) !important;
    animation-play-state: paused;
}

.btn-call-glow {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
    animation-delay: 1.5s;
    /* Offset for alternating effect */
}

.btn-call-glow:hover {
    background: transparent;
    color: var(--pink);
    transform: scale(1.08) !important;
    animation-play-state: paused;
}

.btn-premium-cta i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* Icon Wrapper Styling */
.cta-icon-wrapper {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    position: relative;
    transition: all 0.4s ease;
}

.btn-premium-cta:hover .cta-icon-wrapper {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(360deg);
}

/* Call Icon Ringing Animation */
.fa-phone-volume {
    animation: iconRing 2s ease-in-out infinite;
}

@keyframes iconRing {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-15deg) scale(1.1);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(15deg) scale(1.1);
    }
}

/* WhatsApp Icon Pulse Animation */
.fa-whatsapp {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@media (max-width: 991px) {
    .cta-main-text {
        font-size: 2.5rem;
    }

    .cta-premium-card {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .floating-cta-section {
        padding: 40px 0;
    }

    .cta-main-text {
        font-size: 2rem;
    }

    .btn-premium-cta {
        width: 100%;
        max-width: 280px;
        padding: 5px 0px;
    }

    .btn-custom-design {
        padding: 10px 26px !important;
    }

    .btn-dessert-order {
        margin-bottom: 10px !important;
    }
}

/* Ensure section is animated */
.floating-cta-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.floating-cta-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Smooth Scroll Enhancement
   =================================== */
html {
    scroll-padding-top: 80px;
}