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

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 25%, #4facfe 50%, #00f2fe 75%, #43e97b 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 8px 35px rgba(255, 107, 107, 0.4); }
    100% { box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    top: -100%;
    left: -100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
}

.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
}

.floating-bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

/* Highlight active nav link */
.nav-links a.active {
    background: rgba(255,255,255,0.3);
    color: #ffd700;
    font-weight: bold;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .logo { font-size: 2.5rem; }
    .tagline { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }

    .mobile-menu-btn { display: flex; }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

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

    .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }

    .floating-actions {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }

    .fab {
        width: 50px;
        height: 50px;
    }

    .fab svg {
        width: 20px;
        height: 20px;
    }
}

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

.fab {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fab svg {
    width: 24px;
    height: 24px;
    display: block;
}

.fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.fab.whatsapp { background: #25D366; }
.fab.phone { background: #4facfe; }
.fab.forum { background: #ff6b6b; }
.fab.email { background: #333; }

.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #43e97b 100%);
}

.reviews-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.review-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    padding: 2rem 1.5rem;
    max-width: 340px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    font-size: 2.5rem;
    margin-right: 1rem;
    display: inline-block;
    vertical-align: middle;
}

.review-author {
    font-weight: bold;
    font-size: 1.1rem;
    color: #764ba2;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #333;
}

.reviews-link {
    text-align: center;
    margin-top: 2rem;
}

.reviews-link a {
    color: #764ba2;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive for reviews */
@media (max-width: 900px) {
    .reviews-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .review-card {
        max-width: 95vw;
        width: 100%;
    }
}

.site-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 30px 0 20px 0;
    font-size: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    margin-top: 60px;
}

.site-footer .container {
    background: transparent; /* Remove any background here */
}

/* About Us Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    text-align: center;
}
.about-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #333;
    background: rgba(255,255,255,0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* Pricing Table */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}
.pricing-table {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto 0 auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.pricing-table th, .pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}
.pricing-table th {
    background: #764ba2;
    color: #fff;
    font-weight: bold;
}
.pricing-table tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.faq-list {
    max-width: 700px;
    margin: 2rem auto 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.faq-item h3 {
    color: #764ba2;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.faq-item p {
    color: #333;
    font-size: 1rem;
}

/* Map Section */
.map {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    text-align: center;
}
.map-embed {
    max-width: 700px;
    margin: 2rem auto 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Call-to-Action Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    text-align: center;
}
.cta-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}
.cta-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}
.cta-main-btn, .cta-secondary-btn {
    display: inline-block;
    margin: 0 1rem 1rem 1rem;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta-main-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.cta-main-btn:hover {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
    transform: translateY(-3px);
}
.cta-secondary-btn {
    background: #fff;
    color: #764ba2;
    border: 2px solid #764ba2;
}
.cta-secondary-btn:hover {
    background: #764ba2;
    color: #fff;
    transform: translateY(-3px);
}

/* Opening Hours Section */
.hours {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}
.hours-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0 auto;
    max-width: 400px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    font-size: 1.1rem;
    color: #333;
}
.hours-list li {
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
}
.hours-list li:last-child {
    border-bottom: none;
}

/* Accessibility Note in Footer */
.accessibility-note {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-top: 10px;
}

.designer-credit {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-top: 10px;
}
.designer-credit a {
    color: #ffd700;
    text-decoration: underline;
    font-weight: bold;
}

.site-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Arial Rounded MT Bold', Arial, sans-serif;
    margin-bottom: 1rem;
}
.logo-icon {
    font-size: 3rem;
    margin-bottom: 0.2rem;
}
.logo-text {
    font-size: 2.2rem;
    font-weight: bold;
    color: #764ba2;
    letter-spacing: 2px;
}
.logo-sub {
    font-size: 1.1rem;
    color: #43e97b;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}