/* 1. Global Styles & Variables */
:root {
    --primary-blue: #0056b3; /* Darker blue for professionalism */
    --accent-blue: #00a8ff;  /* Brighter blue for buttons */
    --clean-white: #f8f9fa;
    --text-dark: #2d3436;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--clean-white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* 2. Navigation bar */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover { color: var(--primary-blue); }

/* 3. Hero Section (Gradient for depth) */
#hero {
    background: linear-gradient(135deg, var(--primary-blue), #003366);
    color: white;
    padding: 100px 5%;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

#hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }

#hero button {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

#hero button:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

/* 4. Calculator Section (Professional Card Design) */
#contact {
    padding: 80px 5%;
    max-width: 600px;
    margin: -50px auto 50px; /* Overlap with hero for modern look */
}

.calculator-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

label { display: block; margin: 15px 0 5px; font-weight: bold; }

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

#estimate-display {
    margin-top: 20px;
    color: var(--primary-blue);
    font-size: 1.5rem;
    text-align: center;
}

#calc-btn {
    width: 100%;
    margin-top: 20px;
    background: #0084ff; /* Messenger Blue */
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* 5. Trust Features Section */
#trust-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 5%;
    background-color: white;
    flex-wrap: wrap; /* Para responsive sa mobile */
}

.feature {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    max-width: 350px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Hover effect para magmukhang interactive */
.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 86, 179, 0.1);
    border-color: var(--primary-blue);
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.feature h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Responsive adjustment */
@media (max-width: 768px) {
    #trust-features {
        flex-direction: column;
        align-items: center;
    }
}

/* --- HERO SECTION REDESIGN --- */
#hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 51, 102, 0.9)), 
                url('cleaning-action.jpg'); /* Gumamit ng action photo ng specialists mo */
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 10%;
}

#hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

#hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

#hero button {
    background-color: #00a8ff; /* Accent Blue */
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s transform ease;
}

#hero button:hover {
    transform: scale(1.05); /* Bahagyang lalaki pag tinapatan ng mouse */
}

/* --- SERVICES SECTION DESIGN --- */
#services {
    padding: 100px 5%;
    text-align: center;
    background-color: #f8f9fa;
}

#services h2 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 50px;
    position: relative;
}

/* Underline design sa title */
#services h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #00a8ff;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.services-container { /* Idagdag itong wrapper sa HTML mo sa loob ng #services */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border-bottom: 5px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00a8ff; /* Lalabas ang blue line sa ilalim pag ni-hover */
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1);
}

.service-card {
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
}

/* --- SERVICES SECTION DESIGN --- */
#services {
    padding: 80px 5%;
    background-color: #f4f7f6; /* Light gray background to separate from white sections */
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 320px;
    flex: 1 1 300px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.15);
    border-color: var(--primary-blue);
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: #636e72;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1; /* Para pantay-pantay ang height ng text areas */
}

.service-card .price {
    font-weight: 800;
    color: var(--primary-blue);
    font-size: 1.2rem;
    background: #e1f0ff;
    padding: 8px 20px;
    border-radius: 50px;
}

/* Highlight style para sa Double Shield */
.service-card.highlight {
    border: 2px solid var(--primary-blue);
    position: relative;
    transform: scale(1.05); /* Bahagyang mas malaki */
}

.service-card.highlight::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -15px;
    background: var(--accent-blue);
    color: white;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 10px;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .service-card.highlight {
        transform: scale(1); /* Balik sa normal size sa mobile */
    }
}

/* --- TRUST FEATURES REDESIGN WITH PICTURES --- */
#trust-features {
    padding: 80px 5%;
    background-color: white;
    text-align: center;
}

#trust-features h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    flex: 1 1 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden; /* Para hindi lumabas ang image sa border-radius */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    text-align: left; /* Text alignment inside card */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.15);
    border-color: var(--primary-blue);
}

.feature-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Siguraduhing crop ang image nang maayos */
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1); /* Zoom effect sa image pag ni-hover */
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 168, 255, 0.9); /* Accent Blue with opacity */
    color: white;
    padding: 5px 15px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50px;
    letter-spacing: 1px;
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.feature-content h3::after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--accent-blue);
    position: absolute;
    bottom: -8px;
    left: 0;
}

.feature-content p {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .feature-card {
        max-width: 100%;
    }
}

/* --- FOOTER DESIGN --- */
footer {
    background-color: #002b5c; /* Much darker blue for contrast */
    color: white;
    padding: 60px 5% 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent-blue);
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- MISSION & VISION DESIGN --- */
#mission-vision {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #ffffff, #f0f7ff); /* Subtle blue fade */
    text-align: center;
}

.mv-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.mv-card {
    background: white;
    flex: 1 1 400px;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.05);
    transition: 0.4s ease;
    border-top: 5px solid var(--primary-blue);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 86, 179, 0.1);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-card p {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .mv-card {
        padding: 30px 20px;
    }
}

/* --- MOBILE RESPONSIVENESS FIX --- */
@media (max-width: 480px) {
    #hero h1 {
        font-size: 1.8rem;
    }
    
    #hero p {
        font-size: 1rem;
    }

    .mv-card, .service-card, .feature-card {
        padding: 20px;
    }

    .logo {
        font-size: 1.2rem;
    }
}

/* Para sa Calculator Select inputs */
select, input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1.5px solid #d1d8e0;
    border-radius: 10px;
    font-size: 1rem;
    color: #2d3436;
    outline: none;
    transition: 0.3s;
}

select:focus, input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 8px rgba(0, 86, 179, 0.2);
}

optgroup {
    font-weight: bold;
    color: var(--primary-blue);
}

/* --- HERO SECTION REDESIGN --- */
#hero {
    position: relative;
    height: 90vh; /* Mas matangkad para makita ang ganda ng picture */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    
    /* ILAGAY DITO ANG PICTURE MO */
    background-image: url('images/calabarzon-bg.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect para sa professional feel */
}

/* Overlay para mabasa ang text (Importante ito!) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 43, 92, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Para nasa ibabaw ng overlay ang text */
    max-width: 900px;
    padding: 0 20px;
}

#hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.coverage-badge {
    background: var(--accent-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #hero h1 { font-size: 2.2rem; }
    #hero { height: 80vh; background-attachment: scroll; }
}

/* --- ABOUT PAGE SPECIFIC --- */
.about-hero {
    height: 50vh;
    background: url('images/calabarzon-bg.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.founder-section {
    padding: 100px 5%;
    background: #fff;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--primary-blue);
}

.founder-title {
    margin-top: 25px;
    border-left: 4px solid var(--accent-blue);
    padding-left: 15px;
}

.signature {
    max-width: 150px;
    margin-top: 20px;
    filter: grayscale(1);
    opacity: 0.7;
}

.impact-stats {
    padding: 80px 5%;
    background: var(--clean-white);
}

.stats-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    flex: 1 1 300px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stat-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .founder-grid { grid-template-columns: 1fr; }
    .about-hero { height: 40vh; }
}

/* --- NEW ABOUT FEATURES --- */
.process-section { padding: 80px 5%; background: #f9fbff; text-align: center; }
.section-title { color: var(--primary-blue); margin-bottom: 50px; font-size: 2.5rem; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    border-bottom: 4px solid var(--accent-blue);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: #e1f0ff;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 0;
}

.process-step h3, .process-step p { position: relative; z-index: 1; }

.safety-standards { padding: 80px 5%; text-align: center; }
.standards-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.standard-item { flex: 1 1 250px; }
.standard-item .icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.standard-item h4 { color: var(--primary-blue); font-size: 1.2rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- CORE VALUES STYLING --- */
.values-section {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
    position: relative;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Para hindi mag-overlap sa mobile */
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #f8f9fa; /* Light gray background */
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1 1 300px; /* Minimum width na 300px */
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border-top: 5px solid var(--accent-blue); /* Blue accent line sa itaas */
}

.value-card:hover {
    transform: translateY(-10px); /* Aangat pag ni-hover */
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.1);
    background: white;
}

.value-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #636e72;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .values-section h2 {
        font-size: 2rem;
    }
}

/* --- GLOBAL TYPOGRAPHY --- */
:root {
    --primary-blue: #0056b3;
    --accent-blue: #00a8ff;
    --text-main: #2d3436;
    --text-muted: #636e72;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Base size */
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* --- HEADINGS (Para hindi sila magmukhang maliit) --- */
h1 { font-size: 3rem; font-weight: 800; line-height: 1.2; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.8rem; font-weight: 600; }

/* --- PARAGRAPHS (Ang "Lumiit" na part) --- */
p {
    font-size: 1.1rem; /* Ginawa nating mas malaki sa standard 16px */
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.value-card p {
    font-size: 1rem; /* Sakto lang para sa loob ng card */
    line-height: 1.5;
}

/* --- ABOUT HERO REDESIGN --- */
.about-hero {
    position: relative;
    min-height: 60vh; /* Matangkad na background para sa "About" */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    
    /* GAMITIN ANG PICTURE NA DINOWNLOAD MO KANINA */
    background: url('images/calabarzon-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect para sa "premium" feel */
    overflow: hidden;
}

/* Overlay para lumutang ang puting text */
.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 43, 92, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

/* Badge style para sa regional reach */
.about-hero .badge {
    background: var(--accent-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.about-hero h1 {
    font-size: 3.5rem; /* Malaking font para sa impact */
    margin-bottom: 15px;
    line-height: 1.1;
}

.about-hero p {
    font-size: 1.3rem; /* Malaking font para sa description */
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero { min-height: 50vh; background-attachment: scroll; }
    .about-hero h1 { font-size: 2.2rem; }
    .about-hero p { font-size: 1.1rem; }
}

/* --- HERO SECTION REDESIGN --- */
#hero {
    position: relative;
    height: 90vh; /* Matangkad na hero para sa Impact */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    
    /* ILAGAY DITO ANG PICTURE MO */
    background: url('images/calabarzon-bg.png') no-repeat center center;
    background-size: cover; /* Siguraduhing crop ang image nang maayos */
    background-attachment: fixed; /* Parallax effect para sa premium feel */
    overflow: hidden;
}

/* Overlay para mabasa ang text (Importante ito!) */
#hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 43, 92, 0.85), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Para nasa ibabaw ng overlay ang text */
    max-width: 900px;
    padding: 0 20px;
}

#hero h1 {
    font-size: 3.5rem; /* Malaking font para sa impact */
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.coverage-badge {
    background: var(--accent-blue);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #hero h1 { font-size: 2.2rem; }
    #hero { height: 80vh; background-attachment: scroll; }
}

/* --- ABOUT HERO SECTION (Consistency Fix) --- */
.about-hero {
    position: relative;
    height: 60vh; /* Mas maiksi ito kaysa sa home page hero para hindi masyadong matagal i-scroll */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    
    /* BACKGROUND SETTINGS */
    background: url('images/calabarzon-bg.png') no-repeat center center;
    background-size: cover; 
    background-attachment: fixed; /* Ito ang Parallax effect na gusto mo */
    overflow: hidden;
}

/* Overlay para mas lalong mabasa ang puting text */
.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 43, 92, 0.75), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2; /* Para lumutang ang text sa ibabaw ng overlay */
}

/* Mobile Fix (Dahil ang parallax ay minsan malag sa phone) */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        background-attachment: scroll; /* Mas smooth ito sa mobile data */
    }
}

/* --- BLOG IMAGE FIX --- */
.blog-img {
    position: relative;
    width: 100%;
    height: 250px; /* DITO MO MA-CO-CONTROL ANG TANGKAD NG PICTURE */
    overflow: hidden; /* Para hindi lumabas ang image sa kanto ng card */
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* PINAKAMAHALAGA: Para hindi ma-stretch ang mukha o gamit niyo */
    object-position: center; /* Laging sa gitna ang focus ng picture */
    transition: transform 0.5s ease;
}

/* Hover effect para magmukhang professional */
.blog-card:hover img {
    transform: scale(1.1);
}

/* --- NAVIGATION REPAIR --- */
header {
    background-color: #0056b3; /* Salmo Blue */
    padding: 10px 0; /* Paliitin ang taas ng header */
    position: relative; /* Imbes na fixed, para hindi ito lumutang sa ibabaw ng content */
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Siguraduhin na ang Links ay nasa gitna o kanan */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* --- BLOG HERO ADJUSTMENT --- */
.blog-hero {
    background: url('images/calabarzon-bg.png') no-repeat center center;
    background-size: cover;
    min-height: 45vh; /* Taasan natin para makita ang picture */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 60px 20px; /* Space sa itaas at ibaba */
    position: relative;
}

/* Siguraduhin na ang text ay nasa loob ng hero at hindi natatakpan */
.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    z-index: 2;
}

#blog-main {
    padding-top: 50px; /* Space sa pagitan ng Hero at Blog Cards */
    background: #ffffff;
}

.blog-filters {
    margin-bottom: 40px; /* Space sa ibaba ng buttons */
    text-align: center;
}

/* --- NAVIGATION BUTTON STYLES --- */
nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: white; /* O kung anong kulay ng text mo */
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--accent-blue);
}

/* Specific Style para sa "Book Now" Button */
.nav-btn {
    background-color: var(--accent-blue);
    padding: 10px 20px !important;
    border-radius: 5px;
    font-weight: bold !important;
    color: white !important;
}

.nav-btn:hover {
    background-color: #008cdb;
    transform: scale(1.05);
}

/* --- FOOTER STYLING --- */
footer {
    background-color: #0056b3; /* Ang iyong Primary Salmo Blue */
    padding: 50px 5%;
    color: #ffffff; /* GINAGAWANG PUTI ANG FONT */
    text-align: center;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Siguraduhin na ang lahat ng text sa loob (p, h4, span) ay puti */
footer p, 
footer h4, 
footer span {
    color: #ffffff !important;
    opacity: 0.9; /* Bahagyang transparency para sa "muted" feel */
    margin-bottom: 10px;
}

/* I-style din ang Links sa Footer para maging puti */
footer a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

footer a:hover {
    color: var(--accent-blue); /* Mag-i-iba ang kulay pag ni-hover */
    text-decoration: underline;
}

/* Para sa Social Media Icons kung meron man */
.footer-socials a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: #ffffff;
}

/* --- SESSION SLIDER --- */
#session-slider {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.slider-header { text-align: center; margin-bottom: 40px; padding: 0 5%; }

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 0 5%;
    -webkit-overflow-scrolling: touch; /* Smooth swipe sa iOS */
}

/* Itago ang scrollbar pero functional pa rin */
.slider::-webkit-scrollbar { display: none; }

.slide {
    flex: 0 0 300px; /* Width ng bawat slide */
    scroll-snap-align: start;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    position: relative;
}

.slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 86, 179, 0.9));
    color: white;
}

.slide-info h4 { margin: 0; font-size: 1.1rem; }
.slide-info p { margin: 5px 0 0; font-size: 0.85rem; opacity: 0.9; }

.slider-footer { text-align: center; margin-top: 30px; }
.fb-link { color: var(--primary-blue); font-weight: bold; text-decoration: none; }

/* --- MOBILE RESPONSIVE SLIDER --- */

/* Default para sa Desktop */
.slide {
    flex: 0 0 350px; /* Mas malapad sa desktop */
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

/* TABLET VIEW (E.g. iPad) */
@media (max-width: 1024px) {
    .slide {
        flex: 0 0 300px;
    }
    .slider-header h2 {
        font-size: 2rem;
    }
}

/* MOBILE VIEW (E.g. iPhone/Android) */
@media (max-width: 768px) {
    #session-slider {
        padding: 50px 0; /* Mas maliit na padding sa mobile */
    }

    .slider {
        gap: 15px; /* Mas maliit na awang sa pagitan ng slides */
        padding: 0 10%; /* Para makita ang "preview" ng susunod na slide sa gilid */
    }

    .slide {
        flex: 0 0 85%; /* Sakto lang para sa isang card sa screen */
        scroll-snap-align: center; /* Laging mag-se-center ang slide paghinto */
    }

    .slide img {
        height: 300px; /* Mas maiksi para hindi kainin ang buong screen */
    }

    .slider-header h2 {
        font-size: 1.7rem;
    }

    .slider-header p {
        font-size: 0.9rem;
    }
}

/* VERY SMALL SCREENS */
@media (max-width: 480px) {
    .slide {
        flex: 0 0 90%;
    }
}

/* --- GRAND LAUNCH PROMO --- */
#launch-promo {
    padding: 60px 5%;
    background: linear-gradient(135deg, #0056b3, #00a8ff);
    color: white;
    border-radius: 20px;
    margin: 40px 5%;
}

.promo-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.promo-tag {
    background: #ffcc00;
    color: #333;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin: 15px 0;
    color: white;
}

.promo-features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    font-weight: 600;
}

.btn-promo {
    display: inline-block;
    background: white;
    color: #0056b3;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.btn-promo:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

.slots-left {
    font-size: 1.5rem;
    font-weight: 800;
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 50%;
    border: 3px dashed white;
}

.promo-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-share-messenger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0084FF; /* Official Messenger Blue */
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-share-messenger:hover {
    background-color: #0066cc;
    transform: translateY(-3px);
}

.btn-share-messenger i {
    font-size: 1.2rem;
}

/* --- GRAND LAUNCH PROMO (Font Color Fix) --- */
#launch-promo {
    /* Ang iyong existing background gradient */
    background: linear-gradient(135deg, #0056b3, #00a8ff);
    color: #ffffff; /* Global white font for the section */
    padding: 60px 5%;
    border-radius: 20px;
    margin: 40px 5%;
}

#launch-promo h2 {
    color: #ffffff !important; /* Siguraduhing puti ang Headline */
    font-size: 2.5rem;
    margin: 15px 0;
}

/* Ang description na gusto mong maging white */
#launch-promo p {
    color: #ffffff; /* White font para sa description */
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95; /* Bahagyang transparency para sa "muted" feel */
    margin-bottom: 20px;
}

/* I-style ang Promo Tag (Background remains yellow, text is dark) */
.promo-tag {
    background: #ffcc00; /* Maliwanag na dilaw */
    color: #333333; /* Dark text para mabasa sa dilaw */
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* I-style ang Promo Features (✅) */
.promo-features {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    font-weight: 600;
    flex-wrap: wrap; /* Para sa mobile responsiveness */
}

.promo-features span {
    color: #fffae6; /* Napakalinaw na dilaw/puti para sa ✅ checklist */
    font-size: 1rem;
}

/* --- FOOTER FONT COLOR UPDATES --- */

footer {
    background-color: #002b5c; /* Siguraduhing dark ang background para lumutang ang puti */
    padding: 40px 5%;
    text-align: center;
    color: #ffffff;
}

/* Para sa: "The Region's Trusted Partner..." */
footer .footer-tagline {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 1; /* Full visibility para sa tagline */
}

/* Para sa: "© 2026 Salmo Home Care..." */
footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Manipis na line divider */
    margin-top: 30px;
    padding-top: 20px;
    color: #d1d1d1; /* Light gray para hindi masyadong agaw-atensyon sa tagline */
    font-size: 0.85rem;
}

/* Para sa link na "Designed by Psalms Digital" */
footer .footer-bottom a {
    color: #00a8ff; /* Gamitin ang iyong Accent Blue para sa branding mo */
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

footer .footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}