/* ============================================
   PESTCONTROLSYD - PREMIUM DESIGN (REFINED)
   Mobile-First Responsive Stylesheet
   (Layout/spacing intentionally preserved)
   ============================================ */

/* CSS Variables */
:root {
    --primary-red: #C41E3A;
    --dark-red: #7F111A;
    --light-red: #FF4858;

    --white: #FFFFFF;
    --off-white: #F7F7F8;
    --light-gray: #E6E7EA;
    --gray: #8B9098;
    --dark-gray: #2B2F36;
    --black: #090A0D;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Crimson Pro', serif;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Premium shadow system */
    --shadow: 0 10px 30px rgba(9, 10, 13, 0.08);
    --shadow-hover: 0 16px 50px rgba(9, 10, 13, 0.12);

    /* Premium accents */
    --ring: 0 0 0 4px rgba(196, 30, 58, 0.15);
    --hairline: 1px solid rgba(9, 10, 13, 0.08);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

a { color: inherit; text-decoration: none; }

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: var(--hairline);
    transition: var(--transition);
}

.header-alt { background: var(--white); }

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo a { display: flex; flex-direction: column; }

.logo-main {
    font-family: var(--font-display);
    font-size: 30px; /* slightly safer for "Pest Control" on mobile */
    color: var(--black);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.logo-sub {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: -4px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

/* Desktop Navigation */
.desktop-nav { display: none; gap: 35px; align-items: center; }
.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    position: relative;
    transition: var(--transition-fast);
    opacity: 0.92;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    transition: var(--transition);
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

@media (min-width: 768px) {
    .menu-toggle { display: none; }
    .desktop-nav { display: flex; }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    z-index: 2000;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.close-menu {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 40px;
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}
.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--dark-gray);
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-red);
    transform: translateX(10px);
}
.mobile-menu-cta { margin-top: 40px; }

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    z-index: 0;
}
.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: 56px;
    line-height: 0.9;
    margin-bottom: 30px;
    color: var(--black);
}
.title-line { display: block; animation: fadeInUp 0.8s ease-out both; }
.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) {
    animation-delay: 0.4s;
    background: linear-gradient(90deg, var(--primary-red), var(--light-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@media (min-width: 768px) {
    .hero-title { font-size: 96px; }
    .hero-cta { flex-direction: row; justify-content: center; gap: 20px; }
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.stat { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary-red);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(9, 10, 13, 0.12);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}
.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ============================================
   BUTTONS & CTAs (premium finish)
   ============================================ */

.cta-button,
.cta-button-secondary,
.cta-button-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px; /* more premium */
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    white-space: nowrap;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    box-shadow: var(--shadow);
}
.cta-button:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-red);
    border: 1px solid rgba(196, 30, 58, 0.25);
    gap: 8px;
}
.cta-button-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.cta-button-alt {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-red);
    border: 1px solid rgba(9, 10, 13, 0.10);
}
.cta-button-alt:hover {
    border-color: rgba(196, 30, 58, 0.35);
    box-shadow: var(--shadow);
}

.phone-icon { font-size: 20px; }

/* ============================================
   SECTIONS
   ============================================ */

section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--black);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .section-title { font-size: 56px; }
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */

.services-preview { background: var(--off-white); }

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(9, 10, 13, 0.08);
    box-shadow: 0 0 0 rgba(0,0,0,0);
}
.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: rgba(196, 30, 58, 0.25);
}

.service-icon { font-size: 48px; margin-bottom: 20px; display: block; }
.service-name { font-size: 24px; margin-bottom: 15px; color: var(--black); }
.service-desc { font-size: 16px; color: var(--gray); margin-bottom: 20px; line-height: 1.6; }

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}
.service-link:hover {
    color: var(--dark-red);
    transform: translateX(5px);
    display: inline-block;
}

.services-cta { text-align: center; }

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }

.process-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(9, 10, 13, 0.08);
    transition: var(--transition);
}
.process-card:hover {
    border-color: rgba(196, 30, 58, 0.25);
    box-shadow: var(--shadow);
}

.process-number {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--primary-red);
    opacity: 0.18;
    line-height: 1;
    margin-bottom: 20px;
}
.process-title { font-size: 28px; margin-bottom: 15px; color: var(--black); }
.process-desc { font-size: 16px; color: var(--gray); line-height: 1.7; }

/* ============================================
   WHY SECTION
   ============================================ */

.why-section { background: var(--off-white); }

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
@media (min-width: 900px) { .why-content { grid-template-columns: 1fr 1fr; } }

.why-list { list-style: none; margin: 30px 0 40px; }
.why-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}
.list-icon {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
}

.why-image { position: relative; }

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--black) 0%, #1B1F27 100%);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.image-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(196, 30, 58, 0.28), transparent 55%),
                radial-gradient(circle at 80% 70%, rgba(255, 72, 88, 0.18), transparent 60%);
    opacity: 0.9;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, #131722 100%);
    color: var(--white);
    text-align: center;
}
.cta-title { font-size: 42px; margin-bottom: 20px; color: var(--white); }
.cta-text { font-size: 18px; margin-bottom: 40px; opacity: 0.9; }

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
@media (min-width: 600px) { .cta-buttons { flex-direction: row; } }

.cta-section .cta-button {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
}
.cta-section .cta-button:hover { transform: translateY(-2px); }

.cta-section .cta-button-alt {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
}
.cta-section .cta-button-alt:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-content { grid-template-columns: 2fr 1fr 1fr; } }

.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.6); }

.footer-desc { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

.footer-title { font-size: 18px; margin-bottom: 20px; color: var(--white); }

.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.65); transition: var(--transition-fast); }
.footer-nav a:hover { color: var(--light-red); }

.footer-contact { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact p { margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: var(--transition-fast); }
.footer-contact a:hover { color: var(--light-red); }

.license { font-size: 12px; opacity: 0.7; margin-top: 15px; }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.55); }

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */

.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    text-align: center;
}

.page-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.page-title { font-size: 48px; color: var(--black); margin-bottom: 20px; }
.page-subtitle { font-size: 18px; color: var(--gray); }
@media (min-width: 768px) { .page-title { font-size: 72px; } }

/* ============================================
   SERVICES DETAIL
   ============================================ */

.services-detail-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .services-detail-grid { grid-template-columns: repeat(2, 1fr); } }

.service-detail-card {
    background: var(--white);
    border: 1px solid rgba(9, 10, 13, 0.08);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}
.service-detail-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(196, 30, 58, 0.25);
}

.service-detail-icon { font-size: 56px; margin-bottom: 20px; }

.service-detail-title { font-size: 28px; margin-bottom: 15px; color: var(--black); }
.service-detail-desc { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }

.service-features { list-style: none; margin-bottom: 25px; }
.service-features li {
    font-size: 14px;
    color: var(--dark-gray);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.service-detail-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    display: inline-block;
}
.service-detail-link:hover { color: var(--dark-red); transform: translateX(5px); }

/* Additional Services */
.additional-services { background: var(--off-white); }

.additional-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .additional-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .additional-grid { grid-template-columns: repeat(4, 1fr); } }

.additional-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(9, 10, 13, 0.08);
    transition: var(--transition);
}
.additional-card:hover { border-color: rgba(196, 30, 58, 0.25); box-shadow: var(--shadow); }
.additional-card h4 { font-size: 20px; margin-bottom: 10px; color: var(--black); }
.additional-card p { font-size: 14px; color: var(--gray); }

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-story { padding: 80px 0; }
.about-text { max-width: 800px; margin: 0 auto 60px; }
.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .about-stats-grid { grid-template-columns: repeat(4, 1fr); } }

.about-stat-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(9, 10, 13, 0.06);
}
.about-stat-card:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}
.about-stat-card:hover .about-stat-number,
.about-stat-card:hover .about-stat-label { color: var(--white); }

.about-stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 10px;
    transition: var(--transition);
}
.about-stat-label { font-size: 14px; color: var(--gray); transition: var(--transition); }

/* Approach Section */
.approach-section { background: var(--off-white); }

.approach-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .approach-grid { grid-template-columns: repeat(3, 1fr); } }

.approach-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(9, 10, 13, 0.08);
    transition: var(--transition);
}
.approach-card:hover { border-color: rgba(196, 30, 58, 0.25); box-shadow: var(--shadow); }

.approach-icon { font-size: 48px; margin-bottom: 20px; }
.approach-title { font-size: 24px; margin-bottom: 15px; color: var(--black); }
.approach-desc { font-size: 16px; color: var(--gray); line-height: 1.7; }

/* Certifications Section */
.certifications-section { padding: 80px 0; }

.certifications-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
@media (min-width: 900px) { .certifications-content { grid-template-columns: 1fr 1fr; } }

.credentials-list { list-style: none; margin-top: 30px; }
.credentials-list li {
    font-size: 16px;
    color: var(--dark-gray);
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}
.credentials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 20px;
}

.cert-badge {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-hover);
}
.cert-badge-inner { text-align: center; color: var(--white); }
.cert-icon { font-size: 72px; margin-bottom: 15px; }
.cert-text { font-family: var(--font-display); font-size: 32px; letter-spacing: 0.05em; }
.cert-number { font-family: var(--font-body); font-size: 18px; margin-top: 10px; }

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section { padding: 80px 0; }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 60px; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1.5fr 1fr; } }

.contact-form-wrapper {
    background: var(--off-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(9, 10, 13, 0.06);
}

.form-title { font-size: 32px; margin-bottom: 10px; color: var(--black); }
.form-subtitle { font-size: 16px; color: var(--gray); margin-bottom: 30px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    font-family: var(--font-body);
    font-size: 16px;
    border: 1px solid rgba(9, 10, 13, 0.10);
    border-radius: 10px;
    background: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(196, 30, 58, 0.55);
    box-shadow: var(--ring);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit { width: 100%; margin-top: 10px; }

.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}
.form-message.success {
    background: #E9F8EE;
    color: #155724;
    border: 1px solid #BFE9CD;
}

/* Error state used by JS */
.error {
    border-color: rgba(196, 30, 58, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.12) !important;
}

/* Contact Info Cards */
.contact-info-wrapper { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
    background: var(--white);
    border: 1px solid rgba(9, 10, 13, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition);
}
.contact-info-card:hover {
    border-color: rgba(196, 30, 58, 0.25);
    box-shadow: var(--shadow);
}

.contact-info-card.emergency {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border: none;
}

.info-title { font-size: 20px; margin-bottom: 10px; color: var(--black); }
.contact-info-card.emergency .info-title,
.contact-info-card.emergency .info-desc { color: var(--white); }

.info-desc { font-size: 14px; color: var(--gray); margin-bottom: 15px; }

.info-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}
.info-link:hover { color: var(--dark-red); }

.info-icon { font-size: 24px; }
.info-hours { font-size: 14px; color: var(--gray); line-height: 1.7; }

.contact-info-card.emergency .cta-button-alt {
    background: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
    width: 100%;
}

/* FAQ Section */
.faq-section { background: var(--off-white); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(9, 10, 13, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: rgba(196, 30, 58, 0.35); }

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}
.faq-question:hover { color: var(--primary-red); }

.faq-toggle {
    font-size: 28px;
    color: var(--primary-red);
    transition: var(--transition);
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer p {
    padding: 0 20px 20px;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   ANIMATIONS (unchanged)
   ============================================ */

[data-animation] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
[data-animation].animated { opacity: 1; transform: translateY(0); }

[data-animation="fade-left"] { transform: translateX(30px); }
[data-animation="fade-left"].animated { transform: translateX(0); }

/* ============================================
   RESPONSIVE UTILITIES (unchanged)
   ============================================ */

@media (max-width: 600px) {
    .hero-title { font-size: 48px; }
    .section-title { font-size: 36px; }
    .page-title { font-size: 42px; }
}