@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #d63384; /* Soft Pink */
    --primary-dark: #b82a6f;
    --secondary-color: #6c757d;
    --light-bg: #fdf2f7; /* Brighter, pinkish light bg */
    --dark-text: #2d3436;
    --accent-color: #6c5ce7;
    --transition-base: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.05);
    --shadow-bold: 0 20px 50px rgba(214, 51, 132, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-soft);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Navbar Enhancement */
/* Navbar Enhancement */
.navbar {
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    width: 100%;
    z-index: 1000;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Base override to kill any white background */
.navbar.bg-white, 
.navbar.bg-light,
.navbar-light,
.navbar-toggler {
    background-color: transparent !important;
}

.home-page .navbar.navbar-dark {
    background-color: transparent !important;
}

.home-page .navbar {
    background-color: transparent !important;
}

.home-page .navbar:not(.scrolled) {
    background-color: transparent !important;
    box-shadow: none !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.home-page .navbar.scrolled {
    background-color: rgba(214, 51, 132, 0.9) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.navbar.scrolled {
    background-color: rgba(214, 51, 132, 0.9) !important;
    padding: 0.9rem 0;
    position: fixed;
    top: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* Fix for other pages */
body:not(.home-page) .navbar {
    background-color: var(--primary-color) !important;
    position: sticky;
    top: 0;
    padding: 0.9rem 0;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-wrapper {
    position: relative;
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo-dot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 2px solid #fff;
}

.tracking-tight {
    letter-spacing: -1px;
}

.nav-link {
    font-weight: 500;
    margin-left: 1rem;
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transition: var(--transition-base);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

/* Hero Section */
.carousel-fade .carousel-item {
    transition-duration: 2s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    transition: opacity 2s ease-in-out;
}

.hero-section {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    color: #fff;
    overflow: hidden;
    padding-top: 0 !important;
}

#heroCarousel, .carousel-inner, .carousel-item {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4) 100%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(214, 51, 132, 0.2) 100%);
    z-index: 1;
}

/* Curved Hero Shapes (Double Wave) */
.hero-curves {
    position: absolute;
    bottom: -3px; /* Avoid subpixel gap */
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.hero-curve-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.3s ease;
}

.hero-curve-back {
    height: 100%;
    opacity: 0.35;
}

.hero-curve-front {
    height: 75%;
}

.hero-stats-section {
    position: relative;
    z-index: 10;
    margin-top: -30px;
    padding: 0 0 4rem;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(214, 51, 132, 0.08);
    color: #fff;
}

/* Ambient Glow Blobs */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    -webkit-filter: blur(120px);
    z-index: 2;
    opacity: 0.45;
    pointer-events: none;
    animation: float-blob 10s ease-in-out infinite alternate;
}

.glow-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.5) 0%, rgba(108, 92, 231, 0.2) 100%);
    top: -10%;
    right: 10%;
}

.glow-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.4) 0%, rgba(214, 51, 132, 0.1) 100%);
    bottom: 10%;
    left: -5%;
    animation-delay: -5s;
}

@keyframes float-blob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(60px, 40px) scale(1.15) rotate(180deg);
    }
    100% {
        transform: translate(-30px, 80px) scale(0.9) rotate(360deg);
    }
}

/* Carousel Indicators Styling */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0 6px;
    opacity: 0.8;
}

.carousel-indicators .active {
    width: 28px;
    border-radius: 5px;
    background-color: var(--primary-color);
    opacity: 1;
}

/* Carousel Navigation Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 6;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 0.85;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    background-size: 35%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(214, 51, 132, 0.4);
}

/* Slide Text animations */
.carousel-item .hero-badge,
.carousel-item h1,
.carousel-item h2,
.carousel-item p,
.carousel-item .hero-actions {
    opacity: 0;
    transform: translateY(35px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-item.active .hero-badge {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
}

.carousel-item.active h1,
.carousel-item.active h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.carousel-item.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}

.carousel-item.active .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.85s;
}

/* Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    animation: fade-in-up-delay 1.5s ease-out 1.2s both;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(3px);
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s ease-out infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 16px);
    }
}

@keyframes fade-in-up-delay {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(214, 51, 132, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-color) !important;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(214, 51, 132, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: var(--transition-base);
}

.card:hover .card-icon {
    background: var(--primary-color);
    color: #fff;
}

/* Sections */
section {
    padding: 80px 0;
}

.page-header {
    padding-top: 50px !important;
    padding-bottom: 100px !important;
}

.section-title {
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer */
/* Gallery Styles */
/* Gallery Grid & Filter */
.filter-buttons .btn {
    transition: var(--transition-base);
    font-weight: 500;
}

.filter-buttons .btn.active {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.gallery-grid {
    transition: all 0.5s ease;
}

.gallery-item-wrapper {
    transition: all 0.3s ease;
}

/* Gallery Enhancements */
.category-card {
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-img-wrapper {
    position: relative;
    padding-top: 125%; /* 4:5 Aspect Ratio */
}

.category-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(214, 51, 132, 0.2), rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px;
    text-align: center;
    transition: var(--transition-base);
}

.category-overlay i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to bottom, rgba(214, 51, 132, 0.4), rgba(0,0,0,0.9));
}

.category-overlay h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: var(--transition-base);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(214, 51, 132, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

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

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding-top: 80px;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition-base);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: rotate(360deg);
}

/* Contact Page Enhancements */
.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: rgba(214, 51, 132, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

/* Testimonial Section */
.testimonial-card {
    padding: 45px 35px 35px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    margin-top: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(214, 51, 132, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(214, 51, 132, 0.08);
    border-color: rgba(214, 51, 132, 0.15);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.3);
}

.rating-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.student-info {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.student-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--light-bg);
}

/* Room Preview Section */
.room-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(214, 51, 132, 0.08);
    border-color: rgba(214, 51, 132, 0.15);
}

.room-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.25);
}

.room-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 65%; /* 16:10 Aspect Ratio */
}

.room-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-card:hover .room-img-wrapper img {
    transform: scale(1.08);
}

.room-details {
    padding: 30px 25px;
    background: #fff;
    border-top: none;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0 20px;
}

.amenity-tag {
    font-size: 0.78rem;
    padding: 5px 12px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(214, 51, 132, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.room-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Premium Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 40px;
    padding: 80px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 52, 96, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    -webkit-filter: blur(100px);
    pointer-events: none;
    opacity: 0.3;
}

.cta-glow-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 80%);
    top: -10%;
    right: 10%;
}

.cta-glow-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 80%);
    bottom: -10%;
    left: 20%;
}

.text-warning-gradient {
    background: linear-gradient(45deg, #ff9f43, #ffca28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.15);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(231, 76, 60, 0.25);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 10px rgba(231, 76, 60, 0.8);
    }
    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.cta-features {
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-features i {
    text-shadow: 0 0 10px rgba(255, 202, 40, 0.4);
}

.cta-glass-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    color: var(--dark-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Glass card gradient button */
.cta-card-btn {
    padding: 12px 20px;
    border-radius: 20px;
    border: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-decoration: none;
}

.cta-card-btn i {
    font-size: 1.8rem;
    opacity: 0.9;
}

.cta-card-btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.2);
}

.cta-card-btn.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.cta-card-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2) !important;
}

.cta-card-btn.btn-primary:hover {
    box-shadow: 0 12px 30px rgba(214, 51, 132, 0.35) !important;
}

.cta-card-btn.btn-success:hover {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35) !important;
}

.cta-glass-card .btn-outline-dark {
    border: 2px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.cta-glass-card .btn-outline-dark:hover {
    background: var(--dark-text);
    color: #fff !important;
    border-color: var(--dark-text);
}

/* Stat Cards */
.stat-card {
    padding: 35px 25px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 51, 132, 0.12);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.03) 0%, rgba(108, 92, 231, 0.03) 100%);
    z-index: -1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(214, 51, 132, 0.4);
    box-shadow: 0 15px 35px rgba(214, 51, 132, 0.12);
}

.stat-card-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.1) 0%, rgba(108, 92, 231, 0.05) 100%);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.stat-card:hover .stat-card-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(214, 51, 132, 0.2);
}

/* Feature Card & Grid Modernization */
.feature-card {
    border: none;
    border-radius: 24px;
    padding: 45px 30px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(214, 51, 132, 0.03);
    height: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.04) 0%, rgba(108, 92, 231, 0.04) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(214, 51, 132, 0.08);
    border-color: rgba(214, 51, 132, 0.15);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, rgba(214, 51, 132, 0.08) 0%, rgba(108, 92, 231, 0.03) 100%);
    color: var(--primary-color);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.25);
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--primary-dark);
}

.feature-list {
    padding-left: 0;
    margin-bottom: 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    text-align: left;
    color: var(--secondary-color);
}

.feature-list li i {
    font-size: 0.95rem;
    margin-right: 10px;
    flex-shrink: 0;
}

/* FAQ Section Accordion Custom Styling */
.faq-section {
    background-color: var(--light-bg);
}

.accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 18px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(214, 51, 132, 0.02);
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(214, 51, 132, 0.04);
    border-color: rgba(214, 51, 132, 0.1);
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-text);
    padding: 20px 25px;
    background-color: #fff;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--primary-color);
}

.accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 0 25px 25px;
    background-color: #fff;
    color: var(--secondary-color);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(214, 51, 132, 0.98);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 20px;
        backdrop-filter: blur(10px);
    }
    
    .home-page .navbar-collapse {
        background: rgba(0, 0, 0, 0.8) !important;
    }

    section {
        padding: 60px 0;
    }
    
    .hero-section {
        min-height: 450px;
        height: 100vh;
        height: 100dvh;
        display: flex;
        align-items: center;
        padding: 0;
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-section .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .hero-curves {
        height: 70px;
    }

    .scroll-down-indicator {
        display: none;
    }

    .hero-stats-section {
        margin-top: -32px;
        padding-bottom: 3rem;
    }

    .lead {
        font-size: 1rem;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        height: 100dvh;
        min-height: 400px;
    }

    .display-3 {
        font-size: 1.8rem;
    }

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

    .hero-content .d-flex {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-content .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: var(--transition-base);
    animation: whatsapp-float 3s ease-in-out infinite;
    text-decoration: none;
}

.whatsapp-fab:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

@keyframes whatsapp-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .whatsapp-fab {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
