/* ==========================================================================
   Hub City Electricians LLC - Main Stylesheet
   Brand Colors:
   - Primary Blue: #003078 (60%)
   - Accent Yellow: #FFCC00 (30%)
   - Dark Neutral: #333333 (10%)
   - Light Neutral: #F5F5F5 (background)
   - White: #FFFFFF (text/background)
   Fonts:
   - Headings: Poppins, sans-serif
   - Body: Lato, sans-serif
   ========================================================================== */

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    background-color: #F5F5F5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #003078;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #FFCC00;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #003078;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #333333;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FFCC00;
    transition: all 0.2s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #003078;
}

.nav-phone {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #003078;
    padding: 0.5rem 1rem;
    border: 2px solid #003078;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-phone:hover {
    background-color: #003078;
    color: #FFFFFF;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #003078;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #003078;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.8s ease-out;
}

.hero:hover .hero-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 48, 120, 0.85) 0%, rgba(0, 48, 120, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #FFFFFF;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #FFCC00;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: #FFCC00;
    color: #333333;
    border-color: #FFCC00;
}

.btn-primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #333333;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #003078;
}

.btn-accent {
    background-color: #FFCC00;
    color: #333333;
    border-color: #FFCC00;
}

.btn-accent:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    color: #333333;
}

.btn-outline {
    background-color: transparent;
    color: #003078;
    border-color: #003078;
}

.btn-outline:hover {
    background-color: #003078;
    color: #FFFFFF;
}

.btn-outline-light {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-outline-light:hover {
    background-color: #FFFFFF;
    color: #003078;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: #FFFFFF;
}

.section-alt {
    background-color: #F5F5F5;
}

.section-alt::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 48, 120, 0.1), transparent);
}

.section-primary {
    background-color: #003078;
    color: #FFFFFF;
}

.section-primary h1,
.section-primary h2,
.section-primary h3 {
    color: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-title.light {
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-primary .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Reviews CTA Section
   ========================================================================== */
.reviews-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.reviews-cta-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reviews-cta-content h2 {
    margin-bottom: 1rem;
}

.reviews-cta-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background-color: #FFFFFF;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.service-card:hover .service-icon {
    transform: translateX(-50%) rotate(5deg);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    margin-top: 3rem;
    padding: 0 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 1rem 1.5rem;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #003078;
    font-weight: bold;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-link {
    display: block;
    text-align: center;
    padding: 1rem;
    background-color: #003078;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.service-link:hover {
    background-color: #00255c;
    color: #FFFFFF;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: #FFCC00;
    color: #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* ==========================================================================
   Mission Section
   ========================================================================== */
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-text blockquote {
    border-left: 4px solid #FFCC00;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-text blockquote p {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FFCC00;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial footer {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #003078;
}

.testimonials-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.partner-logo img {
    height: 60px;
    width: auto;
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
}

.blog-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #003078;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.blog-link:hover::after {
    transform: translateX(5px);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Page Header
   ========================================================================== */
.page-header {
    background: linear-gradient(135deg, #003078 0%, #00255c 100%);
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ==========================================================================
   Service Detail Pages
   ========================================================================== */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detailed.reverse {
    direction: rtl;
}

.service-detailed.reverse > * {
    direction: ltr;
}

.service-detailed-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
}

.service-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-detailed-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-detailed-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #003078;
    font-weight: bold;
}

/* Service Detail Pages - Individual */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    color: #555;
}

.service-detail-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-detail-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.service-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #003078;
    font-weight: bold;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #003078;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential {
    text-align: center;
    padding: 1.5rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.credential h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #003078;
}

.credential p {
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat {
    padding: 2rem;
}

.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #FFCC00;
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.team-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.team-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-value {
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.team-value h3 {
    color: #003078;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #003078;
}

.contact-link {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #003078;
}

.contact-link:hover {
    color: #FFCC00;
}

.contact-method p {
    color: #666;
    margin-top: 0.25rem;
}

.hours {
    font-weight: 600;
}

.hours-note {
    font-size: 0.9rem;
    color: #003078;
}

.service-area {
    font-style: italic;
}

.social-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-cta h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #003078;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: #FFCC00;
    transform: scale(1.1);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #003078;
    box-shadow: 0 0 0 3px rgba(0, 48, 120, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.show {
    display: block;
}

.form-success h3 {
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-area-info {
    text-align: center;
}

.area-list {
    display: inline-block;
    text-align: left;
}

.area-list h3 {
    margin-bottom: 1rem;
}

.area-list ul {
    list-style: none;
    columns: 2;
    gap: 2rem;
}

.area-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.area-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
}

/* ==========================================================================
   Blog Page
   ========================================================================== */
.blog-grid-large {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-card-large:nth-child(even) {
    direction: rtl;
}

.blog-card-large:nth-child(even) > * {
    direction: ltr;
}

.blog-card-large .blog-image {
    height: 100%;
    min-height: 300px;
}

.blog-card-large .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-large .blog-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
}

.blog-category {
    background-color: #003078;
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.blog-card-large h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    margin: 1.5rem 0;
}

.blog-excerpt h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.blog-excerpt ul {
    list-style: none;
    margin-bottom: 1rem;
}

.blog-excerpt li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.25rem;
}

.blog-excerpt li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #003078;
    font-weight: bold;
}

/* ==========================================================================
   Reviews Page
   ========================================================================== */
.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #003078;
    line-height: 1;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    color: #666;
}

.stars {
    color: #FFCC00;
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.reviews-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.review-card.featured {
    border-left: 4px solid #FFCC00;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-source {
    font-size: 0.875rem;
    color: #666;
}

.review-card p {
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

.review-card footer {
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #003078;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #003078;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-phone {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFCC00;
}

.footer-phone:hover {
    color: #FFFFFF;
}

.footer-email {
    color: rgba(255, 255, 255, 0.8);
}

.footer-email:hover {
    color: #FFCC00;
}

.footer-hours p {
    opacity: 0.9;
}

.footer-links h3,
.footer-legal h3,
.footer-social h3 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #FFCC00;
}

.footer-social .social-links {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #FFFFFF;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    color: #FFCC00;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-serving {
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-phone {
        display: none;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-cta,
    .mission-content,
    .about-grid,
    .service-detailed,
    .service-detail,
    .contact-grid,
    .blog-card-large {
        grid-template-columns: 1fr;
    }
    
    .service-detailed.reverse,
    .service-detail.reverse {
        direction: ltr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
    
    .team-values {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        gap: 1.5rem;
    }
    
    .partner-logo img {
        height: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reviews-stats {
        gap: 2rem;
    }
    
    .reviews-grid,
    .reviews-grid-small {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .area-list ul {
        columns: 1;
    }
    
    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .blog-card-large .blog-content {
        padding: 1.5rem;
    }
    
    .blog-card-large h2 {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Accessibility - Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-image {
        transform: none !important;
    }
    
    .process-step {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center {
    text-align: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
