/* =====================================================
FUNSTATION PARTY ORGANISER
PREMIUM MULTI PAGE WEBSITE
CSS PART 1
Global + Header + Hero + Floating Buttons
===================================================== */

/* ===============================
GOOGLE FONT STYLE
=============================== */

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

/* ===============================
GLOBAL RESET
=============================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff7fc;
    color: #2b2b2b;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* ===============================
CUSTOM SCROLLBAR
=============================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        #ff4da6,
        #9c27b0
    );
    border-radius: 20px;
}

/* ===============================
HEADER
=============================== */

header {
    position: sticky;
    top: 0;
    z-index: 999;

    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 77, 166, 0.12);

    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* NAVBAR SHRINK */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 0;
    transition: all 0.4s ease;
}

header.scrolled .navbar {
    padding: 10px 0;
}
/* ===============================
LOGO & BRANDING (UPDATED)
=============================== */

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and text */
}

.logo-img {
    height: 100%; /* Adjust based on your logo size */
    width: 100%;
    border-radius: 50%; /* Keeps the circular look from your screenshot */
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-text h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    background: linear-gradient(to right, #ff4da6, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.brand-text p {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
    letter-spacing: 1px;
    font-weight: 500;
}


/* ===============================
NAVIGATION
=============================== */

/* NAV WRAPPER */
.nav-links {
    display: flex;
    gap: 35px;
    position: relative;
}

/* LINKS */
.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 6px 0;
    position: relative;
    transition: 0.3s;
}

/* ACTIVE COLOR ONLY */
.nav-links a.active {
    color: #d63384;
}

/* SLIDING INDICATOR BAR */
.nav-indicator {
    position: absolute;
    bottom: -6px;
    height: 3px;
    width: 0;
    background: linear-gradient(to right, #ff4da6, #9c27b0);
    border-radius: 20px;
    transition: all 0.4s ease;
    left: 0;
}
/* ===============================
BOOK NOW BUTTON
=============================== */

.book-btn {
    background: linear-gradient(
        135deg,
        #ff4da6,
        #9c27b0
    );
    color: white;
    padding: 14px 30px;
    border-radius: 14px;
   
    font-weight: 700;
    
    font-size: 15px;
}        
    box-shadow: 0 15px 30px rgba(214,51,132,0.25);
    transition: 0.4s;    
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(214,51,132,0.35);
}

/* ===============================
HERO SECTION
=============================== */

.hero {
    padding: 110px 0;
    background:
        linear-gradient(
            135deg,
            rgba(255,77,166,0.08),
            rgba(156,39,176,0.08)
        );
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===============================
LEFT CONTENT
=============================== */

.hero-tag {
    display: inline-block;
    background: rgba(255,77,166,0.12);
    color: #d63384;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1f1f1f;
}

.hero h2 span {
    background: linear-gradient(
        to right,
        #ff4da6,
        #9c27b0
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    max-width: 600px;
}

/* ===============================
HERO BUTTONS
=============================== */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wra     center;
}

.primary-btn {
    background: linear-gradient(
        135deg,
        #ff4da6,
        #9c27b0
    );
    color: white;
    padding: 16px 34px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(214,51,132,0.25);
    transition: 0.4s;
}

.primary-btn:hover {
    transform: translateY(-4px);
}

.secondary-btn {
    background: white;
    border: 2px solid #f3d3e5;
    color: #333;
    padding: 16px 34px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.4s;
}

.secondary-btn:hover {
    border-color: #d63384;
    color: #d63384;
}

/* ===============================
RIGHT SIDE PREMIUM CARD
=============================== */

.hero-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.5);
}

.hero-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-card ul li {
    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* ===============================
FLOATING WHATSAPP BUTTON
=============================== */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
}

.whatsapp-float a {
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 15px 35px rgba(37,211,102,0.35);
    transition: 0.4s;
}

.whatsapp-float a:hover {
    transform: scale(1.08);
}

/* ===============================
GOOGLE BUSINESS FLOAT BUTTON
=============================== */

.business-float {
    position: fixed;
    right: 25px;
    bottom: 105px;
    z-index: 999;
}

.business-float a {
    width: 65px;
    height: 65px;
    background: linear-gradient(
        135deg,
        #4285F4,
        #34A853
    );
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: white;
    box-shadow: 0 15px 35px rgba(66,133,244,0.25);
    transition: 0.4s;
}

.business-float a:hover {
    transform: scale(1.08);
}

/* =====================================================
CSS PART 2
Services + Decorations + Gallery + Premium Cards
===================================================== */

/* ===============================
SECTION TITLE
=============================== */

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255,77,166,0.10);
    color: #d63384;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1f1f1f;
    margin-bottom: 18px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

/* ===============================
SERVICES SECTION
=============================== */

.services {
    padding: 110px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ===============================
SERVICE CARD
=============================== */

.service-card {
    background: white;
    border-radius: 28px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.8);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    background: linear-gradient(
        to right,
        #ff4da6,
        #9c27b0
    );
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,77,166,0.10);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #d63384;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

.service-card a {
    color: #d63384;
    font-weight: 700;
    font-size: 15px;
}

/* ===============================
DECORATIONS SECTION
=============================== */

.decorations {
    padding: 110px 0;
    background: linear-gradient(
        135deg,
        #fff7fc,
        #faf5ff
    );
}

.decor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* ===============================
DECOR CARD
=============================== */

.decor-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.decor-card:hover {
    transform: translateY(-10px);
}

.decor-img {
    height: 280px;
    overflow: hidden;
}

.decor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

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

.decor-content {
    padding: 30px;
}

.decor-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.decor-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.decor-price {
    display: inline-block;
    background: rgba(255,77,166,0.10);
    color: #d63384;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

/* ===============================
GALLERY SECTION
=============================== */

.gallery {
    padding: 110px 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===============================
GALLERY CARD
=============================== */

.gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 45px rgba(0,0,0,0.05);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.1)
    );
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: 0.4s;
}

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

.gallery-overlay h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

/* ===============================
PREMIUM FEATURE STRIP
=============================== */

.feature-strip {
    margin-top: 80px;
    background: linear-gradient(
        135deg,
        #ff4da6,
        #9c27b0
    );
    border-radius: 30px;
    padding: 50px;
    color: white;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    box-shadow: 0 30px 80px rgba(214,51,132,0.18);
}

.feature-box {
    text-align: center;
}

.feature-box h3 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
    opacity: 0.95;
}

/* ===============================
BOOKING CTA SECTION
=============================== */

.booking-cta {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #fff7fc,
        #ffffff
    );
}

.booking-box {
    background: white;
    padding: 60px;
    border-radius: 35px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0,0,0,0.05);
}

.booking-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.booking-box p {
    max-width: 700px;
    margin: auto;
    color: #666;
    margin-bottom: 35px;
    font-size: 16px;
}

.booking-box .primary-btn {
    display: inline-block;
}
/* =====================================================
CSS PART 3
Testimonials + Contact + Form + Google Maps
===================================================== */

/* ===============================
TESTIMONIALS SECTION
=============================== */

.testimonials {
    padding: 110px 0;
    background: linear-gradient(
        135deg,
        #fff8fc,
        #faf5ff
    );
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===============================
TESTIMONIAL CARD
=============================== */

.testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card::before {
    content: "★";
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 70px;
    color: rgba(255,77,166,0.08);
    font-weight: 800;
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f7b500;
}

.testimonial-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.client-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.client-info span {
    font-size: 14px;
    color: #777;
}

/* ===============================
CONTACT SECTION
=============================== */

.contact {
    padding: 110px 0;
    background: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ===============================
LEFT CONTACT INFO
=============================== */

.contact-info {
    background: linear-gradient(
        135deg,
        #ff4da6,
        #9c27b0
    );
    color: white;
    padding: 50px;
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(214,51,132,0.18);
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.info-box {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.info-icon {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.info-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.95;
}

/* ===============================
CONTACT FORM
=============================== */

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 35px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #eee;
    border-radius: 16px;
    font-size: 15px;
    background: #fafafa;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #d63384;
    background: white;
    box-shadow: 0 0 0 4px rgba(214,51,132,0.08);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(
        135deg,
        #ff4da6,
        #9c27b0
    );
    color: white;
    padding: 18px;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(214,51,132,0.18);
    transition: 0.4s;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

/* ===============================
WHATSAPP BOOKING BOX
=============================== */

.whatsapp-booking {
    margin-top: 30px;
    background: #f8fff9;
    border: 1px solid #d9f7df;
    border-radius: 24px;
    padding: 30px;
}

.whatsapp-booking h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.whatsapp-booking p {
    color: #666;
    margin-bottom: 20px;
    font-size: 15px;
}

.whatsapp-booking a {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(37,211,102,0.18);
}

/* ===============================
GOOGLE MAP SECTION
=============================== */

.map-section {
    padding-top: 80px;
}

.map-box {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.05);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===============================
BUSINESS PROFILE BUTTON
=============================== */

.business-profile-btn {
    margin-top: 30px;
}

.business-profile-btn a {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #4285F4,
        #34A853
    );
    color: white;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(66,133,244,0.18);
}
/* =====================================================
CSS PART 4
Footer + Premium Effects + Animations + Responsive
===================================================== */

/* ===============================
FOOTER SECTION
=============================== */

.footer {
    margin-top: 110px;
    background: linear-gradient(
        135deg,
        #1b1028,
        #2c1247
    );
    color: white;
    padding: 90px 0 30px;
    position: relative;
    overflow: hidden;
}



.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* ===============================
FOOTER BRAND
=============================== */

.footer-brand h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(
        to right,
        #ff4da6,
        #ffffff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: 0.4s;
}

.footer-social a:hover {
    background: #ff4da6;
    transform: translateY(-4px);
}

/* ===============================
FOOTER LINKS
=============================== */

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.75);
    transition: 0.3s;
    font-size: 15px;
}

.footer-links ul li a:hover {
    color: #ff4da6;
    padding-left: 6px;
}

/* ===============================
FOOTER CONTACT
=============================== */

.footer-contact h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-contact p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
}

/* ===============================
FOOTER BOTTOM
=============================== */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

/* ===============================
PREMIUM HOVER EFFECTS
=============================== */

.card-hover {
    transition: 0.4s;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.08);
}

/* ===============================
IMAGE GLOW EFFECT
=============================== */

.glow-img {
    position: relative;
    z-index: 1;
}

.glow-img::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    background: linear-gradient(
        135deg,
        rgba(255,77,166,0.18),
        rgba(156,39,176,0.18)
    );
    border-radius: 30px;
    top: 20px;
    left: 20px;
    z-index: -1;
    filter: blur(30px);
}

/* ===============================
FADE UP ANIMATION
=============================== */

.fade-up {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===============================
FLOATING ANIMATION
=============================== */

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

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===============================
PULSE EFFECT
=============================== */

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255,77,166,0.35);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255,77,166,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,77,166,0);
    }
}

/* ===============================
TABLET RESPONSIVE
=============================== */

@media (max-width: 992px) {

    .hero-wrapper,
    .contact-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .decor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h2 {
        font-size: 48px;
    }

    .section-title h2 {
        font-size: 38px;
    }
}

/* ===============================
MOBILE RESPONSIVE
=============================== */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h2 {
        font-size: 36px;
    }

    .services-grid,
    .decor-grid,
    .gallery-grid,
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 35px;
    }

    .booking-box {
        padding: 35px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .footer {
        padding-top: 70px;
    }
}

/* ===============================
SMALL MOBILE
=============================== */

@media (max-width: 480px) {

    .hero h2 {
        font-size: 30px;
    }

    .primary-btn,
    .secondary-btn,
    .book-btn {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .whatsapp-float,
    .business-float {
        right: 15px;
    }

    .whatsapp-float a,
    .business-float a {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}
/* =====================================================
CSS PART 5
Extra Luxury UI + Final Premium Polish
===================================================== */

/* ===============================
GLASSMORPHISM PREMIUM BOX
=============================== */

.glass-box {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    padding: 40px;
}

/* ===============================
PREMIUM BADGE
=============================== */

.premium-badge {
    display: inline-block;
    background: linear-gradient(
        135deg,
        #ffd700,
        #ffb700
    );
    color: #1f1f1f;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 15px 30px rgba(255,183,0,0.18);
}

/* ===============================
LUXURY DIVIDER
=============================== */

.luxury-divider {
    width: 120px;
    height: 5px;
    margin: 20px auto;
    border-radius: 50px;
    background: linear-gradient(
        to right,
        #ff4da6,
        #9c27b0,
        #ffd700
    );
}

/* ===============================
PRICING SECTION
=============================== */

.pricing {
    padding: 110px 0;
    background: linear-gradient(
        135deg,
        #fff7fc,
        #faf7ff
    );
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.price-card {
    background: white;
    border-radius: 32px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.4s;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    border: 2px solid #d63384;
    transform: scale(1.03);
}

.price-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: 18px;
    right: -35px;
    background: #d63384;
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.price-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 800;
}

.price-tag {
    font-size: 46px;
    font-weight: 800;
    color: #d63384;
    margin-bottom: 20px;
}

.price-tag span {
    font-size: 16px;
    color: #777;
    font-weight: 500;
}

.price-card ul {
    margin: 30px 0;
}

.price-card ul li {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.price-card .primary-btn {
    display: inline-block;
}

/* ===============================
FAQ SECTION
=============================== */

.faq {
    padding: 110px 0;
    background: #ffffff;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: white;
    border-radius: 24px;
    padding: 28px 30px;
    margin-bottom: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    border: 1px solid #f6f6f6;
}

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1f1f1f;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* ===============================
NEWSLETTER SECTION
=============================== */

.newsletter {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #ff4da6,
        #9c27b0
    );
    color: white;
}

.newsletter-box {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.newsletter-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.newsletter-box p {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    width: 400px;
    max-width: 100%;
    padding: 18px 22px;
    border: none;
    border-radius: 14px;
    outline: none;
    font-size: 15px;
}

.newsletter-form button {
    padding: 18px 30px;
    border: none;
    border-radius: 14px;
    background: white;
    color: #d63384;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
}

/* ===============================
CLIENT LOGOS STRIP
=============================== */

.client-strip {
    padding: 80px 0;
    background: #ffffff;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    opacity: 0.75;
}

.client-logo {
    background: #fafafa;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    font-weight: 700;
    color: #777;
    transition: 0.3s;
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* ===============================
FINAL BUTTON SHINE EFFECT
=============================== */

.shine-btn {
    position: relative;
    overflow: hidden;
}

.shine-btn::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    top: 0;
    left: -100%;
    transform: skewX(-25deg);
    transition: 0.8s;
}

.shine-btn:hover::before {
    left: 130%;
}

/* ===============================
ULTIMATE RESPONSIVE FINAL
=============================== */

@media (max-width: 992px) {

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-box h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {

    .newsletter-box h2 {
        font-size: 30px;
    }

    .price-tag {
        font-size: 38px;
    }

    .faq-item h4 {
        font-size: 18px;
    }

    .client-logos {
        grid-template-columns: 1fr;
    }
}

/* ===============================
LOGO & BRANDING (SIDE-BY-SIDE)
=============================== */

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between logo and text */
}

.logo-img {
    height: 60px; /* Adjust height to match your logo size */
    width: auto;
    border-radius: 50%; /* Keeps it circular like your screenshot */
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-text h1 {
    font-size: 26px; /* Slightly smaller to fit in the row */
    font-weight: 800;
    line-height: 1;
    margin: 0;
    background: linear-gradient(to right, #ff4da6, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.brand-text p {
    font-size: 13px;
    color: #777;
    margin-top: 2px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: capitalize;
}
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(to right, #ff4da6, #9c27b0);
    z-index: 9999;
    transition: width 0.1s ease;
}
html {
    scroll-behavior: smooth;
}

/* Enable scroll snapping */
body {
    scroll-snap-type: y mandatory;
}

/* Every major section snaps */
section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* KEEP FLOATING BUTTONS ALWAYS ON TOP */

.whatsapp-float,
.business-float {
    position: fixed;
    z-index: 99999;
}

/* THREE.JS canvas should stay behind */

canvas {
    pointer-events: none;
    z-index: -1 !important;
}

/* Cursor glow should never block clicks */

.cursor-glow {
    pointer-events: none;
    z-index: 1;
}

/* Back to top button below floating buttons */

.back-to-top {
    z-index: 999;
}
.whatsapp-float,
.business-float {
    position: fixed !important;
    z-index: 999999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.whatsapp-float {
    right: 25px;
    bottom: 25px;
}

.business-float {
    right: 25px;
    bottom: 105px;
}

body {
    margin: 0;
    overflow-x: clip;
}

html {
    width: 100%;
}

canvas {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -1 !important;
    pointer-events: none !important;
    display: block;
}



/* =========================
NEW FOOTER CSS (SAFE)
========================= */

.new-footer {
    background: #1f102f;
    color: white;
    padding: 70px 0 30px;
    margin-top: 80px;
}

.new-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.new-footer-brand h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ff4da6;
}

.new-footer-brand p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.new-footer-links h3,
.new-footer-contact h3 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 700;
}

.new-footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.new-footer-links ul li {
    margin-bottom: 10px;
}

.new-footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.3s;
}

.new-footer-links a:hover {
    color: #ff4da6;
}

.new-footer-contact p {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.8);
    word-break: break-word;
}

.new-footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.new-footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .new-footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .new-footer {
        padding: 50px 20px 25px;
        overflow-x: hidden;
    }

    .new-footer-brand h2 {
        font-size: 24px;
    }

    .new-footer-links h3,
    .new-footer-contact h3 {
        font-size: 18px;
    }

    .new-footer p,
    .new-footer a {
        font-size: 14px;
    }
}

/* =========================
CLICKABLE SERVICE IMAGE
========================= */

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    cursor: pointer;
    transition: 0.4s ease;
}

/* Hover Effect */
.service-card img:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================================
PREMIUM ANIMATIONS EFFECTS
(ADD ONLY — DO NOT REMOVE ANYTHING)
========================================= */

/* =========================
FADE UP ANIMATION
========================= */

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
FLOATING IMAGE EFFECT
========================= */

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

@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-18px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* =========================
GLOW IMAGE EFFECT
========================= */

.glow-img img {
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(255, 77, 166, 0.18);
    transition: 0.5s;
}

.glow-img img:hover {
    transform: scale(1.03);
    box-shadow: 0 35px 80px rgba(156, 39, 176, 0.25);
}

/* =========================
SERVICE CARD HOVER EFFECT
========================= */

.service-card {
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

/* =========================
SERVICE IMAGE ZOOM EFFECT
========================= */

.service-card img {
    width: 100%;
    border-radius: 20px;
    transition: 0.5s;
    cursor: pointer;
}

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

/* =========================
GALLERY IMAGE PREMIUM EFFECT
========================= */

.gallery-card {
    overflow: hidden;
    border-radius: 24px;
}

.gallery-card img {
    transition: 0.6s;
}

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

/* =========================
TESTIMONIAL HOVER EFFECT
========================= */

.testimonial-card {
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

/* =========================
BUTTON SHINE EFFECT
========================= */

.shine-btn {
    position: relative;
    overflow: hidden;
}

.shine-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.35);
    transform: skewX(-25deg);
}

.shine-btn:hover::before {
    animation: shineMove 1s ease;
}

@keyframes shineMove {
    100% {
        left: 140%;
    }
}

/* =========================
NAV LINK SMOOTH HOVER
========================= */

.nav-links a {
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #d63384;
    transform: translateY(-2px);
}

/* =========================
WHATSAPP PULSE EFFECT
========================= */

.whatsapp-float a {
    animation: pulseWhatsApp 2.5s infinite;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.45);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* =========================
FOOTER LINK HOVER EFFECT
========================= */

.new-footer a {
    transition: 0.3s;
}

.new-footer a:hover {
    color: #ff4da6;
    padding-left: 5px;
}

/* =========================
SMOOTH SECTION ENTRY
========================= */

section {
    animation: sectionFade 1s ease;
}

@keyframes sectionFade {
    from {
        opacity: 0.95;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
PREMIUM WHATSAPP FORM
========================= */

.wa-subtext {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.premium-wa-form .form-group {
    margin-bottom: 18px;
}

.premium-wa-form input,
.premium-wa-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #eee;
    border-radius: 16px;
    background: #fafafa;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.premium-wa-form input:focus,
.premium-wa-form textarea:focus {
    border-color: #25D366;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37,211,102,0.08);
}

.wa-book-btn {
    width: 100%;
    border: none;
    padding: 18px;
    border-radius: 16px;
    background: #25D366;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 15px 35px rgba(37,211,102,0.18);
}

.wa-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(37,211,102,0.25);
}

/* Force the gallery to be the boss of its own width */
.slider-gallery {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 0 !important; /* Force no gap */
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-slide {
    /* Use 'flex: 0 0 100%' instead of min-width for better stability */
    flex: 0 0 100%; 
    width: 100%;
    height: 220px;
    box-sizing: border-box;
}

.slider-slide img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    /* Remove any default margins that might be added by browser */
    display: block; 
}


/* swipe hint text */
.swipe-text {
  text-align: center;
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}

/* dots */
.slider-dots {
  text-align: center;
  margin-top: 8px;
}

.slider-dots span {
  height: 8px;
  width: 8px;
  background: #bbb;
  display: inline-block;
  border-radius: 50%;
  margin: 3px;
}

.slider-dots .active {
  background: #333;
}

.video-center {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;
  margin-top: 20px;
}

.video-center video {
  width: 600px;
  max-width: 90%;
  border-radius: 10px;
}
/* Add this in style.css */

.instagram-float {
    position: fixed;
    bottom: 170px; /* above WhatsApp + Business button */
    right: 20px;
    z-index: 9999;
}

.instagram-float a {
    width: 60px;
    height: 57px;
    background: #E1306C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.25);
    transition: 0.3s ease;
}

.instagram-float a:hover {
    background: #C13584;
    transform: scale(1.1);
}