/* Modern Dark Theme Palette */
:root {
    --bg-main: #0f172a;        /* Deep Slate */
    --bg-card: #1e293b;        /* Lighter Slate for elements */
    --bg-input: #334155;       /* Input background */
    --primary-gradient: linear-gradient(135deg, #0284c7, #38bdf8);
    --primary-color: #38bdf8;  /* Cyan/Blue Accent */
    --text-main: #f8fafc;      /* White-ish */
    --text-muted: #cbd5e1;     /* Gray */
    --wa-color: #25D366;       /* WhatsApp Green */
    --glow: 0 0 20px rgba(56, 189, 248, 0.3);
    --card-shadow: 0 10px 30px rgba(0,0,0,0.5);
    --border-light: rgba(255, 255, 255, 0.05);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3 { 
    color: var(--text-main); 
    margin-top: 0;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.subtitle {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Glassmorphism Navigation */
header {
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 50px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.logo { 
    font-size: 22px; 
    font-weight: 800; 
    color: var(--text-main); 
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo i {
    color: var(--primary-color);
    font-size: 26px;
}
nav a { 
    margin-left: 25px; 
    text-decoration: none; 
    color: var(--text-muted); 
    font-weight: 600; 
    transition: color 0.3s;
    font-size: 0.95rem;
}
nav a:hover { 
    color: var(--primary-color); 
}

/* Hero Section - Pure CSS Glowing Gradient */
.hero {
    background: 
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(2, 132, 199, 0.15), transparent 40%),
        var(--bg-main);
    color: white;
    text-align: center;
    padding: 140px 20px;
    border-bottom: 1px solid var(--border-light);
}
.hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 15px; 
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.hero p { 
    font-size: 1.2rem; 
    margin-bottom: 40px; 
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}
.btn:hover { 
    transform: translateY(-3px);
    box-shadow: var(--glow);
}
.btn-wa {
    background: var(--wa-color);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
    background: #1ebd5c;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* General Section Layout */
.section { 
    padding: 80px 20px; 
    max-width: 1200px; 
    margin: auto; 
    text-align: center; 
}
.bg-card {
    background-color: rgba(30, 41, 59, 0.3); /* Subtle dark background specifically for Services section */
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    max-width: 100% !important; /* Let the background stretch full width */
}

/* About Section text */
.about-text {
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
}
.about-text strong {
    color: var(--text-main);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.service-card {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: rgba(56, 189, 248, 0.3);
}
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-main);
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Reviews Section */
.reviews-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    width: 450px; 
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: rgba(56, 189, 248, 0.3);
}
.review-card i.fa-quote-left {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255,255,255,0.03);
}
.stars { color: #fbbf24; margin-bottom: 15px; font-size: 1.1rem; }
.review-text { color: var(--text-muted); font-style: italic; line-height: 1.7; }
.reviewer-name { 
    font-weight: 700; 
    margin-top: 20px; 
    color: var(--primary-color); 
    display: flex;
    align-items: center;
    gap: 10px;
}
.reviewer-name::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Info Grid (Location & Hours) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.info-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info-card h3 { margin-bottom: 15px; font-size: 1.5rem; }
.info-card p { color: var(--text-muted); margin-bottom: 25px; }

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 350px;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    text-align: right;
}
.hours-list li:last-child {
    border-bottom: none;
}
.hours-list strong {
    color: var(--text-main);
    font-weight: 600;
    text-align: left;
}
.hours-list span {
    line-height: 1.5;
}

/* Contact Form Section */
.contact-form-container {
    max-width: 600px;
    margin: 40px auto 0;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
    text-align: left;
}
.contact-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.contact-form-container input, 
.contact-form-container textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    background-color: var(--bg-input);
    border: 1px solid transparent;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s;
}
.contact-form-container input::placeholder, 
.contact-form-container textarea::placeholder {
    color: #64748b;
}
.contact-form-container input:focus, 
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}
.contact-form-container button {
    width: 100%;
    border-radius: 8px;
    padding: 16px;
    font-size: 1.1rem;
}
.contact-form-container button:disabled {
    background: #475569;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}
#form-status {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}

/* Floating WhatsApp Button */
.float-wa {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: var(--wa-color);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.float-wa:hover { 
    transform: scale(1.1) translateY(-5px); 
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Footer */
footer {
    background: #0b1120;
    color: var(--text-muted);
    text-align: center;
    padding: 30px;
    border-top: 1px solid var(--border-light);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    header {
        flex-direction: column; /* Stack logo on top of links */
        padding: 15px 10px;
        gap: 15px;
    }
    .logo {
        font-size: 1.2rem;
        text-align: center;
    }
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    nav a {
        margin-left: 0; /* Removes the desktop spacing */
        font-size: 0.9rem;
    }
    .hero {
        padding: 100px 20px;
    }
    .hero h1 {
        font-size: 2.2rem; /* Shrinks the massive title to fit mobile screens */
    }
}