/**
 * Homestay in Pondicherry V1 - Main Stylesheet
 * French-Colonial Coastal Luxury Design System
 */

:root {
    --primary: #162a45;          /* Deep French Navy */
    --primary-light: #223c5e;
    --secondary: #0e7688;        /* Coastal Pondicherry Teal */
    --secondary-light: #e0f2f4;
    --accent: #d97736;           /* French Ochre / Terracotta */
    --accent-light: #fff3eb;
    --bg-light: #fbf9f5;         /* Warm French Linen */
    --bg-white: #ffffff;
    --text-dark: #0f172a;        /* Slate Dark */
    --text-muted: #64748b;       /* Slate Medium */
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 25px -5px rgba(22, 42, 69, 0.07), 0 8px 10px -6px rgba(22, 42, 69, 0.04);
    --card-hover-shadow: 0 20px 35px -10px rgba(22, 42, 69, 0.12), 0 10px 15px -5px rgba(22, 42, 69, 0.06);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .font-serif {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--primary);
}

/* Navbar */
.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-right: 1.5rem;
}
.brand-logo-img {
    height: 48px;
    max-height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.brand-logo-img:hover {
    opacity: 0.92;
    transform: scale(1.01);
}
.footer-logo-img {
    height: 44px;
    max-height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: opacity 0.2s ease;
}
.footer-logo-img:hover {
    opacity: 0.9;
}
@media (max-width: 576px) {
    .brand-logo-img {
        height: 38px;
        max-height: 38px;
    }
    .footer-logo-img {
        height: 38px;
        max-height: 38px;
    }
}
.brand-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}
.brand-subtitle {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    font-weight: 600;
}
.main-navbar {
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}
.nav-link {
    font-weight: 600;
    color: var(--primary) !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.95rem;
}
.nav-link:hover, .nav-link.active {
    color: var(--secondary) !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.4rem;
    font-weight: 600;
    transition: all 0.25s ease;
}
.btn-primary-custom:hover {
    background-color: var(--primary-light);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 42, 69, 0.25);
}
.btn-secondary-custom {
    background-color: var(--secondary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.4rem;
    font-weight: 600;
}
.btn-secondary-custom:hover {
    background-color: #0b6070;
    color: #fff;
}
.btn-whatsapp {
    background-color: #25d366;
    color: #fff !important;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.btn-whatsapp:hover {
    background-color: #1ebc59;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Hero Section with Location Showcase Carousel */
.hero-wrapper {
    position: relative;
    background-color: #0d1b2a;
    padding: 85px 0 145px;
    color: #fff;
    border-radius: 0 0 36px 36px;
    overflow: hidden;
    min-height: 520px;
}
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.hero-slide-bg {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-item.active .hero-slide-bg {
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.82) 0%, rgba(13, 27, 42, 0.62) 45%, rgba(13, 27, 42, 0.92) 100%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 3;
}
.hero-location-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    font-size: 0.86rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: opacity 0.2s ease;
}
.hero-location-live-badge .badge-prefix {
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 700;
}
.hero-location-live-badge .badge-separator {
    color: rgba(255, 255, 255, 0.3);
}
.pulse-dot {
    width: 9px;
    height: 9px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: heroPulse 2s infinite;
    flex-shrink: 0;
}
@keyframes heroPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}
.hero-carousel-arrow {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 27, 42, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    margin: 0 16px;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.25s ease;
    opacity: 0.75;
}
.hero-carousel-arrow:hover {
    background: rgba(13, 27, 42, 0.88);
    opacity: 1;
    border-color: #f59e0b;
    transform: translateY(-50%) scale(1.08);
}
.hero-carousel-arrow .carousel-control-prev-icon,
.hero-carousel-arrow .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}
.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #f1f5f9;
    max-width: 680px;
    margin: 0 auto 2rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Hero Location Interactive Strip */
.hero-locations-strip {
    max-width: 980px;
    margin: 20px auto 0;
    padding: 10px 14px;
    background: rgba(13, 27, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.hero-locations-heading {
    margin-bottom: 8px;
}
.hero-location-chips {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 2px 0;
}
.hero-location-chips::-webkit-scrollbar {
    display: none;
}
.hero-location-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 5px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    flex-shrink: 0;
}
.hero-location-pill:hover,
.hero-location-pill.active {
    background: #ffffff;
    color: #0f1d31;
    border-color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}
.hero-loc-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}
.hero-loc-name {
    font-weight: 600;
    letter-spacing: -0.2px;
}
.hero-loc-count {
    background: rgba(255, 255, 255, 0.22);
    color: #f1f5f9;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 20px;
    transition: all 0.2s ease;
}
.hero-location-pill:hover .hero-loc-count,
.hero-location-pill.active .hero-loc-count {
    background: #f59e0b;
    color: #0f1d31;
    font-weight: 700;
}
.pulse-highlight {
    animation: selectPulse 1.5s ease-in-out;
    border-color: #f59e0b !important;
    box-shadow: 0 0 0 0.25rem rgba(245, 158, 11, 0.35) !important;
}
@keyframes selectPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Search Box Container */
.search-box-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.search-input-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.search-input-group .form-control, 
.search-input-group .form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.9rem;
    font-weight: 500;
    font-size: 0.95rem;
}
.search-input-group .form-control:focus, 
.search-input-group .form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(14, 118, 136, 0.15);
}

/* Property Cards */
.property-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow);
}
.property-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #e2e8f0;
}
.property-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-card:hover .property-img-wrap img {
    transform: scale(1.05);
}
.badge-featured {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.badge-category {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(22, 42, 69, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}
.property-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.property-card-location {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}
.property-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
    line-height: 1.3;
}
.property-card-title a {
    color: var(--primary);
}
.property-card-title a:hover {
    color: var(--secondary);
}
.property-meta-specs {
    display: flex;
    gap: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.property-meta-specs span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.property-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}
.price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Category & Location Badges */
.category-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: all 0.25s ease;
    display: block;
}
.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--card-hover-shadow);
}
.category-icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    background: var(--secondary-light);
    color: var(--secondary);
    font-size: 1.5rem;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rating Stars */
.star-rating {
    color: #f59e0b;
    font-size: 0.9rem;
}
.rating-pill {
    background-color: #fef3c7;
    color: #92400e;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Amenities Icons Grid */
.amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ==========================================================================
   Property Detail Mosaic Gallery & Fullscreen Lightbox
   ========================================================================== */
.property-gallery-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

/* 5-Photo Mosaic Grid */
.gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 230px 230px;
    gap: 8px;
    border-radius: 16px;
    overflow: hidden;
    height: 468px;
    background-color: #f1f5f9;
}

.gallery-mosaic-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #e2e8f0;
}

.gallery-hero {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-mosaic-item .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.gallery-mosaic-item:hover .gallery-img {
    transform: scale(1.03);
    filter: brightness(0.96);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

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

.gallery-zoom-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color, #1A365D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transform: translateY(8px);
    transition: transform 0.25s ease;
}

.gallery-mosaic-item:hover .gallery-zoom-icon {
    transform: translateY(0);
}

/* +X More overlay on 5th photo */
.gallery-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s ease;
}

.gallery-more-overlay:hover {
    background: rgba(15, 23, 42, 0.78);
}

.gallery-more-overlay .more-count {
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.1;
}

.gallery-more-overlay .more-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.92;
}

/* Floating "Show all photos" button */
.gallery-all-btn {
    bottom: 16px;
    right: 16px;
    z-index: 5;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.88rem;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.gallery-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: #f8fafc !important;
}

/* Mobile Gallery View */
.mobile-gallery-img {
    height: 270px;
    object-fit: cover;
    border-radius: 12px;
}

.mobile-photo-pill {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.mobile-thumb-strip {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.mobile-thumb-strip::-webkit-scrollbar {
    display: none;
}

.mobile-thumb-item {
    width: 68px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.65;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.mobile-thumb-item.active {
    opacity: 1;
    border-color: var(--secondary-color, #C5A880);
    transform: scale(1.03);
}

/* Fullscreen Lightbox Modal */
.gallery-lightbox-modal .modal-content {
    background: #080c14 !important;
}

.lightbox-main-stage {
    min-height: 58vh;
    max-height: calc(100vh - 190px);
    position: relative;
    overflow: hidden;
}

.lightbox-img {
    max-height: calc(100vh - 220px);
    max-width: 90vw;
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 18px;
}

.lightbox-next {
    right: 18px;
}

.lightbox-caption-bar {
    background: rgba(8, 12, 20, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-filmstrip-wrapper {
    background: rgba(8, 12, 20, 0.95);
    max-width: 100%;
}

.lightbox-filmstrip {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.lightbox-thumb-box {
    width: 74px;
    height: 52px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.45;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.lightbox-thumb-box:hover {
    opacity: 0.85;
}

.lightbox-thumb-box.active {
    opacity: 1;
    border-color: #D4AF37; /* Gold */
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    transform: scale(1.06);
}

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

/* Property Highlights Bar */
.property-highlights-bar {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #e2e8f0;
    }
}

/* Sticky Mobile Bottom Booking Bar */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid var(--border-color);
}
@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-wrapper {
        padding: 55px 0 95px;
        min-height: auto;
        border-radius: 0 0 24px 24px;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    .hero-location-live-badge {
        font-size: 0.76rem;
        padding: 5px 12px;
        max-width: 95%;
    }
    .hero-locations-strip {
        border-radius: 20px;
        padding: 8px 10px;
        margin: 16px -6px 0;
    }
    .hero-location-chips {
        justify-content: flex-start !important;
        padding-bottom: 4px;
    }
    .hero-location-pill {
        font-size: 0.78rem;
        padding: 4px 10px 4px 4px;
    }
    .search-box-card {
        margin-top: -40px;
        padding: 16px;
    }
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.2s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.08);
    color: #fff;
}
@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 75px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Footer */
.footer-section {
    background-color: #0b1726;
    color: #94a3b8;
    padding: 70px 0 25px;
    font-size: 0.95rem;
}
.footer-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #94a3b8;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    font-size: 0.85rem;
}
