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

:root {
    --primary: #00adb5;
    --primary-dark: #008a91;
    --secondary: #1a1a1a;
    --accent: #ffd700;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 173, 181, 0.3);
}

.section-padding {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #1e3a8a 0%, #31cdcf 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--primary);
    margin-right: 8px;
}

.social-links a {
    margin-left: 15px;
    font-size: 1rem;
}

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

/* Navbar */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

/* header is sticky by default for all devices (line 155) */

header.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    height: 95px;
    transition: var(--transition);
}

header.scrolled .navbar {
    padding: 10px 0;
    height: 75px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    transition: height 0.3s ease;
    display: block;
}

header.scrolled .logo img {
    height: 70px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links li {
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Contact Form Enhancements */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--secondary);
    font-size: 1.8rem;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #fdfdfd;
    transition: border-color 0.3s;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 250px;
    border-radius: 5px;
    padding: 15px 0;
    display: none;
    z-index: 100;
    border-top: 3px solid var(--primary);
}

.nav-links li.has-dropdown:hover .dropdown {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.dropdown li {
    margin: 0 !important;
    width: 100%;
}

.dropdown a {
    display: block;
    padding: 12px 25px !important;
    font-size: 0.9rem !important;
    color: var(--text-main);
    border-bottom: 1px solid #f0f0f0;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 30px !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border-top: none;
        padding: 0;
        background: rgba(0,0,0,0.03);
    }
    
    .nav-links li.has-dropdown.active .dropdown {
        display: block;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #008a91 0%, #004d4f 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

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

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--secondary);
}

.hero-slider {
    height: 100%;
}

.slide {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-content span {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns .btn {
    margin-right: 15px;
}

/* Pillars Section */
/* .pillars was unused */

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

.pillar-card {
    background: var(--bg-white);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary);
}

.pillar-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.pillar-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.pillar-card p {
    color: var(--text-muted);
}

/* About Us Section */
.bg-light {
    background: var(--bg-light);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--primary);
    border-left: 5px solid var(--primary);
    z-index: -1;
}

.about-text {
    flex: 1;
}

.check-list {
    margin: 30px 0;
}

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

.check-list i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.link-btn {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.link-btn i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.link-btn:hover i {
    transform: translateX(5px);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .top-bar {
        font-size: 0.75rem;
        padding: 8px 0;
    }

    .top-bar .container {
        flex-direction: row;
        justify-content: center;
    }

    .contact-info {
        flex-direction: row;
        gap: 15px;
    }

    .top-bar .social-links {
        display: none;
    }

    .navbar {
        height: 85px;
        padding: 0 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: white;
        width: 100%;
    }

    .logo {
        margin: 0;
        text-align: left;
        width: auto;
    }

    .logo img {
        height: 70px; /* Made bigger for mobile */
    }

    .menu-toggle {
        display: flex;
        background: none;
        color: var(--secondary);
        padding: 0;
        width: auto;
        font-size: 1.5rem;
    }

    .menu-toggle span {
        display: none; /* Hide 'MENU' text for cleaner look */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        transform: translateX(100%);
        width: 280px;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        padding: 80px 30px;
        transition: transform 0.3s ease-in-out;
        z-index: 2000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        margin-top: 0;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Add overlay when menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        display: none;
        z-index: 1999;
    }

    .menu-overlay.active {
        display: block;
    }

    .nav-links li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links a {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
        text-align: left;
    }

    .nav-links .btn {
        margin-top: 20px;
        text-align: center;
        background: var(--primary);
        color: white;
        width: 100%;
        border-radius: 5px;
        padding: 15px;
    }

    .close-menu {
        text-align: right;
        font-size: 1.8rem;
        color: var(--secondary);
        cursor: pointer;
        padding-bottom: 20px;
        margin-top: -30px;
    }

    /* Mobile Dropdown Fixes */
    .dropdown {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 20px;
        padding-top: 0;
        padding-bottom: 0;
        min-width: 100%;
        border-top: none;
        border-left: 2px solid var(--primary);
    }

    .nav-links li.has-dropdown:hover .dropdown {
        /* Disable hover open on mobile, use click */
        display: none; 
    }

    .has-dropdown.active .dropdown {
        display: block;
        animation: none;
    }

    .dropdown a {
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid #f9f9f9;
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns .btn {
        margin-right: 0;
        width: 80%;
    }

    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .pillars-grid, .services-grid, .sectors-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

/* Sectors Grid */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.sector-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.sector-item:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.sector-item i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.sector-item:hover i {
    color: white;
}

.sector-item h4 {
    color: white;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input {
    flex: 1;
}

input, textarea {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

input:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.1);
}

/* Page Header */
.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .page-header h1 { font-size: 2.2rem; }
    .page-header p { font-size: 1rem; }
}

.sector-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 10px;
}

.sector-item:hover p {
    color: white;
}

.contact-info-boxes .pillar-card {
    padding: 30px;
    background: var(--bg-white);
}

/* Product Grid & Cards (Centralized) */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 173, 181, 0.15);
    border-color: rgba(0, 173, 181, 0.4);
}

.product-img-box {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #ffffff;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-icon-overlay {
    position: absolute;
    bottom: -20px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 173, 181, 0.4);
    border: 3px solid #fff;
    z-index: 2;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon-overlay {
    transform: translateY(-5px);
}

.product-content {
    padding: 35px 25px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.product-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.category-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    width: 100%;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 8px;
    text-align: left;
}

.product-specs i {
    color: var(--primary);
    font-size: 0.8rem;
}

.product-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.product-btn {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    background: rgba(0, 173, 181, 0.08);
    border-radius: 6px;
    width: 100%;
    transition: all 0.3s ease;
}

.product-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-btn {
    color: #ffffff;
    background: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 173, 181, 0.3);
}

.product-card:hover .product-btn i {
    transform: translateX(5px);
}

/* Category Landing Cards (Products Page) */
.category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 173, 181, 0.15);
    border-color: var(--primary);
}

.category-img {
    height: 250px;
    overflow: hidden;
    background: #fdfdfd;
}

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

.category-card:hover .category-img img {
    transform: scale(1.12);
}

.category-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.category-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Redundant .contact-grid removed (merged above) */

.contact-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-boxes .pillar-card {
    margin-bottom: 0 !important;
    height: 100%;
}

.business-hours-box {
    grid-column: span 2;
    margin-top: 10px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.business-hours-box h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .contact-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-boxes {
        grid-template-columns: 1fr;
    }
    .business-hours-box {
        grid-column: span 1; /* Prevent horizontal stretching */
    }
}

@media (max-width: 600px) {
    .contact-info-boxes {
        grid-template-columns: 1fr; /* Stack info boxes on small mobile */
    }
    .form-row {
        flex-direction: column; /* Stack input fields (Name/Email) vertically */
        gap: 15px;
    }
    .business-hours-box {
        grid-column: span 1; /* Reset span completely for small phones */
    }
}



/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary);
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0fdfd;
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--primary);
    color: white;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .faq-container {
        margin-top: 30px;
    }
}

/* Map Section Styles */
.map-section {
    padding-top: 60px;
    background: #fff;
}

.map-container {
    height: 450px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

.map-section iframe {
    width: 100% !important;
    height: 100% !important;
    filter: grayscale(40%);
    transition: all 0.6s ease;
    border: none;
}

.map-section iframe:hover {
    filter: grayscale(0);
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
}

/* Floating Action Buttons */
.floating-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.floating-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: white;
    opacity: 0;
    transition: all 0.3s ease;
}

.floating-btn:hover::after {
    opacity: 0.2;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

.wa-btn {
    background: #25D366;
}

@media (max-width: 600px) {
    .floating-container {
        bottom: 80px; /* Increased to avoid mobile browser address bars */
        right: 15px;
        gap: 12px;
        z-index: 99999;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
