/* --- Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
    --bg-color: #000000;
    --text-color: #f0f0f0;
    --text-muted-color: #a0a0a0;
    --card-bg-color: #1a1a1a;
    --border-color: #333;
    --primary-red: #E63946;
    --grad-red: linear-gradient(90deg, #F45B69, #E63946);
    --grad-accent: linear-gradient(90deg, #FFFFFF, #DDDDDD);
}

/* --- General Styles --- */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-weight: 700; }
.section-title {
    background: var(--grad-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}
.gradient-divider {
    height: 4px;
    width: 100px;
    background: var(--grad-red);
    border-radius: 2px;
    margin-bottom: 3rem;
}
section { position: relative; overflow: hidden; }

/* --- Navigation --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
}
.navbar.scrolled { background-color: rgba(10, 10, 10, 0.9); }
.navbar-brand .logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}
.navbar-brand .logo:hover { transform: scale(1.05); }
.nav-link {
    color: var(--text-color);
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}
.nav-link:hover, .nav-link.active { color: var(--primary-red); }

/* --- Buttons --- */
.btn-gradient {
    background: var(--grad-red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    background-size: 200% auto;
}
.btn-gradient:hover {
    background-position: right center;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
    color: white;
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero-video {
    position: absolute;
    top: 50%; left: 50%;
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -99;
}
.hero-section .container { z-index: 1; }
.hero-section h1 {
    font-weight: 700;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-section .lead {
    color: var(--text-muted-color);
    max-width: 600px;
    margin-left: auto; margin-right: auto;
}

/* --- About & Offerings Sections --- */
.profile-card, .service-card {
    background: var(--card-bg-color);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card { padding: 2rem; }
.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}
.counter-box h3 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--grad-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.service-card {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-color: transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--grad-red);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}
.service-card .icon-box {
    width: 80px; height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--grad-red);
    display: flex;
    align-items: center; justify-content: center;
    font-size: 2rem;
    color: white;
}

/* --- Gallery Section --- */
.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-item img {
    transition: transform 0.4s ease;
    width: 100%; height: 250px;
    object-fit: cover;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center; align-items: center;
    color: white;
    font-size: 2.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.modal-content {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
}
.modal-header { border-bottom: 1px solid var(--border-color); }
.modal-title { color: var(--primary-red); }
.modal-body { padding: 0; }
.modal-body img, .modal-body video { width: 100%; height: auto; }

/* --- Google Reviews Section --- */
.review-card {
    background-color: var(--card-bg-color);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.reviewer-info {
    margin-left: 10px;
    flex-grow: 1;
}
.reviewer-info strong { color: var(--text-color); }
.review-stars { color: #fbbc05; }
.google-icon { font-size: 1.5rem; color: #4285F4; }
.review-body {
    font-size: 0.95rem;
    color: var(--text-muted-color);
    font-style: italic;
}

/* --- CTA Banner --- */
#cta-banner {
    background: url('https://placehold.co/1920x500/000/FFF?text=Join+Us') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
}
#cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
#cta-banner .container { position: relative; z-index: 1; }
#cta-banner h2 {
    background: var(--grad-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Contact Section --- */
.contact-subtitle {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}
.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.contact-info .info-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-right: 20px;
    margin-top: 5px;
    width: 25px;
    text-align: center;
}
.contact-info .info-item div {
    flex: 1;
}
.contact-info .info-item strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 5px;
}
.contact-info .info-item p {
    margin: 0;
    color: var(--text-muted-color);
    line-height: 1.6;
}
.contact-info .info-item a {
    color: var(--text-muted-color);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-info .info-item a:hover { color: var(--primary-red); }
.form-control {
    background-color: #222;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 15px;
}
.form-control:focus {
    background-color: #222;
    color: var(--text-color);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.3);
}
.form-control::placeholder { color: #888; }
.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

/* --- Footer --- */
footer { background-color: #111; }
.social-icons a {
    color: var(--text-muted-color);
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all 0.3s ease;
    display: inline-block;
}
.social-icons a:hover {
    color: var(--primary-red);
    transform: translateY(-5px);
}

/* --- WhatsApp FAB & Popup --- */
.whatsapp-fab {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-popup {
    position: fixed;
    bottom: 100px; right: 30px;
    width: 320px;
    background-color: var(--card-bg-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1001;
    display: none;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transform: scale(0.5);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: bottom right;
}
.whatsapp-popup.show {
    display: flex;
    transform: scale(1);
    opacity: 1;
}
.whatsapp-popup-header {
    background-color: #075E54;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.close-popup {
    background: none; border: none;
    color: white; font-size: 24px;
    cursor: pointer;
}
.whatsapp-popup-body { padding: 20px; }
.whatsapp-popup-body p {
    color: var(--text-muted-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.whatsapp-popup-body .btn-success {
    background-color: #25D366;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
}
.text-muted {
    color: var(--primary-red) !important;
}
