/* ============================================================
   Aqua MG - Global Stylesheet
   Migrated from Bootstrap 5 HTML Prototype
   ============================================================ */

:root {
    --primary-color: #0B5ED7;
    --secondary-color: #071C3B;
    --text-color: #1F2937;
    --bg-color: #FFFFFF;
    --border-radius: 14px;
    --btn-radius: 8px;
    --container-max-width: 1320px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container, .container-lg {
    max-width: var(--container-max-width);
}

/* ─── Navbar ─── */
.navbar-custom {
    height: 90px;
    background-color: rgba(7, 28, 59, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.navbar-custom .nav-link {
    color: #E5E7EB !important;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 12px !important;
    transition: color 0.2s ease;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary-color) !important;
}
@media (min-width: 992px) {
    .navbar-custom .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* ─── Buttons ─── */
.btn-custom-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: var(--btn-radius);
    padding: 10px 24px;
    transition: all 0.2s ease;
}
.btn-custom-primary:hover {
    background-color: #0a58ca;
    border-color: #0a53be;
    color: #fff;
    transform: translateY(-2px);
}
.btn-custom-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 500;
    border-radius: var(--btn-radius);
    padding: 10px 24px;
    transition: all 0.2s ease;
}
.btn-custom-outline:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* ─── Hero Section ─── */
.hero-section {
    background-image: url('/img/hero_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 180px;
    color: #fff;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #071C3B 30%, rgba(7, 28, 59, 0.85) 60%, rgba(7, 28, 59, 0.3) 100%);
    pointer-events: none;
}
.hero-tagline {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-transform: uppercase;
}
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}
.hero-desc {
    font-size: 15px;
    color: #D1D5DB;
    font-weight: 300;
}
.hero-bullet-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(11, 94, 215, 0.3);
    background-color: rgba(11, 94, 215, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* ─── Trust Bar ─── */
.trust-bar-wrapper {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
.trust-bar-card {
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 30px 20px;
    color: #fff;
}
.trust-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(11, 94, 215, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

/* ─── Product Cards ─── */
.product-card {
    background: #FFF;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px -10px rgba(7, 28, 59, 0.15);
    border-color: var(--primary-color);
}
.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 180px);
}

/* ─── 8-Stage Cards ─── */
.stage-card {
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}
.stage-card:hover {
    border-color: transparent;
    background-color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 94, 215, 0.08);
}
.stage-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00D2FF 100%);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 12px;
    box-shadow: 0 4px 10px rgba(11, 94, 215, 0.25);
}

/* ─── Feature Cards ─── */
.feature-card {
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius);
    padding: 30px;
    background: #fff;
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(11, 94, 215, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* ─── Statistics Strip ─── */
.stats-strip {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 80px 0;
}

/* ─── Testimonials ─── */
.testimonial-card {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
}

/* ─── CTA Banner ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0849a3 100%);
    border-radius: 20px;
    color: #FFF;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(11, 94, 215, 0.2);
    position: relative;
    z-index: 5;
}

/* ─── Footer ─── */
.footer {
    background-color: #040E1E;
    color: #9CA3AF;
    font-size: 14px;
    padding-top: 150px;
    padding-bottom: 30px;
}
.footer h5 {
    color: #FFF;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 12px;
}
.footer h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background-color: var(--primary-color);
}
.footer a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer a:hover {
    color: #FFF;
}

/* ─── Product Detail Page ─── */
.spec-table th {
    background-color: #f8faff;
    font-weight: 600;
    color: var(--secondary-color);
    width: 38%;
}
.spec-table td {
    color: var(--text-color);
}
.spec-table tr:hover td,
.spec-table tr:hover th {
    background-color: rgba(11, 94, 215, 0.03);
}

/* ─── Contact Form ─── */
.contact-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(11, 94, 215, 0.12);
}

/* ─── Blog Cards ─── */
.blog-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px -10px rgba(7,28,59,0.12);
    border-color: var(--primary-color);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

/* ─── Floating Action Buttons ─── */
.float-btn-group {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}
.float-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}
.float-whatsapp { background-color: #25D366; }
.float-whatsapp:hover { box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4); }
.float-call { background-color: #0B5ED7; }
.float-call:hover { box-shadow: 0 6px 16px rgba(11, 94, 215, 0.4); }
.float-top { background-color: #1F2937; display: none; }
.float-top:hover { box-shadow: 0 6px 16px rgba(31, 41, 55, 0.4); }
