 /* Base Variables & Reset */
:root {
    --navy: #0a1f44;
    --cyan: #00b4d8;
    --white: #ffffff;
    --light-gray: #f4f7f6;
    --dark-text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    color: var(--dark-text);
    line-height: 1.6;
}

/* Typography & Utilities */
h1, h2, h3, h4 { margin-bottom: 15px; color: var(--navy); }
p { margin-bottom: 15px; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white h2, .text-white h3 { color: var(--white); }
.bg-dark { background-color: var(--navy); }
.bg-light { background-color: var(--light-gray); }
.bg-cyan { background-color: var(--cyan); color: var(--white); }
.border-cyan { border: 2px solid var(--cyan); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--cyan);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn-primary:hover { background-color: #0096b4; }
.btn-block { display: block; width: 100%; font-size: 1.1rem; }
.btn-nav { background-color: var(--navy); color: var(--white); padding: 8px 16px; border-radius: 4px; text-decoration: none;}

/* Navigation (Mobile First) */
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.92); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(10, 31, 68, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 10px;
}

.nav-logo { height: 50px; width: auto; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 10px 0;
}

.nav-links a { 
    text-decoration: none; 
    color: var(--navy); 
    font-weight: 600; 
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--cyan); }
.nav-links a.active::after { width: 100%; }

.nav-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.phone-link {
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, color 0.3s ease;
}

.phone-link:hover {
    color: var(--cyan);
    transform: scale(1.05);
}

.phone-icon { color: var(--cyan); }

@media (max-width: 949px) {
    .nav-actions { margin-top: 10px; }
}

@media (min-width: 950px) {
    .navbar { 
        flex-direction: row; 
        justify-content: space-between;
        padding: 10px 5%; 
    }
    .nav-actions { flex-direction: row; gap: 25px; }
    .nav-links { margin: 0; }
    .nav-logo { height: 60px; }
}
/* Sleek Mobile Navbar Fix */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
        display: flex;
        flex-direction: column; /* Stack into two thin rows */
        align-items: center;
        gap: 8px;
    }

    /* ROW 1: Logo and Button side-by-side */
    .nav-top-row {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        height: 32px; /* Sleek and small */
    }

    .btn-nav {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 0;
    }

    /* ROW 2: Links and Phone in a tight line */
    .nav-links {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin: 0;
        padding-top: 5px;
        border-top: 1px solid rgba(10, 31, 68, 0.05);
        width: 100%;
    }

    .nav-links a {
        font-size: 0.7rem; /* Small but readable */
        letter-spacing: 0;
    }

    .nav-actions {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .phone-link {
        font-size: 0.85rem;
    }
}
/* Hide/Show Navbar on Scroll */
.navbar {
    transition: transform 0.3s ease-in-out;
}

.navbar.nav-hidden {
    transform: translateY(-100%); /* Slides it off the top */
}

/* Fix for Desktop: Keeps it in one line */
@media (min-width: 769px) {
    .nav-top-row { display: contents; } /* Makes the div "invisible" to layout */
    .mobile-cta { display: none; } /* Hide the mobile button */
    .desktop-only { display: inline-block; }
    .navbar { flex-direction: row; justify-content: space-between; }
}

/* Sleek Mobile Layout */
@media (max-width: 768px) {
    .desktop-only { display: none; }
    .nav-top-row {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 15px;
        font-size: 0.8rem;
        border-top: 1px solid rgba(0,0,0,0.05);
        padding-top: 5px;
    }
    .nav-actions { width: 100%; justify-content: center; }
}
/* Hero Home Section */
.hero-home {
    position: relative;
    min-height: 85vh; /* Covers most of the screen */
    display: flex;
    align-items: center;
    background: url('hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 80px 0;
}
@media (max-width: 768px) {
    .hero-home {
        padding-top: 100px; /* Gives room for the new sleek nav */
        text-align: center;
    }
}

/* Dark overlay to make text pop */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 31, 68, 0.9) 0%, rgba(10, 31, 68, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    background: rgba(0, 180, 216, 0.2);
    color: var(--cyan);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: 1px solid var(--cyan);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-home h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Responsive text size */
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 900;
}

.text-cyan { color: var(--cyan); }

.hero-home p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 550px;
}

/* Button Group */
.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.hero-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-home {
        text-align: center;
        min-height: 70vh;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-overlay {
        background: rgba(10, 31, 68, 0.7); /* Darker on mobile for readability */
    }
}

/* ========================================= */
/* THE CHALLENGE SECTION */
/* ========================================= */
.section-header { margin-bottom: 40px; }
.subheading {
    display: block;
    color: var(--cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.section-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

/* Info Blocks (Left Side) */
.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.info-icon {
    background: rgba(0, 180, 216, 0.1);
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    width: 65px;
    flex-shrink: 0; /* Keeps icon from squishing */
}
.info-block h3 { margin-bottom: 8px; font-size: 1.3rem; }
.info-block p { margin-bottom: 0; font-size: 0.95rem; color: #555; }

/* Solution Card (Right Side) */
.solution-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.15);
}
.solution-card .card-header {
    padding: 20px;
}
.solution-card .card-header h3 {
    margin: 0;
    color: var(--white);
}
.solution-card .card-body {
    padding: 30px;
}

/* Custom Check List */
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--cyan);
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(0, 180, 216, 0.15);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ========================================= */
/* WHY PRIMEFLOW SECTION */
/* ========================================= */
.feature-card {
    background: rgba(255, 255, 255, 0.03); /* Extremely subtle transparency */
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px); /* Makes the card "float" up when hovered */
    background: rgba(255, 255, 255, 0.06); /* Brightens slightly on hover */
}

.feature-icon {
    color: var(--cyan);
    margin-bottom: 25px;
    display: inline-flex;
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.75); /* Softens the paragraph text so the headline pops */
    font-size: 1rem;
    margin-bottom: 0;
}

/* ========================================= */
/* PRODUCTS / SYSTEMS SECTION */
/* ========================================= */
.pricing-cards {
    align-items: stretch; /* Makes all cards equal height */
}

.pricing-card {
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pricing-card.border-dark {
    border: 2px solid var(--navy);
    transform: scale(1.02); /* Makes the middle card slightly larger */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.pricing-card.border-dark:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-card .card-header {
    padding: 30px 20px;
    margin-bottom: 0;
    text-align: center;
}

.pricing-card .card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.card-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.pricing-card .card-body {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.pricing-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.focus-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.text-dark { color: var(--navy); }

/* Secondary Button for Cards */
.btn-outline-dark {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--navy);
    color: var(--navy);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto; /* Aligns buttons at the bottom */
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}
/* ========================================= */
/* CONTACT / CONSULTATION SECTION */
/* ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info-side h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-perks {
    list-style: none;
    margin-top: 30px;
}

.contact-perks li {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-perks li::before {
    content: '★';
    color: var(--cyan);
}

.contact-form-side form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 8px;
    text-transform: uppercase;
}

select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    margin-bottom: 20px;
}

.form-note {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 15px;
    color: #888;
    margin-bottom: 0;
}

/* Desktop Fix for Form */
@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* ========================================= */
/* MAIN FOOTER */
/* ========================================= */
.main-footer {
    padding: 70px 0 30px;
    border-top: 4px solid var(--cyan);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 300px;
}

.footer-contact-info a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 700;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--cyan);
}

.footer-links, .footer-areas {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-areas li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.tagline { margin-top: 5px; font-style: italic; }

/* Desktop Footer Layout */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}
.mt-20 { margin-top: 20px; }
/* Spacing Utilities */
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.font-weight-bold { font-weight: 700; }
.w-100 { width: 100%; text-align: center; }
.align-items-center { align-items: center; }
/* Grids & Cards */
.grid-2, .grid-3 { display: grid; gap: 30px; }
.card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.pricing-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; text-align: center;}
.pricing-card .card-header { padding: 15px; margin-bottom: 20px; }
.pricing-card p, .pricing-card h4 { padding: 0 20px; }

/* Form Styles */
.form-container { max-width: 600px; }
form { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); margin-top: 30px;}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
.checkbox-label { font-weight: bold; margin-bottom: 10px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 20px; }

/* Footer */
footer { padding: 40px 20px; }

/* Desktop Media Queries for rest of page */
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .form-group { display: flex; gap: 15px; }
}
/* ========================================= */
/* SERVICES PAGE STYLES */
/* ========================================= */
.services-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: url('services-bg.jpg') center/cover no-repeat; /* Name your photo services-bg.jpg */
    color: var(--white);
    padding: 100px 0 60px;
}

/* Dark tint so the white text still pops over the photo */
.services-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 31, 68, 0.85); 
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}
/* Responsive Table */
.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate; /* Required for rounded corners on tables */
    border-spacing: 0;
    background: var(--white);
    border-radius: 15px; /* Matches your card vibe */
    border: 1px solid #eee;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f8f9fa;
    color: var(--navy);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Highlighting 'The Gourmet' Column */
.comparison-table .highlight-col {
    background: var(--navy);
    color: var(--white);
    position: relative;
}

.comparison-table .highlight-col span {
    display: block;
    font-size: 0.65rem;
    background: var(--cyan);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 50px;
    width: fit-content;
    margin: 5px auto 0;
}

.comparison-table td:first-child {
    text-align: left;
    background: #fdfdfd;
    font-weight: 600;
    color: var(--navy);
}

/* Expansion Cards */
.expansion-card {
    position: relative;
    padding: 40px;
    height: 100%;
}

.status-tag {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--cyan);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.coming-soon-graphic {
    margin-top: 25px;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.bar-loading {
    position: absolute;
    height: 100%;
    width: 65%;
    background: var(--cyan);
    border-radius: 10px;
    transition: width 1s ease-in-out;
}
/* Ensures the top corners of the first row stay rounded */
.comparison-table thead tr:first-child th:first-child { border-top-left-radius: 15px; }
.comparison-table thead tr:first-child th:last-child { border-top-right-radius: 15px; }

/* Ensures the bottom corners stay rounded */
.comparison-table tbody tr:last-child td:first-child { border-bottom-left-radius: 15px; }
.comparison-table tbody tr:last-child td:last-child { border-bottom-right-radius: 15px; }
/* ========================================= */
/* ABOUT PAGE STYLES */
/* ========================================= */

.rounded-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 5px solid var(--white);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Value Cards */
.value-card {
    padding: 40px 30px;
    border-top: 4px solid var(--cyan);
}

.value-icon {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 180, 216, 0.1);
    margin-bottom: 10px;
    line-height: 1;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}
/* ========================================= */
/* CONTACT PAGE SPECIFICS */
/* ========================================= */
.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--cyan);
}

.method-icon {
    font-size: 1.5rem;
}

.method-link {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
}

.service-area-box {
    margin-top: 40px;
    padding: 30px;
    background: var(--navy);
    color: white;
    border-radius: 12px;
}

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    margin-top: 15px;
    opacity: 0.9;
}

#contactPageForm {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
/* Better Icons for Contact Methods */
.method-icon-box {
    background: rgba(0, 180, 216, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.text-cyan {
    color: var(--cyan);
}

/* Fixed Service Metro Box */
.service-area-box {
    margin-top: 30px;
    padding: 30px;
    background: var(--navy);
    color: white;
    border-radius: 12px;
    text-align: left; /* Ensures title isn't floating */
}

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Clean two-column split */
    gap: 12px;
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.area-list li {
    font-size: 0.95rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Added a small bullet point for the list */
.area-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
}
/* Contact Page Hero Styling */
.contact-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: url('contact-bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 120px 0 60px;
}

/* Dark overlay to make your white text "pop" */
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 31, 68, 0.75); /* Adjust the 0.75 to be darker or lighter */
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}
/* ========================================= */
/* ABOUT PAGE STYLES */
/* ========================================= */

/* About Hero Styling */
.about-hero {
    position: relative;
    min-height: 40vh; /* Responsive height */
    display: flex;
    align-items: center;
    background: url('about-bg.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 120px 0 60px; /* Space for sticky nav */
    margin-top: 0 !important; /* Ensure it's flush with nav */
}

/* Dark tint overlay so the white text "pops" */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 68, 0.80); /* Adjust opacity for brightness (0.80 = 80%) */
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2; /* Puts text above the overlay */
}

/* Rounded Profile Image Fix */
.about-image-container {
    text-align: center;
}

.rounded-img {
    width: 100%;
    max-width: 400px; /* Keeps it professional-sized */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 5px solid var(--white);
    transition: transform 0.3s ease;
}

.rounded-img:hover {
    transform: scale(1.02);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Value Cards Styling */
.value-card {
    padding: 40px 30px;
    border-top: 4px solid var(--cyan);
}

.value-icon {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 180, 216, 0.1);
    margin-bottom: 10px;
    line-height: 1;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}
/* Make About Hero text white */
.about-hero p.section-desc {
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
/* ========================================= */
/* THANK YOU PAGE STYLES */
/* ========================================= */
.success-icon-box {
    margin-bottom: 20px;
    animation: scaleUp 0.5s ease-out;
}

@keyframes scaleUp {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.next-steps-card {
    background: var(--white);
    max-width: 600px;
    margin: 40px auto 0;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    text-align: left;
    border-left: 5px solid var(--cyan);
}

.thank-you-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.thank-you-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.thank-you-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
}