/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Brand Colors Extracted from Logo */
    --primary-color: #1e5a8c; /* Deep Corporate Blue */
    --secondary-color: #276191; /* Mid Brand Blue */
    --accent-color: #8cd9fa; /* Light Brand Blue / Cyan */
    --accent-hover: #6dbde0;
    
    --bg-white: #ffffff;
    --bg-light: #f4f8fb; /* Tinted light blue-grey for backgrounds */
    --bg-dark: #123554; /* Very dark version of brand blue */
    
    --text-main: #2d3748;
    --text-light: #64748b;
    --text-white: #ffffff;
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition: 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-white); }
.text-accent { color: var(--accent-color) !important; }
.text-white { color: var(--text-white) !important; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 1.5rem; }
.shadow { box-shadow: var(--shadow-lg); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--primary-color);
    line-height: 1.2;
}

.bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--text-white);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.center .section-subtitle {
    margin-bottom: 1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.btn-outline {
    background-color: transparent;
    border-color: var(--bg-white);
    color: var(--bg-white);
}

.btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.w-100 { width: 100%; }

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact a {
    margin-right: 1.5rem;
}

.top-contact i {
    color: var(--accent-color);
    margin-right: 0.3rem;
}

.top-social a {
    margin-left: 1rem;
    opacity: 0.8;
}

.top-social a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 75px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.nav-list a:hover, .nav-list a.active {
    color: var(--accent-color);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--accent-color);
    padding-left: 1.8rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: calc(100vh - 115px);
    display: flex;
    align-items: center;
    padding: 4rem 0 8rem 0; /* Extra bottom padding to safely accommodate the overlapping features section */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.6) 50%, rgba(15,23,42,0.2) 100%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    color: var(--bg-white);
    max-width: 600px;
}

.hero .badge {
    display: inline-block;
    background-color: rgba(30, 90, 140, 0.2);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent-color);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--bg-white);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Inner Pages Hero
   ========================================================================== */
.inner-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.inner-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.inner-hero p {
    font-size: 1.2rem;
    color: var(--bg-white);
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-form-wrapper {
    display: flex;
    justify-content: flex-end;
}

.hero-form-box {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    color: var(--text-main);
}

.hero-form-box h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hero-form-box p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-quick-form .form-control {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.hero-quick-form .btn {
    margin-top: 0.5rem;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
    background-color: var(--bg-white);
    padding: 4rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 3rem;
}

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

.feature-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.rounded-image {
    border-radius: 8px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    line-height: 1;
    color: var(--accent-color);
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.check-list {
    margin-top: 1.5rem;
}

.check-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.check-list i {
    color: var(--accent-color);
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .product-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0) 100%);
        align-items: flex-end;
        padding-bottom: 1.5rem;
    }
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==========================================================================
   Parallax / Why Choose Us Section
   ========================================================================== */
.parallax-section {
    position: relative;
    padding: 6rem 0;
    color: var(--text-white);
    text-align: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates the pure CSS parallax effect */
    z-index: -2;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 53, 84, 0.95) 0%, rgba(18, 53, 84, 0.7) 100%);
    z-index: -1;
}

.parallax-content {
    position: relative;
    z-index: 1;
}

.parallax-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.stat-number {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    border: 3px solid var(--accent-color);
}

.process-step h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(140, 217, 250, 0.3); /* Accent color highly transparent */
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.client-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(140, 217, 250, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.info-text p a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.info-text p a:hover {
    color: var(--primary-color);
}

/* Ensure white text if inside dark backgrounds */
.bg-dark .info-text p,
.bg-dark .info-text p a {
    color: #cbd5e1;
}

.bg-dark .info-text p a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    color: var(--text-main);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: var(--font-sans);
    transition: var(--transition);
    color: var(--text-main);
    background-color: var(--bg-white);
}

.form-control::placeholder {
    color: #94a3b8; /* Lighter gray for placeholders */
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #020617;
    color: #94a3b8;
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-height: 65px;
    width: auto;
    margin-bottom: 1.5rem;
    background-color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    object-fit: contain;
}

.footer-about p {
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    color: var(--bg-white);
}

.footer-social a:hover {
    background-color: var(--accent-color);
}

.footer-links h4 {
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

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

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .features-grid, .products-grid, .parallax-stats-grid, .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container, .contact-container, .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-form-wrapper {
        justify-content: flex-start;
        margin-top: 2rem;
    }
    
    .hero-form-box {
        max-width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .experience-badge {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .logo img {
        height: 45px;
    }

    .top-bar { display: none; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease;
    }
    
    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        text-align: center;
        margin-top: 1rem;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 0.5rem 0;
        color: var(--text-light);
    }
    
    .dropdown-menu li a:hover {
        background: transparent;
        padding-left: 0;
        color: var(--accent-color);
    }
    
    .nav-cta { display: none; }
    .mobile-toggle { display: block; }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .features {
        margin-top: 0;
        padding-top: 2rem;
    }
    
    .features-grid, .products-grid, .form-row, .footer-container, .parallax-stats-grid, .process-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* ==========================================================================
   Floating Action Buttons
   ========================================================================== */
.floating-action-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.floating-whatsapp {
    background-color: #25d366;
    animation: pulse-wa 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
}

.floating-call {
    background-color: var(--primary-color);
}

.floating-call:hover {
    background-color: var(--secondary-color);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .floating-action-menu {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
