/* =========================================
   1. Design System & Variables
   ========================================= */
:root {
    /* Colors */
    --primary-color: #092430;
    /* Deep Royal Teal */
    --secondary-color: #d4af37;
    /* Gold */
    --accent-color: #f0e68c;
    /* Light Gold */
    --text-color: #333;
    --text-light: #f4f4f4;
    --bg-color: #0b2d3c;
    --card-bg: #fff;
    --border-gold: linear-gradient(45deg, #d4af37, #f0e68c);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --section-padding: 60px 20px;
    --container-width: 1200px;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. Navigation
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(9, 36, 48, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Header Actions (Mobile Icons) */
.header-actions {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-left: auto;
    margin-right: 20px;
}

.header-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    /* Gold */
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-icon:hover {
    transform: scale(1.2);
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
    /* Premium Glow */
}

@media (min-width: 769px) {
    .header-actions {
        display: none;
    }
}

.logo-text {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list li a {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 4px 0;
    transition: 0.4s;
}

/* =========================================
   3. Hero Section
   ========================================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push content (buttons) to bottom */
    align-items: center;
    background-image: url('../assets/images/hero_banner.jpg?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 50px;
    /* Space for buttons */
    overflow: hidden;
    text-align: center;
}

/* Removed old hero-banner-container and hero-banner styles */

.hero-content {
    z-index: 1;
    color: var(--text-light);
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Content Buttons */
.cta-container {
    z-index: 2;
    margin-bottom: 20px;
}

.main-title {
    font-size: 3rem;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main-title .highlight {
    color: var(--secondary-color);
    font-family: var(--font-subheading);
    font-style: italic;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ddd;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Commercial Grade Buttons */
.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: auto;
    /* Push to bottom if flex container allows */
    padding-bottom: 20px;
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-call {
    background: linear-gradient(45deg, #d4af37, #f0e68c);
    color: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Animations */
.animate-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}

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

/* =========================================
   4. Trust Bar
   ========================================= */
.trust-bar {
    background-color: var(--primary-color);
    padding: 30px 20px;
    text-align: center;
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-title {
    font-size: 1.3rem;
    /* Reduced from 1.5rem */
    margin-bottom: 15px;
    font-family: var(--font-subheading);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.tamil-text {
    font-size: 1rem;
    /* Reduced from 1.2rem */
    display: block;
    margin-top: 5px;
    font-weight: 500;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.divider {
    color: rgba(255, 255, 255, 0.3);
}

/* =========================================
   5. Sections (About, Services)
   ========================================= */
/* =========================================
   5. Sections (About, Services)
   ========================================= */
.section {
    padding: 30px 20px;
    /* Reduced from 60px to remove gap */
}

.section-title {
    text-align: center;
    font-size: 1.5rem;
    /* Drastically reduced for one-liner */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        /* Increased size, fits "TRADITIONAL CRAFT" */
        letter-spacing: 0.5px;
        white-space: nowrap;
        /* Keep it one line */
        overflow: hidden;
        /* Prevent scrollbar if it barely overflows */
        text-overflow: ellipsis;
        /* Graceful fail */
    }
}

/* About */
.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-text p {
    margin-bottom: 15px;
    /* Reduced from 20px */
}

.proprietor {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
    font-style: italic;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    /* slightly smaller min-width for better fitting */
    gap: 20px;
    /* Increased from 15px for better spacing */
}

/* Video Showcase */
.video-showcase {
    margin-top: 20px;
    /* Reduced from 40px */
    width: 100%;
    display: flex;
    justify-content: center;
    background: #000;
    /* Cinematic background */
    padding: 20px 0;
    /* Cinematic spacing */
}

.video-wrapper {
    position: relative;
    width: 100%;
    /* Max width helps on desktop to not be too huge for a square video */
    max-width: 600px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: none;
    /* Removed shadow as requested */
    border: 2px solid var(--secondary-color);
    aspect-ratio: 1 / 1;
    /* Force square shape even if video fails */
    background: #000;
    /* Black background if video fails */
}

.square-video {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* Mobile specific override just in case */
@media (max-width: 768px) {
    .video-showcase {
        padding: 0;
        /* Force true viewport width regardless of parent container */
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: 0;
        max-width: none;
    }

    .video-wrapper {
        border-radius: 0;
        /* No radius for edge-to-edge look */
        border: none;
        border-top: 1px solid var(--secondary-color);
        border-bottom: 1px solid var(--secondary-color);
        max-width: 100%;
    }
}

.video-wrapper iframe,
.video-wrapper video,
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/hero_banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-icon {
    font-size: 2rem;
    /* Reduced from 3rem */
    color: var(--secondary-color);
    margin-bottom: 10px;
    /* Reduced from 20px */
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}


.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 80%);
    color: #fff;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

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

.overlay h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 12px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    min-width: 120px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.tamil-label {
    font-size: 0.75em;
    text-transform: none;
    font-weight: 600;
    color: #666;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.filter-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.2);
}

.filter-btn:hover:after {
    transform: scaleX(1);
}

.filter-btn.active {
    background: var(--gradient-gold);
    color: #000;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.filter-btn.active .tamil-label {
    color: #333;
}

/* Mobile Scroll */
@media (max-width: 768px) {
    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 10px 5px 20px 5px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        margin-bottom: 20px;
        scrollbar-width: none;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        min-width: auto;
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .tamil-label {
        font-size: 0.7em;
    }

    /* Force 3-column grid on mobile */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .overlay {
        opacity: 1;
        /* Always show title on mobile since no hover */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
        padding: 5px;
    }

    .overlay h4 {
        font-size: 0.65rem;
        font-weight: 500;
        line-height: 1.2;
    }
}

.gallery-grid {
    display: grid;
    /* Tighter grid for "accumulated" look */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    /* Cleaner look without shadow for tight grid */
    border: 1px solid var(--secondary-color);
    transition: transform 0.3s;
    background: #fff;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

/* Premium View More Button */
#loadMoreBtn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 20px;
}

#loadMoreBtn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
    z-index: -1;
}

#loadMoreBtn:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px) scale(1.02);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#loadMoreBtn:hover:before {
    width: 100%;
}

#loadMoreBtn .tamil-label {
    margin-left: 8px;
    font-size: 0.9em;
    opacity: 0.8;
    color: inherit;
    font-weight: 500;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    border-radius: 5px;
}

.lightbox-caption {
    color: #fff;
    margin-top: 15px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    padding: 20px;
    transition: color 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--secondary-color);
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on mobile for "small and accumulated" look */
        gap: 5px;
    }

    .overlay {
        display: none;
        /* Hide overlay on mobile grid to keep it clean */
    }

    .lightbox-img {
        max-height: 70vh;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 10px;
    }
}

.service-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-family: var(--font-subheading);
    color: #111;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .section {
        padding: 30px 5px;
        /* Minimal side padding to maximize content width */
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        /* Minimal gap */
        width: 100%;
    }

    .service-card {
        padding: 15px 5px;
        /* Minimal internal padding */
    }

    .icon-box {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .service-card h3 {
        font-size: 1.1rem;
        /* Bigger title */
        margin-bottom: 5px;
    }

    .service-card p {
        font-size: 0.95rem;
        /* Bigger body text */
        line-height: 1.3;
    }
}

.contact .section-title {
    color: var(--secondary-color);
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-info {
    text-align: center;
}

.info-item {
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.social-btn:hover {
    transform: scale(1.05);
}

footer {
    background-color: #05161d;
    color: #888;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================
   6. Mobile Responsiveness
   =========================================*/
/* Mobile Hero Image Hidden on Desktop */
.mobile-hero-banner {
    display: none;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--primary-color);
        padding: 20px 0;
        text-align: center;
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .hero {
        background-image: none !important;
        background-color: #0d1f26e8;
        height: auto !important;
        /* Let image define height */
        padding-top: 70px;
        /* Space for Navbar */
        display: block;
        padding-bottom: 0;
    }

    .mobile-hero-banner {
        display: block;
        width: 100%;
        height: auto;
        /* Maintains aspect ratio perfectly */
    }

    .trust-title {
        font-size: 1rem;
        /* Reduced from 1.2rem */
    }

    .tamil-text {
        font-size: 0.9rem;
        /* Smaller for mobile */
    }

    .trust-stats {
        font-size: 0.9rem;
        gap: 10px;
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    z-index: 9990;
    /* Below lightbox (10000) */
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: #fff;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.call-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

/* Tooltip */
.float-btn .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.float-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@media (max-width: 768px) {
    .floating-actions {
        display: none;
        /* Redundant on mobile due to header icons */
    }
}