/* Hygienix Porta Potty — Stockton, CA */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1B4F8C;       /* Hygienix navy */
    --primary-dark: #0F3463;
    --secondary-color: #5BBF53;     /* Hygienix green */
    --secondary-dark: #469E3F;
    --accent-color: #2C7BD2;        /* Lighter blue for hover */
    --text-dark: #1B2A3A;
    --text-mid: #4a5b6e;
    --text-light: #6b7a8c;
    --white: #ffffff;
    --light-bg: #f4f8fc;
    --soft-bg: #eaf3fb;
    --border-color: #e0e8f0;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.65;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
header {
    background-color: var(--white);
    padding: 14px 0;
    box-shadow: 0 2px 14px rgba(27, 79, 140, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    max-width: 165px;
    height: auto;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.97rem;
    position: relative;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover { color: var(--primary-color); }
.main-nav a:hover::after { width: 100%; }

.contact-header { text-align: right; }

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.35rem;
    font-weight: 800;
    transition: color 0.2s ease;
}

.phone-link:hover { color: var(--secondary-dark); }

.address {
    color: var(--text-light);
    font-size: 0.88rem;
    margin-top: 4px;
}

.address i { color: var(--secondary-color); margin-right: 4px; }

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 90px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
    opacity: 0.95;
}

.hero-content {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 191, 83, 0.18);
    border: 1px solid rgba(91, 191, 83, 0.5);
    color: #c5f0c1;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 22px;
    color: #b6e3b1;
}

.hero-description {
    font-size: 1.08rem;
    margin-bottom: 32px;
    line-height: 1.75;
    opacity: 0.94;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 36px;
    margin-bottom: 38px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1.15rem;
}

.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 17px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.08rem;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(91, 191, 83, 0.35);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(91, 191, 83, 0.45);
    background-color: var(--secondary-dark);
}

.cta-button-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.cta-button-ghost:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.cta-button.large {
    padding: 20px 46px;
    font-size: 1.18rem;
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-item i {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

/* ========== SECTIONS — SHARED ========== */
.services h2,
.why-choose h2,
.industries h2,
.faq h2,
.visit-section h2,
.cta-section h2 {
    text-align: center;
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== CATEGORIES (was Services) ========== */
.services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.services h2 { color: var(--primary-color); }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 34px 26px 30px;
    box-shadow: 0 6px 22px rgba(27, 79, 140, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(27, 79, 140, 0.15);
    border-color: var(--secondary-color);
}

.category-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--soft-bg) 0%, #d6e8f5 100%);
    color: var(--primary-color);
    font-size: 2rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.category-card h3 {
    font-size: 1.18rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.category-card p {
    color: var(--text-mid);
    line-height: 1.65;
    font-size: 0.94rem;
}

.categories-footer {
    text-align: center;
    margin-top: 48px;
    padding: 28px 24px;
    background: var(--white);
    border-radius: 14px;
    border: 1px dashed var(--border-color);
}

.categories-footer p {
    color: var(--text-mid);
    margin-bottom: 18px;
    font-size: 1rem;
}

/* ========== WHY CHOOSE ========== */
.why-choose {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
}

.benefit-card {
    text-align: center;
    padding: 36px 26px;
    background: var(--light-bg);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(27, 79, 140, 0.12);
    background: var(--white);
}

.benefit-icon {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 18px rgba(27, 79, 140, 0.25);
}

.benefit-icon i {
    font-size: 1.85rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-mid);
    line-height: 1.7;
    font-size: 0.96rem;
}

/* ========== INDUSTRIES ========== */
.industries {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.industry-card {
    background: var(--white);
    padding: 34px 26px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.industry-card:hover {
    box-shadow: 0 8px 24px rgba(27, 79, 140, 0.12);
    transform: translateY(-5px);
    border-left-color: var(--primary-color);
}

.industry-card i {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.industry-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.industry-card p {
    color: var(--text-mid);
    line-height: 1.65;
    font-size: 0.94rem;
}

/* ========== VISIT THE STORE ========== */
.visit-section {
    padding: 90px 0;
    background:
        linear-gradient(135deg, rgba(27, 79, 140, 0.03) 0%, rgba(91, 191, 83, 0.05) 100%),
        var(--white);
    position: relative;
    overflow: hidden;
}

.visit-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(91, 191, 83, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.visit-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 191, 83, 0.12);
    color: var(--secondary-dark);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
}

.visit-text h2 {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--primary-color);
    line-height: 1.2;
}

.visit-text p {
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.75;
    font-size: 1rem;
}

.text-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-dark);
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    font-size: 1.02rem;
    transition: gap 0.25s ease, color 0.2s ease;
}

.text-cta:hover {
    gap: 14px;
    color: var(--primary-color);
}

/* Store Info Card */
.store-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(27, 79, 140, 0.18);
    border-top: 6px solid var(--secondary-color);
    position: relative;
}

.store-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    border: 1px solid rgba(27, 79, 140, 0.06);
    pointer-events: none;
}

/* Signage Photo Frame */
.store-signage {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 22px;
    text-align: center;
}

.store-signage::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(91, 191, 83, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.store-signage img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    padding: 12px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.store-signage .open-pill {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: var(--white);
    color: var(--secondary-dark);
    margin: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.store-card-header {
    text-align: center;
    padding: 26px 30px 22px;
    margin: 0;
    border-bottom: 1px dashed var(--border-color);
}

.open-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(91, 191, 83, 0.14);
    color: var(--secondary-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.open-pill .dot {
    width: 9px;
    height: 9px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(91, 191, 83, 0.25);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(91, 191, 83, 0.25); }
    50% { box-shadow: 0 0 0 8px rgba(91, 191, 83, 0.05); }
}

.store-card-header h3 {
    color: var(--primary-color);
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.store-tagline {
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 500;
}

.store-info {
    list-style: none;
    margin: 0;
    padding: 4px 30px 8px;
}

.store-info li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.store-info li:last-child { border-bottom: none; }

.store-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--soft-bg), #d6e8f5);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.store-info li > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.store-info strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-light);
    font-weight: 700;
}

.store-info span,
.store-info a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1.45;
    text-decoration: none;
}

.store-info a:hover { color: var(--secondary-dark); }

.store-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.25s ease;
}

.store-card-cta:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

/* ========== FAQ ========== */
.faq {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 26px;
}

.faq-item {
    background: var(--white);
    padding: 28px 30px;
    border-radius: 14px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 22px rgba(27, 79, 140, 0.1);
    transform: translateX(4px);
    border-left-color: var(--secondary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item h3 i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--text-mid);
    line-height: 1.7;
    font-size: 0.96rem;
}

/* ========== CTA ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.94;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-meta {
    margin-top: 22px;
    font-size: 0.92rem;
    opacity: 0.8;
}

.cta-meta i { color: var(--secondary-color); margin-right: 4px; }

/* ========== FOOTER ========== */
footer {
    background-color: #0c2440;
    color: #d4dfeb;
    padding: 56px 0 22px;
    border-top: 4px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-logo {
    max-width: 140px;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 16px;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #d4dfeb;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

.footer-section a:hover { color: var(--secondary-color); }

.footer-section ul { list-style: none; }

.footer-section ul li {
    padding: 5px 0;
    color: #d4dfeb;
    font-size: 0.93rem;
    position: relative;
    padding-left: 16px;
}

.footer-section ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-section i {
    color: var(--secondary-color);
    margin-right: 8px;
    width: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8aa0b8;
    font-size: 0.88rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }
    .main-nav { order: 3; flex-basis: 100%; justify-content: center; gap: 22px; }
    .contact-header { text-align: center; }
    .visit-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 60px 0 80px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.15rem; }
    .hero-description { font-size: 1rem; }
    .hero-features { gap: 14px; flex-direction: column; align-items: center; }

    .logo img { max-width: 140px; }
    .phone-link { font-size: 1.18rem; }

    .services h2,
    .why-choose h2,
    .industries h2,
    .faq h2,
    .visit-section h2,
    .cta-section h2 { font-size: 1.85rem; }

    .visit-text h2 { font-size: 1.65rem; }

    .services, .why-choose, .industries, .visit-section, .faq, .cta-section { padding: 60px 0; }

    .store-card { padding: 28px 24px; }

    .services-grid, .benefits-grid, .industries-grid, .faq-grid { grid-template-columns: 1fr; }

    .cta-button { font-size: 0.98rem; padding: 14px 28px; }
    .cta-button.large { font-size: 1.05rem; padding: 17px 34px; }

    .footer-content { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero h1 { font-size: 1.8rem; }
    .main-nav { gap: 14px; font-size: 0.9rem; }
    .main-nav a { font-size: 0.9rem; }
}
