:root {
    /* Colors */
    --white: #ffffff;
    --cream: #FFF8E7;
    --blue-glow: #4f7cff;
    --blue-glow-soft: rgba(79, 124, 255, 0.3);
    --gold: #D4AF37;
    --text-dark: #1a1a1a;
    --text-muted: #555555;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Animation */
    --ease-premium: cubic-bezier(0.85, 0, 0.15, 1);
}

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

body {
    background-color: var(--white);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

#smooth-wrapper {
    opacity: 0;
    visibility: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: var(--white);
    overflow: hidden;
}

.preloader-content {
    text-align: center;
    width: 400px;
    /* Increased width to accommodate one line */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo-img {
    width: 120px;
    /* Increased from 80px */
    height: 120px;
    margin-bottom: 20px;
}

.preloader-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preloader-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1px;
    white-space: nowrap;
    /* Force one line */
}

.preloader-bar-wrap {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: var(--blue-glow);
    box-shadow: 0 0 10px var(--blue-glow);
}

.preloader-percentage {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--blue-glow);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.glow-blue {
    color: var(--blue-glow);
    text-shadow: 0 0 15px var(--blue-glow-soft);
    animation: textPulse 3s infinite alternate;
}

@keyframes textPulse {
    from {
        text-shadow: 0 0 10px var(--blue-glow-soft);
    }

    to {
        text-shadow: 0 0 25px var(--blue-glow);
    }
}

.accent-blue {
    color: var(--blue-glow);
}

.sub-heading {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--blue-glow);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-scroll {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--white);
    z-index: 1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: background-color 0.5s var(--ease-premium), padding 0.5s var(--ease-premium), backdrop-filter 0.5s var(--ease-premium);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    width: 70px;
    /* Increased from 40px */
    height: 70px;
    object-fit: cover;
    background-color: #000;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.4rem;
    /* Reduced from 1.8rem */
    font-family: var(--font-heading);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    transition: color 0.5s var(--ease-premium);
    white-space: nowrap;
}

.navbar.scrolled .logo-text {
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.5s var(--ease-premium);
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--blue-glow);
    transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-toggle .bar {
    background: var(--text-dark);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s var(--ease-premium);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Buttons */
.btn-premium {
    padding: 14px 35px;
    background: var(--blue-glow);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px var(--blue-glow-soft);
    transition: background 0.4s var(--ease-premium), color 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
    display: inline-block;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--blue-glow);
}

.btn-glow {
    padding: 16px 40px;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transition: background 0.4s var(--ease-premium), color 0.4s var(--ease-premium), box-shadow 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
    display: inline-block;
}

.btn-glow:hover {
    background: var(--blue-glow);
    color: var(--white);
    box-shadow: 0 0 30px var(--blue-glow);
}

.btn-outline-white {
    padding: 16px 40px;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.4s var(--ease-premium), color 0.4s var(--ease-premium), transform 0.4s var(--ease-premium);
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    padding: 0;
    overflow: hidden;
    background: #000;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    transition: transform 6s linear;
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    justify-content: center;
}

.mobile-mandala {
    display: none;
}

.mandala-wrap {
    position: relative;
    width: 350px;
    height: 350px;
}

.mandala-art {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
    animation: rotateMandala 80s linear infinite;
    filter: drop-shadow(0 0 20px var(--blue-glow-soft));
}

@keyframes rotateMandala {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.mandala-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--blue-glow-soft) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.char {
    display: inline-block;
}

.hero-tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

/* About Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.collage {
    position: relative;
    height: 600px;
}

.img-box {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-1 {
    width: 320px;
    height: 450px;
    top: 0;
    left: 0;
    z-index: 2;
}

.box-2 {
    width: 280px;
    height: 380px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.box-3 {
    width: 220px;
    height: 280px;
    top: 50px;
    right: 50px;
    z-index: 3;
}

.main-heading {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--blue-glow);
    display: inline-block;
}

.stat-item span {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: block;
}

/* Services Section - Unfolding Cards */
.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 70px;
}

.service-card {
    position: relative;
    width: 320px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--cream);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.card-visual {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: transform 0.8s var(--ease-premium);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
}

.service-name {
    position: relative;
    z-index: 10;
    color: var(--white);
    font-size: 2.2rem;
}

.card-unfold {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    padding: 50px;
    display: flex;
    align-items: center;
    transition: bottom 0.6s var(--ease-premium);
}

.service-card:hover .card-unfold {
    bottom: 0;
}

.service-card:hover .card-visual {
    transform: scale(1.1) translateY(-20px);
}

.card-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue-glow);
    margin: 20px 0;
}

.card-features {
    list-style: none;
    margin-bottom: 30px;
}

.card-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.card-features li::before {

    font-family: 'boxicons';
    position: absolute;
    left: 0;
    color: var(--blue-glow);
}

/* Portfolio Filters */
.filter-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid var(--text-dark);
    background: transparent;
    color: var(--text-dark);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--blue-glow);
    color: var(--white);
    border-color: var(--blue-glow);
    box-shadow: 0 5px 15px var(--blue-glow-soft);
}

/* Portfolio Masonry */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-auto-rows: 150px;
    gap: 15px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.size-m {
    grid-row: span 2;
}

.size-l {
    grid-row: span 3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .item-info {
    opacity: 1;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
    color: var(--text-dark);
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid var(--text-dark);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--blue-glow);
    border-radius: 2px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* Premium Layered Scroll Transition */
.section-scroll {
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    text-align: center;
    position: relative;
    padding: 40px 30px;
}

.pricing-card.premium-card {
    border: 2px solid var(--blue-glow);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-glow);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-glow);
    margin-bottom: 15px;
}

.pricing-card ul {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.pricing-card ul li::before {
    content: '\eb7a';
    /* boxicons check */
    font-family: 'boxicons';
    position: absolute;
    left: 0;
    color: var(--blue-glow);
}

/* Testimonials */
.t-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.t-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--blue-glow);
}

.t-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.t-client {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.t-stars {
    color: var(--gold);
    margin-top: 10px;
}

.swiper-pagination {
    position: relative !important;
    margin-top: 20px;
}

.swiper-pagination-bullet-active {
    background: var(--blue-glow) !important;
}

/* Contact Form - Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    padding: 50px;
    border-radius: 30px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 18px 25px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.6);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: var(--blue-glow);
    background: var(--white);
    outline: none;
    box-shadow: 0 10px 30px var(--blue-glow-soft);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    padding-right: 20px;
}

.contact-methods {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-item i {
    font-size: 2rem;
    color: var(--blue-glow);
    background: var(--cream);
    padding: 15px;
    border-radius: 50%;
}

.method-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.method-item p {
    color: var(--text-muted);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: #0b0b0b;
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    z-index: 2;
    /* Ensures it sits properly below contact */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.f-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

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

.f-social a {
    color: var(--white);
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    text-decoration: none;
}

.f-social a:hover {
    background: var(--blue-glow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left.desktop-mandala {
        display: none;
    }

    .mobile-mandala {
        display: flex;
        justify-content: center;
        margin: 15px 0;
    }

    .mobile-mandala .mandala-wrap {
        width: 180px;
        height: 180px;
    }

    .hero-center {
        padding-left: 0;
        padding-right: 0;
        align-items: center;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section-scroll {
        min-height: auto;
        padding: 60px 0;
        display: block;
    }

    .hero {
        display: flex;
        /* keep hero as flex */
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .main-heading {
        font-size: 2.2rem;
    }

    .container {
        padding: 0 20px;
    }

    .collage {
        height: 450px;
        position: relative;
        display: block; /* Change from flex to block to allow absolute positioning */
        width: 100%;
        margin-bottom: 50px;
    }

    .img-box {
        position: absolute;
        width: 180px !important;
        height: 250px !important;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .box-1 {
        top: 0;
        left: 0;
        z-index: 2;
        width: 200px !important;
        height: 280px !important;
    }

    .box-2 {
        bottom: 0;
        right: 0;
        z-index: 1;
        width: 170px !important;
        height: 230px !important;
    }

    .box-3 {
        top: 40px;
        right: 20px;
        z-index: 3;
        width: 140px !important;
        height: 190px !important;
    }

    /* Simplify on mobile */
    .input-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 20px;
    }

    .btn-glow,
    .btn-outline-white {
        width: 100%;
        text-align: center;
        display: block;
        box-sizing: border-box;
    }

    .pricing-card.premium-card {
        transform: scale(1);
    }

    /* Prevent overflow on mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .method-item {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Custom Greeting Message */
.custom-greeting {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.greeting-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.greeting-card i {
    font-size: 5rem;
    color: #25d366;
    margin-bottom: 20px;
    display: block;
}

.greeting-card h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.greeting-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-grid {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--cream);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--blue-glow);
    transition: transform 0.4s ease;
}

.faq-answer {
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease-premium);
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Input Styles Fix */
input[type="date"] {
    font-family: var(--font-body);
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .nav-logo-img {
        width: 45px;
        /* Increased from 32px */
        height: 45px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-wrapper {
        gap: 8px;
    }
}

/* Map Styling */
.map-container {
    margin-top: 80px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s var(--ease-premium);
}

.map-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    filter: grayscale(0.2) contrast(1.1); /* Subtle cinematic look for map */
}