/* 
    Design System for Riyadh PlumbTech
    Colors: 
    - Primary: #0066FF (Vibrant Blue)
    - Secondary: #003366 (Deep Navy)
    - Accent: #FFD700 (Gold) or #E0E0E0 (Silver)
    - Surface: #FFFFFF
    - Dark Mode Ready: #121212
*/

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

:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --secondary: #0b1120;
    --accent: #38bdf8;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

h1,
h2,
h3,
h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Legendary Navbar */
nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1300px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    padding: 12px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

nav.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--secondary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 5px;
}

.logo:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(5deg) translateY(-3px);
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #00d2ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4);
}

/* Shine Effect */
.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

.logo:hover::before {
    left: 150%;
    transition: all 0.8s ease;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

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

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

.nav-cta {
    background: transparent;
    color: var(--primary) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.nav-cta:hover {
    color: var(--primary-dark) !important;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center Content */
    padding: 0 5%;
    background-size: cover;
    background-position: center;
}

/* Dark Overlay for Background Images */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    position: relative;
    /* Above Overlay */
    z-index: 2;
    flex: 1;
    max-width: 800px;
    /* Wider for centered text */
    text-align: center;
    transform: translateY(30px);
    transition: all 1s ease 0.3s;
    opacity: 0;
    color: white;
}

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

.slide-content h1 {
    color: white !important;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.3rem;
}

.hero-action-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-whatsapp-hero {
    background: #25d366;
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-call-hero {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    width: 35px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-action-btns {
        justify-content: center;
    }
}

/* Core Buttons */
.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(0, 102, 255, 0.4);
}

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

0%,
100% {
    transform: translateY(0);
}

50% {
    transform: translateY(-20px);
}
}

/* Footer Styles */
footer {
    width: 100%;
    background: var(--primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 5% 40px;
}

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

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: white;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* Sections */
section {
    width: 100%;
    padding: 100px 5%;
}

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

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.service-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.service-card-body {
    padding: 25px;
}

.service-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

/* Full Google Verified Reviews */
.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    background: #f8fafc;
    padding: 30px;
    border-radius: 24px;
    flex-wrap: wrap;
}

.google-score {
    text-align: center;
}

.google-score h1 {
    font-size: 3.5rem;
    color: #1f2937;
    margin-bottom: 5px;
}

.rating-bars {
    flex: 1;
    max-width: 300px;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bar-line {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #fbbc05;
}

.google-review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.2s ease;
}

.google-review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.google-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.google-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

.local-guide-badge {
    color: #fbbc05;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.verified-check {
    color: #1a73e8;
    font-size: 0.85rem;
}

.review-stars {
    color: #fbbc05;
    margin-top: 10px;
    font-size: 0.9rem;
}

.google-review-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
    margin-top: 10px;
}

.google-logo-icon {
    width: 20px;
    height: 20px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-muted);
}

/* Certifications Section */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cert-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

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

.cert-card h4 {
    color: var(--secondary);
    font-size: 1.1rem;
}

/* Google Floating Badge */
.google-floating-badge {
    display: none !important;
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-decoration: none;
}

.google-floating-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.google-floating-badge img {
    height: 20px;
}

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

.badge-text span:first-child {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
}

.badge-text span:last-child {
    font-size: 0.75rem;
    color: #fbbc05;
    font-weight: 600;
}

@media (max-width: 768px) {
    .google-floating-badge {
        bottom: 110px;
        /* Above floating contact buttons */
        left: 20px;
        padding: 10px 15px;
    }
}

/* About Page Legendary Styles */
.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
}

.services-hero {
    height: 60vh;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/slider1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
}

.services-hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-hero {
    height: 60vh;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('C:/Users/Abu Sufyan/.gemini/antigravity/brain/20932369-4c88-4416-9ea2-db07685a751f/hero_emergency_1778012827480.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
}

.contact-hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.article-container {
    max-width: 1000px;
    margin: -100px auto 100px;
    background: white;
    padding: 80px 10%;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
}

.article-body h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin: 60px 0 30px;
    position: relative;
    padding-bottom: 15px;
}

.article-body h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.article-body p {
    margin-bottom: 25px;
}

.quote-block {
    background: #f8fafc;
    border-left: 6px solid var(--primary);
    padding: 40px;
    margin: 50px 0;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--secondary);
    border-radius: 0 20px 20px 0;
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    color: white;
    padding: 80px 5%;
    margin: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-box {
    padding: 20px;
}

.stat-box i {
    font-size: 3rem;
    color: #93c5fd;
    margin-bottom: 20px;
}

.stat-box h3 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-box p {
    font-size: 1.1rem;
    color: #e0f2fe;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.team-card:hover {
    transform: translateY(-10px);
}

.team-card-img {
    height: 350px;
    background: #e2e8f0;
    overflow: hidden;
}

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

.team-card-body {
    padding: 30px;
    text-align: center;
}

.team-card-body h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-card-body span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Floating Buttons */
.floating-btns {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row-reverse;
    /* WhatsApp on right, Call on left */
    z-index: 1000;
    pointer-events: none;
}

.float-btn {
    pointer-events: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
}

.btn-whatsapp {
    background: #25d366;
}

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

.float-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

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

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }
}

/* Floating Showcase Section */
.floating-showcase {
    padding: 100px 5%;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.bubble-container {
    position: relative;
    width: 100%;
    height: 400px;
    max-width: 1200px;
    margin: 0 auto;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: floating 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.bubble:hover {
    transform: scale(1.1);
    z-index: 10;
}

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

/* Specific Sizes and Positions for 7 Bubbles */
.b1 {
    width: 220px;
    height: 220px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.b2 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 15%;
    animation-delay: 1s;
}

.b3 {
    width: 280px;
    height: 280px;
    top: 20%;
    left: 35%;
    animation-delay: 2s;
}

.b4 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 65%;
    animation-delay: 1.5s;
}

.b5 {
    width: 200px;
    height: 200px;
    top: 45%;
    left: 75%;
    animation-delay: 0.5s;
}

.b6 {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 45%;
    animation-delay: 2.5s;
}

.b7 {
    width: 130px;
    height: 130px;
    top: 5%;
    left: 85%;
    animation-delay: 3s;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

    .b1 {
        width: 150px;
        height: 150px;
        top: 5%;
        left: 5%;
    }

    .b2 {
        width: 100px;
        height: 100px;
        top: 25%;
        left: 60%;
    }

    .b3 {
        width: 180px;
        height: 180px;
        top: 40%;
        left: 10%;
    }

    .b4 {
        width: 90px;
        height: 90px;
        top: 60%;
        left: 70%;
    }

    .b5 {
        width: 140px;
        height: 140px;
        top: 75%;
        left: 20%;
    }

    .b6 {
        width: 120px;
        height: 120px;
        top: 15%;
        left: 35%;
    }

    .b7 {
        width: 110px;
        height: 110px;
        top: 85%;
        left: 65%;
    }
}

.expert-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
    text-align: center;
    width: 100%;
}

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

    .expert-text-overlay h3 {
        font-size: 2rem !important;
    }
}

/* Luxury Mobile Menu Styles (Card Style) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-card {
    width: 90%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    padding: 40px 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-menu-overlay.active .mobile-menu-card {
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}

.close-menu {
    position: absolute;
    right: 0;
    top: -10px;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.mobile-nav-links li {
    width: 100%;
}

.mobile-nav-links a {
    display: block;
    width: 100%;
    padding: 18px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    color: var(--secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.mobile-menu-footer {
    margin-top: 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    color: white;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
    .nav-links {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    #main-nav {
        padding: 8px 12px;
        width: 92%;
        left: 50%;
        transform: translateX(-50%);
        top: 10px;
    }

    #main-nav.scrolled {
        width: 100%;
        left: 50%;
        top: 0;
        border-radius: 0;
    }

    .logo {
        font-size: 1.1rem;
        gap: 6px;
    }

    .logo img {
        height: 32px;
        width: 32px;
    }
    .slide-content h1 {
        font-size: 2rem !important;
    }
    .services-hero, .about-hero, .contact-hero {
        min-height: 60vh;
        height: auto;
        padding: 120px 5% 60px;
        background-attachment: scroll;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .services-hero h1, .about-hero h1, .contact-hero h1 {
        font-size: 1.8rem !important;
        margin-top: 0;
    }
}

/* Portfolio Gallery Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-overlay span {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

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

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

.portfolio-item:hover .portfolio-overlay span {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    .portfolio-item {
        height: 200px;
    }
    .portfolio-overlay span {
        font-size: 0.9rem;
    }
}

/* Language Switcher Styles */
.lang-switcher {
    position: fixed;
    top: 90px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px;
    border-radius: 50px;
    display: flex;
    gap: 5px;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.lang-btn {
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

.lang-btn:hover {
    transform: scale(1.05);
    background: var(--secondary);
}

@media (max-width: 768px) {
    .lang-switcher {
        top: 80px;
        right: 10px;
    }
}

/* Hide Google Translate Bar */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
    display: none !important;
}
body {
    top: 0px !important;
}
.goog-te-menu-value {
    display: none !important;
}