/**
 * Painting Empire - Main Stylesheet
 * Version: 0.0.4
 * Design: Lovart Match
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
    /* Colors - Lovart Palette */
    --pe-teal: #2C8C8C;
    --pe-teal-hover: #237070;
    --pe-teal-light: rgba(44, 140, 140, 0.1);
    --pe-navy: #1A344E;
    --pe-navy-90: rgba(26, 52, 78, 0.9);
    --pe-dark-gray: #4A4A4A;
    --pe-medium-gray: #646464;
    --pe-light-gray: #F7FAFC;
    --pe-border-gray: #E2E8F0;
    --pe-white: #FFFFFF;
    --pe-gold: #FFC107;
    --pe-off-white: #FAFAFA;
    
    /* Typography */
    --pe-font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --pe-font-heading: 'Georgia', 'Times New Roman', serif;
    
    /* Spacing */
    --pe-container-max: 1680px;
    --pe-container-padding: 120px;
    
    /* Transitions */
    --pe-transition: all 0.3s ease;
    
    /* Shadows */
    --pe-shadow-sm: 0 2px 20px rgba(0,0,0,0.05);
    --pe-shadow-md: 0 10px 30px rgba(0,0,0,0.05);
    --pe-shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --pe-shadow-btn: 0 4px 15px rgba(44, 140, 140, 0.3);
    
    /* Border Radius */
    --pe-radius-sm: 4px;
    --pe-radius-md: 8px;
    --pe-radius-lg: 12px;
}

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

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

body {
    font-family: var(--pe-font-main);
    color: var(--pe-dark-gray);
    background: var(--pe-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pe-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pe-navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

a {
    color: var(--pe-teal);
    text-decoration: none;
    transition: var(--pe-transition);
}

a:hover { color: var(--pe-teal-hover); }

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

/* ==========================================================================
   Layout
   ========================================================================== */
.pe-container {
    width: 100%;
    max-width: var(--pe-container-max);
    margin: 0 auto;
    padding-left: var(--pe-container-padding);
    padding-right: var(--pe-container-padding);
}

.pe-main {
    min-height: 50vh;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.pe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--pe-font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--pe-radius-sm);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--pe-transition);
}

.pe-btn--primary {
    background: var(--pe-teal);
    color: var(--pe-white);
    box-shadow: var(--pe-shadow-btn);
}

.pe-btn--primary:hover {
    background: var(--pe-teal-hover);
    transform: translateY(-2px);
    color: var(--pe-white);
}

.pe-btn--outline {
    border: 2px solid var(--pe-teal);
    color: var(--pe-teal);
    background: transparent;
}

.pe-btn--outline:hover {
    background: var(--pe-teal);
    color: var(--pe-white);
}

.pe-btn--lg {
    padding: 18px 48px;
    font-size: 18px;
}

.pe-btn--full { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.pe-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--pe-white);
    box-shadow: var(--pe-shadow-sm);
}

.pe-header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 var(--pe-container-padding);
    max-width: 1920px;
    margin: 0 auto;
}

.pe-header__logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pe-logo__image {
    height: 70px;
    width: auto;
}

.pe-logo__image--mobile {
    display: none;
}

.pe-logo__text {
    font-family: var(--pe-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pe-navy);
}

/* Navigation */
.pe-nav__menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pe-nav__menu li a {
    color: var(--pe-dark-gray);
    font-weight: 600;
    font-size: 16px;
    transition: var(--pe-transition);
}

.pe-nav__menu li a:hover,
.pe-nav__menu li.current-menu-item a {
    color: var(--pe-teal);
}

.pe-header__actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.pe-header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--pe-navy);
    font-size: 18px;
}

.pe-header__phone:hover { color: var(--pe-teal); }

.pe-header__phone svg {
    width: 20px;
    height: 20px;
}

/* Mobile Toggle */
.pe-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.pe-header__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--pe-navy);
    transition: var(--pe-transition);
}

/* Mobile Menu */
.pe-mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pe-white);
    z-index: 999;
    padding: 24px;
    overflow-y: auto;
}

.pe-mobile-menu.is-active { display: block; }

.pe-mobile-nav__menu {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.pe-mobile-nav__menu li {
    border-bottom: 1px solid var(--pe-border-gray);
}

.pe-mobile-nav__menu li a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--pe-dark-gray);
}

.pe-mobile-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.pe-hero {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 160px;
    background-image: var(--pe-hero-bg, none);
    background-size: cover;
    background-position: center;
    max-width: 1920px;
    margin: 0 auto;
    gap: 60px;
}

.pe-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.pe-hero__content {
    position: relative;
    z-index: 2;
    width: 50%;
    color: var(--pe-white);
}

.pe-hero__headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--pe-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.pe-hero__subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0.9;
}

.pe-hero__rating {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
}

.pe-hero__stars {
    color: var(--pe-gold);
    font-size: 24px;
    letter-spacing: 2px;
}

/* Hero Form Card */
.pe-hero__form-card {
    position: relative;
    z-index: 2;
    width: 480px;
    background: var(--pe-white);
    padding: 40px;
    border-radius: var(--pe-radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pe-hero__form-title {
    font-size: 28px;
    color: var(--pe-navy);
    margin-bottom: 20px;
    text-align: center;
}

.pe-hero__cta {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.pe-form-group {
    margin-bottom: 20px;
}

.pe-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--pe-medium-gray);
    font-size: 14px;
}

.pe-form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--pe-border-gray);
    border-radius: var(--pe-radius-sm);
    font-size: 16px;
    font-family: var(--pe-font-main);
    color: var(--pe-dark-gray);
    background: #F8FAFC;
    transition: var(--pe-transition);
}

.pe-form-control:focus {
    outline: none;
    border-color: var(--pe-teal);
    background: var(--pe-white);
}

.pe-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form Messages */
.pe-form-message {
    margin-top: 15px;
}

.pe-form-error {
    color: #c53030;
    font-size: 14px;
}

.pe-form-success {
    text-align: center;
    padding: 30px 20px;
}

.pe-form-success__icon {
    width: 60px;
    height: 60px;
    background: var(--pe-teal);
    color: var(--pe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.pe-form-success p {
    color: var(--pe-dark-gray);
    font-size: 16px;
    margin: 0;
}

/* ==========================================================================
   Trust Bar
   ========================================================================== */
.pe-trust-bar {
    background: var(--pe-teal);
    padding: 25px 0;
}

.pe-trust-bar--light {
    background: var(--pe-light-gray);
}

.pe-trust-bar--light .pe-trust-bar__item {
    color: var(--pe-dark-gray);
}

.pe-trust-bar--light .pe-trust-bar__icon {
    background: var(--pe-teal-light);
    color: var(--pe-teal);
}

.pe-trust-bar__container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: var(--pe-container-max);
    margin: 0 auto;
    padding: 0 var(--pe-container-padding);
}

.pe-trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pe-white);
    font-weight: 700;
    font-size: 18px;
}

.pe-trust-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 24px;
}

.pe-trust-bar__icon svg {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.pe-section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pe-section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--pe-navy);
    margin-bottom: 16px;
    white-space: nowrap;
}

.pe-section-header__subtitle {
    font-size: 20px;
    color: var(--pe-medium-gray);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.pe-services {
    padding: 100px 0;
    background: var(--pe-light-gray);
}

.pe-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pe-services-grid--2col {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.pe-services-grid--2col .pe-service-card {
    flex: 1;
    max-width: 380px;
}

.pe-service-card {
    background: var(--pe-white);
    border-radius: var(--pe-radius-md);
    overflow: hidden;
    box-shadow: var(--pe-shadow-md);
    transition: var(--pe-transition);
}

.pe-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--pe-shadow-lg);
}

.pe-service-card__image {
    height: 280px;
    overflow: hidden;
}

.pe-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pe-service-card:hover .pe-service-card__image img {
    transform: scale(1.1);
}

.pe-service-card__content {
    padding: 30px;
}

.pe-service-card__title {
    font-size: 24px;
    color: var(--pe-navy);
    margin-bottom: 12px;
}

.pe-service-card__description {
    color: var(--pe-medium-gray);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.pe-service-card__link {
    font-weight: 700;
    color: var(--pe-teal);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pe-service-card__link:hover { color: var(--pe-teal-hover); }

.pe-service-card__link svg {
    transition: transform 0.3s ease;
}

.pe-service-card__link:hover svg {
    transform: translateX(5px);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.pe-why-us {
    display: flex;
    min-height: 800px;
}

.pe-why-us__image {
    width: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.pe-why-us__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 52, 78, 0.2);
}

.pe-why-us__content {
    width: 50%;
    background: var(--pe-white);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pe-why-us__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--pe-navy);
    margin-bottom: 40px;
}

.pe-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pe-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pe-benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--pe-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pe-teal);
    flex-shrink: 0;
}

.pe-benefit-icon svg {
    width: 18px;
    height: 18px;
}

.pe-benefit-text h4 {
    font-size: 20px;
    font-family: var(--pe-font-main);
    font-weight: 700;
    color: var(--pe-dark-gray);
    margin-bottom: 5px;
}

.pe-benefit-text p {
    color: var(--pe-medium-gray);
    font-size: 16px;
    margin: 0;
}

/* ==========================================================================
   Projects Section
   ========================================================================== */
.pe-projects {
    padding: 100px 0;
    background: var(--pe-off-white);
}

.pe-projects__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 24px;
}

.pe-projects__header-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--pe-navy);
    margin-bottom: 10px;
}

.pe-projects__header-text p {
    font-size: 18px;
    color: var(--pe-medium-gray);
    margin: 0;
}

.pe-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pe-project-card {
    background: var(--pe-white);
    border-radius: var(--pe-radius-lg);
    overflow: hidden;
    box-shadow: var(--pe-shadow-md);
    transition: var(--pe-transition);
}

.pe-project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pe-shadow-lg);
}

.pe-project-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pe-project-card__image {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.pe-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pe-project-card:hover .pe-project-card__image img {
    transform: scale(1.05);
}

.pe-project-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--pe-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pe-project-card__placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--pe-medium-gray);
    opacity: 0.5;
}

.pe-project-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--pe-teal);
    color: var(--pe-white);
    padding: 6px 14px;
    border-radius: var(--pe-radius-sm);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pe-project-card__info {
    padding: 25px;
    border-top: 1px solid #eee;
}

.pe-project-card__title {
    font-size: 22px;
    font-family: var(--pe-font-main);
    font-weight: 700;
    color: var(--pe-dark-gray);
    margin-bottom: 8px;
    transition: var(--pe-transition);
}

.pe-project-card:hover .pe-project-card__title {
    color: var(--pe-teal);
}

.pe-project-card__meta {
    display: flex;
    justify-content: space-between;
    color: var(--pe-medium-gray);
    font-size: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.pe-project-card__meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pe-project-card__meta svg {
    width: 14px;
    height: 14px;
}

/* ==========================================================================
   Page Header
   ========================================================================== */
.pe-page-header {
    padding: 80px 0 60px;
    background: var(--pe-light-gray);
    text-align: center;
}

.pe-page-header__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--pe-navy);
    margin-bottom: 16px;
}

.pe-page-header__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--pe-medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   Past Jobs Section
   ========================================================================== */
.pe-past-jobs-section {
    padding: 60px 0 100px;
    background: var(--pe-white);
}

.pe-past-jobs-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.pe-past-jobs-filters__row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pe-past-jobs-filters__group {
    position: relative;
}

.pe-form-select {
    appearance: none;
    background: var(--pe-white);
    border: 1px solid #ddd;
    border-radius: var(--pe-radius-sm);
    padding: 12px 40px 12px 16px;
    font-size: 15px;
    font-family: var(--pe-font-main);
    color: var(--pe-dark-gray);
    cursor: pointer;
    min-width: 180px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A4A4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: var(--pe-transition);
}

.pe-form-select:hover {
    border-color: var(--pe-teal);
}

.pe-form-select:focus {
    outline: none;
    border-color: var(--pe-teal);
    box-shadow: 0 0 0 3px rgba(44, 140, 140, 0.1);
}

.pe-past-jobs-filters__clear {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--pe-medium-gray);
    font-size: 14px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--pe-radius-sm);
    transition: var(--pe-transition);
}

.pe-past-jobs-filters__clear:hover {
    background: #f5f5f5;
    color: var(--pe-dark-gray);
}

.pe-past-jobs-filters__clear svg {
    width: 14px;
    height: 14px;
}

.pe-past-jobs-filters__count {
    color: var(--pe-medium-gray);
    font-size: 14px;
}

.pe-past-jobs-grid {
    gap: 30px;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pe-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pe-pagination a,
.pe-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 16px;
    border-radius: var(--pe-radius-sm);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--pe-transition);
}

.pe-pagination a {
    background: var(--pe-white);
    color: var(--pe-dark-gray);
    border: 1px solid #ddd;
}

.pe-pagination a:hover {
    background: var(--pe-teal);
    color: var(--pe-white);
    border-color: var(--pe-teal);
}

.pe-pagination .current {
    background: var(--pe-teal);
    color: var(--pe-white);
    border: 1px solid var(--pe-teal);
}

.pe-pagination .prev,
.pe-pagination .next {
    gap: 6px;
}

.pe-pagination .prev svg,
.pe-pagination .next svg {
    width: 16px;
    height: 16px;
}

.pe-pagination .dots {
    border: none;
    background: none;
    color: var(--pe-medium-gray);
}

/* ==========================================================================
   No Results
   ========================================================================== */
.pe-no-results {
    text-align: center;
    padding: 80px 20px;
    background: var(--pe-light-gray);
    border-radius: var(--pe-radius-lg);
}

.pe-no-results__icon {
    width: 80px;
    height: 80px;
    background: var(--pe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pe-no-results__icon svg {
    width: 32px;
    height: 32px;
    color: var(--pe-medium-gray);
}

.pe-no-results h3 {
    font-size: 24px;
    color: var(--pe-navy);
    margin-bottom: 12px;
}

.pe-no-results p {
    color: var(--pe-medium-gray);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Locations Page
   ========================================================================== */

/* Locations Hero */
.pe-locations-hero {
    background: linear-gradient(rgba(26, 52, 78, 0.75), rgba(26, 52, 78, 0.75)), url('') center/cover no-repeat;
    background-color: var(--pe-navy);
    padding: 100px 0;
    text-align: center;
}

.pe-locations-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.pe-locations-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--pe-white);
    margin-bottom: 16px;
}

.pe-locations-hero__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.pe-locations-hero__btn {
    margin-bottom: 40px;
}

.pe-locations-hero__badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.pe-locations-hero__badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pe-white);
    font-size: 16px;
    font-weight: 600;
}

.pe-locations-hero__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.pe-locations-hero__badge svg {
    width: 20px;
    height: 20px;
    color: var(--pe-white);
}

.pe-locations-hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    color: var(--pe-white);
    font-size: 16px;
}

.pe-locations-hero__stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Cities Section */
.pe-locations-cities {
    padding: 80px 0;
    background: var(--pe-white);
}

/* Zip Code Search */
.pe-zip-search {
    max-width: 500px;
    margin: 0 auto 50px;
}

.pe-zip-search__form {
    display: flex;
    gap: 12px;
}

.pe-zip-search__input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.pe-zip-search__input-wrap svg {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: var(--pe-medium-gray);
}

.pe-zip-search__input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e2e8f0;
    border-radius: var(--pe-radius-sm);
    font-size: 16px;
    font-family: var(--pe-font-main);
    transition: var(--pe-transition);
}

.pe-zip-search__input:focus {
    outline: none;
    border-color: var(--pe-teal);
}

.pe-zip-search__input::placeholder {
    color: var(--pe-medium-gray);
}

#pe-zip-search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

#pe-zip-search-btn svg {
    width: 18px;
    height: 18px;
}

.pe-zip-search__result {
    margin-top: 16px;
    padding: 16px 20px;
    border-radius: var(--pe-radius-sm);
    font-size: 15px;
    line-height: 1.5;
}

.pe-zip-search__result--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pe-zip-search__result--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.pe-zip-search__result--info {
    background: #e7f3ff;
    color: #004085;
    border: 1px solid #b8daff;
}

/* Locations Grid */
.pe-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Location Card */
.pe-location-card {
    background: var(--pe-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--pe-radius-md);
    transition: var(--pe-transition);
}

.pe-location-card:hover {
    border-color: var(--pe-teal);
    box-shadow: var(--pe-shadow-md);
}

.pe-location-card--highlighted {
    border-color: var(--pe-teal);
    box-shadow: 0 0 0 3px rgba(44, 140, 140, 0.2);
}

.pe-location-card__link {
    display: block;
    padding: 30px 24px;
    text-decoration: none;
    color: inherit;
}

.pe-location-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(44, 140, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pe-location-card__icon svg {
    width: 20px;
    height: 20px;
    color: var(--pe-teal);
}

.pe-location-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pe-dark-gray);
    margin-bottom: 8px;
    font-family: var(--pe-font-main);
}

.pe-location-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pe-teal);
    transition: var(--pe-transition);
}

.pe-location-card__cta svg {
    width: 14px;
    height: 14px;
    transition: var(--pe-transition);
}

.pe-location-card:hover .pe-location-card__cta {
    gap: 10px;
}

/* Services Section on Locations Page */
.pe-locations-services {
    padding: 80px 0;
    background: var(--pe-light-gray);
}

/* ==========================================================================
   Single Location Page
   ========================================================================== */

/* About This Area Section */
.pe-location-about-area {
    padding: 80px 0;
}

.pe-location-about-area__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pe-location-about-area__image {
    border-radius: var(--pe-radius-lg);
    overflow: hidden;
    box-shadow: var(--pe-shadow-lg);
}

.pe-location-about-area__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.pe-location-about-area__content--full {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
}

.pe-location-about-area__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pe-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.pe-location-about-area__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--pe-dark-gray);
}

.pe-location-about-area__text p {
    margin-bottom: 16px;
}

.pe-location-about-area__text p:last-child {
    margin-bottom: 0;
}

/* Location Intro */
.pe-location-intro {
    padding: 60px 0;
}

.pe-location-intro__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Location Contact Grid */
.pe-location-contact__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.pe-location-contact__map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: var(--pe-radius-md);
}

.pe-contact-card {
    background: var(--pe-white);
    padding: 30px;
    border-radius: var(--pe-radius-md);
    box-shadow: var(--pe-shadow-md);
}

.pe-contact-card__item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--pe-light-gray);
}

.pe-contact-card__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pe-contact-card__item .dashicons {
    color: var(--pe-teal);
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Areas Served */
.pe-areas-served__list h3,
.pe-areas-served__zips h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--pe-navy);
}

.pe-areas-served__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: var(--pe-dark-gray);
}

.pe-areas-served__item .dashicons {
    color: var(--pe-teal);
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.pe-areas-served__zips {
    margin-top: 30px;
}

.pe-areas-served__zips p {
    color: var(--pe-dark-gray);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
    .pe-location-about-area__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pe-location-about-area__image {
        order: -1;
    }
    
    .pe-location-contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .pe-location-about-area {
        padding: 50px 0;
    }
    
    .pe-location-about-area__title {
        font-size: 1.5rem;
    }
    
    .pe-location-about-area__text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Services Archive Page
   ========================================================================== */
.pe-services-archive {
    padding: 80px 0;
}

.pe-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pe-service-archive-card {
    background: var(--pe-white);
    border-radius: var(--pe-radius-md);
    overflow: hidden;
    box-shadow: var(--pe-shadow-sm);
    transition: var(--pe-transition);
}

.pe-service-archive-card:hover {
    box-shadow: var(--pe-shadow-lg);
    transform: translateY(-6px);
}

.pe-service-archive-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pe-service-archive-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--pe-light-gray);
}

.pe-service-archive-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pe-service-archive-card:hover .pe-service-archive-card__image img {
    transform: scale(1.05);
}

.pe-service-archive-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 140, 140, 0.1) 0%, rgba(26, 52, 78, 0.1) 100%);
}

.pe-service-archive-card__placeholder svg {
    width: 60px;
    height: 60px;
    color: var(--pe-teal);
    opacity: 0.5;
}

.pe-service-archive-card__content {
    padding: 24px;
}

.pe-service-archive-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(44, 140, 140, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pe-service-archive-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--pe-teal);
}

.pe-service-archive-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pe-navy);
    margin-bottom: 10px;
    font-family: var(--pe-font-main);
}

.pe-service-archive-card__excerpt {
    font-size: 14px;
    color: var(--pe-medium-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pe-service-archive-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.pe-service-archive-card__price-label {
    font-size: 12px;
    color: var(--pe-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pe-service-archive-card__price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--pe-teal);
}

.pe-service-archive-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pe-teal);
    transition: var(--pe-transition);
}

.pe-service-archive-card__cta svg {
    width: 16px;
    height: 16px;
    transition: var(--pe-transition);
}

.pe-service-archive-card:hover .pe-service-archive-card__cta {
    gap: 12px;
}

.pe-services-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pe-service-icon-card {
    background: var(--pe-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--pe-radius-md);
    padding: 40px 24px;
    text-align: center;
    text-decoration: none;
    transition: var(--pe-transition);
}

.pe-service-icon-card:hover {
    border-color: var(--pe-teal);
    box-shadow: var(--pe-shadow-md);
    transform: translateY(-3px);
}

.pe-service-icon-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(44, 140, 140, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pe-service-icon-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--pe-teal);
}

.pe-service-icon-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--pe-dark-gray);
    margin: 0;
    font-family: var(--pe-font-main);
}

/* ==========================================================================
   Service Page Styles
   ========================================================================== */

/* Service Hero */
.pe-service-hero {
    background: var(--pe-navy);
    background-size: cover;
    background-position: center right;
    padding: 80px 0;
    position: relative;
}

.pe-service-hero__content {
    max-width: 600px;
}

.pe-service-hero__title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    color: var(--pe-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.pe-service-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.pe-service-hero__btn {
    margin-bottom: 24px;
}

.pe-service-hero__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pe-white);
    font-size: 14px;
}

.pe-service-hero__stars {
    display: flex;
    gap: 2px;
}

.pe-service-hero__stars svg {
    width: 16px;
    height: 16px;
    color: #ffc107;
}

/* What's Included */
.pe-service-included {
    padding: 80px 0;
}

.pe-service-included__grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.pe-service-included__content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--pe-navy);
    margin-bottom: 24px;
}

.pe-service-included__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--pe-dark-gray);
}

.pe-service-included__text p {
    margin-bottom: 16px;
}

/* Price Box */
.pe-price-box {
    background: var(--pe-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--pe-radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--pe-shadow-md);
}

.pe-price-box__amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pe-navy);
    font-family: var(--pe-font-heading);
    margin-bottom: 8px;
}

.pe-price-box__note {
    font-size: 14px;
    color: var(--pe-medium-gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Features Checklist */
.pe-service-features {
    padding: 80px 0;
    background: var(--pe-light-gray);
}

.pe-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.pe-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pe-feature-item__icon {
    width: 28px;
    height: 28px;
    background: rgba(44, 140, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pe-feature-item__icon svg {
    width: 14px;
    height: 14px;
    color: var(--pe-teal);
}

.pe-feature-item__text {
    font-size: 15px;
    color: var(--pe-dark-gray);
}

/* Process Timeline */
.pe-service-process {
    padding: 80px 0;
}

.pe-process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
}

.pe-process-timeline::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.pe-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pe-process-step__number {
    width: 32px;
    height: 32px;
    background: var(--pe-teal);
    color: var(--pe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
}

.pe-process-step__image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--pe-light-gray);
    border-radius: var(--pe-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.pe-process-step__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pe-process-step__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pe-process-step__placeholder svg {
    width: 40px;
    height: 40px;
    color: #ccc;
}

.pe-process-step__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pe-navy);
    margin-bottom: 8px;
    font-family: var(--pe-font-main);
}

.pe-process-step__desc {
    font-size: 13px;
    color: var(--pe-medium-gray);
    line-height: 1.5;
}

/* Pricing Table */
.pe-service-pricing {
    padding: 80px 0;
    background: var(--pe-light-gray);
}

.pe-pricing-table-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.pe-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--pe-white);
    border-radius: var(--pe-radius-md);
    overflow: hidden;
    box-shadow: var(--pe-shadow-sm);
}

.pe-pricing-table thead {
    background: var(--pe-teal);
}

.pe-pricing-table th {
    padding: 16px 24px;
    text-align: left;
    color: var(--pe-white);
    font-size: 14px;
    font-weight: 600;
}

.pe-pricing-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    color: var(--pe-dark-gray);
}

.pe-pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pe-pricing-table tbody tr:hover {
    background: rgba(44, 140, 140, 0.03);
}

.pe-pricing-table__note {
    text-align: center;
    font-size: 13px;
    color: var(--pe-medium-gray);
    margin-top: 16px;
    font-style: italic;
}

.pe-pricing-table__cta {
    text-align: center;
    margin-top: 30px;
}

/* Transformations Grid */
.pe-service-transformations {
    padding: 80px 0;
}

.pe-service-transformations__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.pe-service-transformations__header .pe-section-header__title {
    margin-bottom: 8px;
}

.pe-transformations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pe-transformation-card {
    background: var(--pe-white);
    border-radius: var(--pe-radius-md);
    overflow: hidden;
    box-shadow: var(--pe-shadow-sm);
    transition: var(--pe-transition);
}

.pe-transformation-card:hover {
    box-shadow: var(--pe-shadow-md);
    transform: translateY(-4px);
}

.pe-transformation-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pe-transformation-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.pe-transformation-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pe-transformation-card:hover .pe-transformation-card__image img {
    transform: scale(1.05);
}

.pe-transformation-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--pe-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pe-transformation-card__placeholder svg {
    width: 40px;
    height: 40px;
    color: #ccc;
}

.pe-transformation-card__info {
    padding: 20px;
}

.pe-transformation-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--pe-navy);
    margin-bottom: 8px;
    font-family: var(--pe-font-main);
}

.pe-transformation-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--pe-medium-gray);
}

.pe-transformation-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pe-transformation-card__location svg {
    width: 14px;
    height: 14px;
}

/* FAQs Section */
.pe-service-faqs {
    padding: 80px 0;
    background: var(--pe-light-gray);
}

.pe-faqs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.pe-faqs-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pe-faq-item {
    background: var(--pe-white);
    border-radius: var(--pe-radius-sm);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.pe-faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--pe-dark-gray);
    list-style: none;
}

.pe-faq-item__question::-webkit-details-marker {
    display: none;
}

.pe-faq-item__icon {
    transition: transform 0.3s ease;
}

.pe-faq-item__icon svg {
    width: 16px;
    height: 16px;
    color: var(--pe-medium-gray);
}

.pe-faq-item[open] .pe-faq-item__icon {
    transform: rotate(90deg);
}

.pe-faq-item__answer {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--pe-medium-gray);
}

.pe-faq-item__answer p {
    margin: 0;
}

/* Other Services Grid */
.pe-other-services {
    padding: 80px 0;
}

.pe-other-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pe-other-service-card {
    background: var(--pe-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--pe-radius-md);
    padding: 30px 24px;
    text-align: center;
    text-decoration: none;
    transition: var(--pe-transition);
}

.pe-other-service-card:hover {
    border-color: var(--pe-teal);
    box-shadow: var(--pe-shadow-md);
    transform: translateY(-4px);
}

.pe-other-service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(44, 140, 140, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pe-other-service-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--pe-teal);
}

.pe-other-service-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--pe-dark-gray);
    margin-bottom: 8px;
    font-family: var(--pe-font-main);
}

.pe-other-service-card__excerpt {
    font-size: 13px;
    color: var(--pe-medium-gray);
    line-height: 1.5;
    margin-bottom: 16px;
}

.pe-other-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pe-teal);
}

.pe-other-service-card__link svg {
    width: 14px;
    height: 14px;
    transition: var(--pe-transition);
}

.pe-other-service-card:hover .pe-other-service-card__link svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.pe-testimonials {
    padding: 100px 0;
    background: var(--pe-light-gray);
    position: relative;
    overflow: hidden;
}

.pe-testimonials__title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.625rem);
    color: var(--pe-navy);
    margin-bottom: 60px;
}

.pe-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pe-testimonial-card {
    background: var(--pe-white);
    padding: 40px;
    border-radius: var(--pe-radius-md);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pe-testimonial-card__stars {
    color: var(--pe-teal);
    font-size: 20px;
    display: flex;
    gap: 2px;
}

.pe-testimonial-card__stars svg {
    width: 20px;
    height: 20px;
}

.pe-testimonial-card__quote {
    font-size: 18px;
    font-style: italic;
    color: var(--pe-dark-gray);
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

.pe-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.pe-testimonial-card__avatar {
    width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pe-testimonial-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--pe-navy);
    margin-bottom: 2px;
}

.pe-testimonial-card__service {
    font-size: 14px;
    color: var(--pe-medium-gray);
}

/* ==========================================================================
   Service Areas Section
   ========================================================================== */
.pe-service-areas {
    display: flex;
    min-height: 600px;
    background: var(--pe-white);
}

.pe-service-areas__map {
    width: 50%;
    background: #E8EEF2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pe-map-circle {
    position: absolute;
    border: 2px solid rgba(44, 140, 140, 0.3);
    border-radius: 50%;
}

.pe-map-circle--1 { width: 300px; height: 300px; }
.pe-map-circle--2 { width: 500px; height: 500px; }
.pe-map-circle--3 { width: 700px; height: 700px; }

.pe-service-areas__content {
    width: 50%;
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pe-service-areas__title {
    font-size: clamp(2rem, 4vw, 2.625rem);
    color: var(--pe-navy);
    margin-bottom: 16px;
}

.pe-service-areas__subtitle {
    font-size: 18px;
    color: var(--pe-medium-gray);
    margin-bottom: 30px;
}

.pe-areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pe-area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--pe-dark-gray);
    font-weight: 500;
}

.pe-area-item:hover { color: var(--pe-teal); }

.pe-area-item svg {
    color: var(--pe-teal);
    flex-shrink: 0;
}

/* Service Areas Image (replaces map when image is set) */
.pe-service-areas__image {
    width: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Interactive Map with Pins */
.pe-service-areas__map-container {
    width: 50%;
    background: var(--pe-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.pe-service-areas__map-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
}

.pe-service-areas__map-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

/* Map Pin Styles */
.pe-map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 10;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.pe-map-pin:hover {
    transform: translate(-50%, -100%) scale(1.15);
    z-index: 20;
}

.pe-map-pin__icon {
    display: block;
    width: 48px;
    height: auto;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
    transition: filter 0.2s ease;
}

.pe-map-pin:hover .pe-map-pin__icon {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.pe-map-pin__label {
    display: block;
    background: var(--pe-navy);
    color: var(--pe-white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    margin-top: 4px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.2s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}

.pe-map-pin:hover .pe-map-pin__label {
    opacity: 1;
}

a.pe-map-pin:hover .pe-map-pin__label {
    background: var(--pe-teal);
}

/* Default pin styles (fallback circles mode) */
.pe-map-pin-default {
    position: absolute;
    color: var(--pe-teal);
    font-size: 32px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.pe-map-pin-default.pe-map-pin--1 { top: 40%; left: 45%; }
.pe-map-pin-default.pe-map-pin--2 { top: 30%; left: 60%; }
.pe-map-pin-default.pe-map-pin--3 { top: 55%; left: 35%; }
.pe-map-pin-default.pe-map-pin--4 { top: 60%; left: 65%; }

/* Service Areas Text Content (WYSIWYG) */
.pe-service-areas__text {
    font-size: 18px;
    color: var(--pe-medium-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.pe-service-areas__text p {
    margin-bottom: 15px;
}

.pe-service-areas__text ul,
.pe-service-areas__text ol {
    margin: 0 0 20px 0;
    padding-left: 0;
    list-style: none;
}

.pe-service-areas__text li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.pe-service-areas__text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--pe-teal);
    border-radius: 50%;
}

.pe-service-areas__text ol {
    counter-reset: list-counter;
}

.pe-service-areas__text ol li::before {
    counter-increment: list-counter;
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    color: var(--pe-teal);
    font-weight: 600;
}

.pe-service-areas__text a {
    color: var(--pe-teal);
    text-decoration: underline;
}

.pe-service-areas__text a:hover {
    color: var(--pe-navy);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.pe-cta-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: var(--pe-light-gray);
}

.pe-cta-section--has-image {
    background-image: var(--pe-cta-bg);
}

.pe-cta-section--dark {
    background: var(--pe-navy);
}

.pe-cta-section--light {
    background: var(--pe-light-gray);
}

.pe-cta-section--light .pe-cta-section__headline,
.pe-cta-section--light .pe-cta-section__subheadline {
    color: var(--pe-navy);
}

.pe-cta-section--light .pe-cta-section__trust span {
    color: var(--pe-dark-gray);
}

.pe-cta-section--light .pe-cta-phone {
    color: var(--pe-navy);
}

.pe-cta-section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 52, 78, var(--pe-cta-overlay, 0.6));
}

.pe-cta-section--dark:not(.pe-cta-section--has-image)::before {
    background: transparent;
}

@media (max-width: 768px) {
    .pe-cta-section--has-image {
        background-image: var(--pe-cta-bg-mobile, var(--pe-cta-bg));
    }
}

.pe-cta-section__content {
    position: relative;
    z-index: 2;
    color: var(--pe-white);
}

.pe-cta-section__headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--pe-white);
    margin-bottom: 16px;
}

.pe-cta-section__subheadline {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.9;
}

.pe-cta-section__buttons {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.pe-cta-phone {
    color: var(--pe-white);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pe-cta-phone:hover { color: var(--pe-gold); }

.pe-cta-section__trust {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.pe-cta-section__trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.pe-cta-section__trust svg {
    width: 16px;
    height: 16px;
    color: var(--pe-gold);
}

/* ==========================================================================
   Commercial Page Styles
   ========================================================================== */

/* Commercial Hero */
.pe-commercial-hero {
    background: linear-gradient(rgba(26, 52, 78, 0.75), rgba(26, 52, 78, 0.65)), url('') center/cover;
    background-color: var(--pe-navy);
    padding: 100px 0;
    text-align: center;
    color: var(--pe-white);
}

.pe-commercial-hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
}

.pe-commercial-hero__stars {
    display: flex;
    gap: 2px;
}

.pe-commercial-hero__stars svg {
    width: 16px;
    height: 16px;
    color: var(--pe-gold);
}

.pe-commercial-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}

.pe-commercial-hero__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pe-commercial-hero__buttons {
    margin-bottom: 40px;
}

.pe-commercial-hero__benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pe-commercial-hero__benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.pe-commercial-hero__benefit svg {
    width: 24px;
    height: 24px;
    color: var(--pe-teal);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px;
    border-radius: 50%;
    box-sizing: content-box;
}

/* Why Choose Section */
.pe-commercial-why {
    padding: 100px 0;
}

.pe-commercial-why__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.pe-commercial-why__title {
    font-size: 2.25rem;
    color: var(--pe-navy);
    margin-bottom: 40px;
}

.pe-commercial-why__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pe-commercial-why__item {
    display: flex;
    gap: 20px;
}

.pe-commercial-why__icon {
    width: 50px;
    height: 50px;
    background: rgba(44, 140, 140, 0.1);
    color: var(--pe-teal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pe-commercial-why__icon svg {
    width: 24px;
    height: 24px;
}

.pe-commercial-why__text h3 {
    font-size: 1.25rem;
    color: var(--pe-navy);
    margin-bottom: 6px;
    font-weight: 700;
}

.pe-commercial-why__text p {
    color: var(--pe-medium-gray);
    line-height: 1.6;
    font-size: 15px;
}

/* Stats Box */
.pe-commercial-stats {
    background: var(--pe-teal);
    padding: 50px;
    border-radius: 12px;
    color: var(--pe-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow: 0 20px 40px rgba(44, 140, 140, 0.25);
}

.pe-commercial-stats__item {
    text-align: center;
}

.pe-commercial-stats__number {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.pe-commercial-stats__label {
    font-size: 14px;
    opacity: 0.9;
}

/* Industries Section */
.pe-commercial-industries {
    background: var(--pe-light-gray);
    padding: 100px 0;
}

.pe-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pe-industry-card {
    background: var(--pe-white);
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid var(--pe-border);
    text-align: center;
    transition: var(--pe-transition);
}

.pe-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pe-shadow-md);
    border-color: var(--pe-teal);
}

.pe-industry-card__icon {
    margin-bottom: 16px;
}

.pe-industry-card__icon svg {
    width: 36px;
    height: 36px;
    color: var(--pe-teal);
}

.pe-industry-card__title {
    font-size: 1.125rem;
    color: var(--pe-navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.pe-industry-card__desc {
    font-size: 14px;
    color: var(--pe-medium-gray);
    line-height: 1.5;
}

/* Commercial Services Checklist */
.pe-commercial-services {
    padding: 100px 0;
}

.pe-commercial-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.pe-commercial-services__column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pe-service-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    color: var(--pe-dark-gray);
    font-weight: 500;
    padding: 16px 20px;
    background: var(--pe-light-gray);
    border-radius: 6px;
    transition: var(--pe-transition);
}

.pe-service-check-item:hover {
    background: rgba(44, 140, 140, 0.1);
    color: var(--pe-teal);
}

.pe-service-check-item svg {
    width: 20px;
    height: 20px;
    color: var(--pe-teal);
    flex-shrink: 0;
}

/* Case Studies / Project Cards */
.pe-commercial-projects {
    background: var(--pe-light-gray);
    padding: 100px 0;
}

.pe-case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pe-case-card {
    background: var(--pe-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--pe-shadow-sm);
    transition: var(--pe-transition);
}

.pe-case-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pe-shadow-lg);
}

.pe-case-card__image {
    height: 240px;
    overflow: hidden;
}

.pe-case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pe-case-card:hover .pe-case-card__image img {
    transform: scale(1.05);
}

.pe-case-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 140, 140, 0.1) 0%, rgba(26, 52, 78, 0.1) 100%);
}

.pe-case-card__placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--pe-teal);
    opacity: 0.4;
}

.pe-case-card__content {
    padding: 28px;
}

.pe-case-card__tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pe-teal);
    font-weight: 700;
    margin-bottom: 10px;
}

.pe-case-card__title {
    font-size: 1.25rem;
    color: var(--pe-navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.pe-case-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--pe-medium-gray);
    margin-bottom: 16px;
}

.pe-case-card__location svg {
    width: 14px;
    height: 14px;
}

.pe-case-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pe-teal);
    text-decoration: none;
    transition: var(--pe-transition);
}

.pe-case-card__link:hover {
    gap: 10px;
}

.pe-case-card__link svg {
    width: 14px;
    height: 14px;
}

/* Commercial Form Section */
.pe-commercial-form-section {
    padding: 100px 0;
}

.pe-commercial-form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.pe-commercial-form-box {
    background: var(--pe-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--pe-border);
    box-shadow: var(--pe-shadow-md);
}

.pe-commercial-form .pe-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pe-commercial-form .pe-form-group {
    margin-bottom: 20px;
}

.pe-commercial-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--pe-navy);
    margin-bottom: 8px;
}

.pe-commercial-form .pe-form-control,
.pe-commercial-form .pe-form-select,
.pe-commercial-form .pe-form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--pe-border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--pe-transition);
}

.pe-commercial-form .pe-form-control:focus,
.pe-commercial-form .pe-form-select:focus,
.pe-commercial-form .pe-form-textarea:focus {
    outline: none;
    border-color: var(--pe-teal);
    box-shadow: 0 0 0 3px rgba(44, 140, 140, 0.15);
}

.pe-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pe-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--pe-dark-gray);
    cursor: pointer;
}

.pe-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--pe-teal);
}

.pe-btn--full {
    width: 100%;
}

.pe-form-note {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--pe-medium-gray);
}

/* Form Sidebar */
.pe-commercial-form-sidebar {
    background: var(--pe-light-gray);
    padding: 32px;
    border-radius: 12px;
}

.pe-commercial-form-sidebar h3 {
    font-size: 1.25rem;
    color: var(--pe-navy);
    margin-bottom: 20px;
}

.pe-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pe-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--pe-border);
    font-size: 15px;
    color: var(--pe-dark-gray);
}

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

.pe-trust-list svg {
    width: 18px;
    height: 18px;
    color: var(--pe-teal);
}

.pe-commercial-form-sidebar__contact {
    background: var(--pe-white);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.pe-commercial-form-sidebar__contact p {
    font-size: 14px;
    color: var(--pe-medium-gray);
    margin-bottom: 8px;
}

.pe-commercial-form-sidebar__phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pe-teal);
    text-decoration: none;
    margin-bottom: 8px;
}

.pe-commercial-form-sidebar__phone:hover {
    color: var(--pe-navy);
}

.pe-text-small {
    font-size: 13px;
    color: var(--pe-medium-gray);
}

/* Commercial Testimonials */
.pe-commercial-testimonials {
    background: var(--pe-light-gray);
    padding: 100px 0;
}

.pe-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pe-testimonial-card {
    background: var(--pe-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--pe-shadow-sm);
}

.pe-testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.pe-testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    color: var(--pe-gold);
}

.pe-testimonial-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--pe-dark-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.pe-testimonial-card__author {
    font-weight: 700;
    color: var(--pe-navy);
    font-size: 15px;
}

.pe-testimonial-card__author span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: var(--pe-medium-gray);
    margin-top: 4px;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Contact Hero */
.pe-contact-hero {
    background: var(--pe-navy);
    padding: 80px 0;
    text-align: center;
}

.pe-contact-hero__title {
    font-size: 2.75rem;
    color: var(--pe-white);
    margin-bottom: 16px;
}

.pe-contact-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.pe-contact-content {
    padding: 80px 0;
}

.pe-contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.pe-contact-form-wrap h2 {
    font-size: 1.75rem;
    color: var(--pe-navy);
    margin-bottom: 8px;
}

.pe-contact-form__intro {
    color: var(--pe-medium-gray);
    margin-bottom: 30px;
}

.pe-contact-form {
    background: var(--pe-white);
}

.pe-form-row {
    margin-bottom: 20px;
}

.pe-form-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pe-form-group label {
    display: block;
    font-weight: 600;
    color: var(--pe-navy);
    margin-bottom: 8px;
    font-size: 14px;
}

.pe-form-group label .required {
    color: #e74c3c;
}

.pe-form-group input,
.pe-form-group select,
.pe-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: var(--pe-radius-sm);
    font-size: 15px;
    font-family: var(--pe-font-main);
    transition: var(--pe-transition);
}

.pe-form-group input:focus,
.pe-form-group select:focus,
.pe-form-group textarea:focus {
    outline: none;
    border-color: var(--pe-teal);
    box-shadow: 0 0 0 3px rgba(44, 140, 140, 0.1);
}

.pe-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.pe-contact-form__status {
    padding: 16px 20px;
    border-radius: var(--pe-radius-sm);
    margin-top: 20px;
    font-size: 15px;
}

.pe-contact-form__status--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pe-contact-form__status--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Info Sidebar */
.pe-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pe-contact-info__card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--pe-light-gray);
    border-radius: var(--pe-radius-md);
}

.pe-contact-info__icon {
    width: 48px;
    height: 48px;
    background: var(--pe-teal);
    color: var(--pe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pe-contact-info__icon svg {
    width: 22px;
    height: 22px;
}

.pe-contact-info__content h3 {
    font-size: 1rem;
    color: var(--pe-navy);
    margin-bottom: 6px;
}

.pe-contact-info__link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--pe-teal);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.pe-contact-info__link[href^="mailto"] {
    font-size: 15px;
    word-break: break-word;
}

.pe-contact-info__link:hover {
    text-decoration: underline;
}

.pe-contact-info__content p,
.pe-contact-info__hours,
.pe-contact-info__address {
    font-size: 14px;
    color: var(--pe-medium-gray);
    line-height: 1.6;
    font-style: normal;
}

.pe-contact-info__cta {
    background: linear-gradient(135deg, var(--pe-navy) 0%, #2c5a7c 100%);
    padding: 28px;
    border-radius: var(--pe-radius-md);
    text-align: center;
}

.pe-contact-info__cta h3 {
    font-size: 1.25rem;
    color: var(--pe-white);
    margin-bottom: 8px;
}

.pe-contact-info__cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Contact Map */
.pe-contact-map {
    background: var(--pe-light-gray);
}

.pe-contact-map__embed {
    height: 400px;
}

.pe-contact-map__embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */

.pe-404 {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--pe-light-gray) 0%, var(--pe-white) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.pe-404__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pe-404__icon {
    width: 100px;
    height: 100px;
    background: var(--pe-navy);
    color: var(--pe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.pe-404__icon svg {
    width: 50px;
    height: 50px;
}

.pe-404__title {
    font-size: 2.5rem;
    color: var(--pe-navy);
    margin-bottom: 16px;
}

.pe-404__message {
    font-size: 1.125rem;
    color: var(--pe-medium-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.pe-404__search {
    margin-bottom: 40px;
}

.pe-404__search-wrap {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--pe-radius-md);
    overflow: hidden;
    box-shadow: var(--pe-shadow-md);
}

.pe-404__search-wrap input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 15px;
    font-family: var(--pe-font-main);
}

.pe-404__search-wrap input:focus {
    outline: none;
}

.pe-404__search-wrap button {
    padding: 14px 20px;
    background: var(--pe-teal);
    color: var(--pe-white);
    border: none;
    cursor: pointer;
    transition: var(--pe-transition);
}

.pe-404__search-wrap button:hover {
    background: var(--pe-navy);
}

.pe-404__search-wrap button svg {
    width: 20px;
    height: 20px;
}

.pe-404__links {
    margin-bottom: 40px;
}

.pe-404__links > p {
    font-size: 14px;
    color: var(--pe-medium-gray);
    margin-bottom: 16px;
}

.pe-404__links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pe-404__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 16px;
    background: var(--pe-white);
    border-radius: var(--pe-radius-md);
    box-shadow: var(--pe-shadow-sm);
    text-decoration: none;
    color: var(--pe-navy);
    font-weight: 600;
    font-size: 14px;
    transition: var(--pe-transition);
}

.pe-404__link:hover {
    transform: translateY(-3px);
    box-shadow: var(--pe-shadow-md);
    color: var(--pe-teal);
}

.pe-404__link svg {
    width: 28px;
    height: 28px;
    color: var(--pe-teal);
}

.pe-404__cta {
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.pe-404__cta > p {
    font-size: 15px;
    color: var(--pe-medium-gray);
    margin-bottom: 20px;
}

.pe-404__cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   Blog Styles
   ========================================================================== */

/* Blog Hero */
.pe-blog-hero {
    background: var(--pe-navy);
    padding: 60px 0;
    text-align: center;
}

.pe-blog-hero__title {
    font-size: 2.5rem;
    color: var(--pe-white);
    margin-bottom: 12px;
}

.pe-blog-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Content */
.pe-blog-content {
    padding: 60px 0 100px;
}

.pe-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pe-blog-card {
    background: var(--pe-white);
    border-radius: var(--pe-radius-md);
    overflow: hidden;
    box-shadow: var(--pe-shadow-sm);
    transition: var(--pe-transition);
}

.pe-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pe-shadow-lg);
}

.pe-blog-card__image {
    display: block;
    height: 200px;
    overflow: hidden;
}

.pe-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--pe-transition);
}

.pe-blog-card:hover .pe-blog-card__image img {
    transform: scale(1.05);
}

.pe-blog-card__content {
    padding: 24px;
}

.pe-blog-card__meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
}

.pe-blog-card__date {
    color: var(--pe-medium-gray);
}

.pe-blog-card__cat {
    color: var(--pe-teal);
    font-weight: 600;
}

.pe-blog-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.pe-blog-card__title a {
    color: var(--pe-navy);
    text-decoration: none;
}

.pe-blog-card__title a:hover {
    color: var(--pe-teal);
}

.pe-blog-card__excerpt {
    font-size: 15px;
    color: var(--pe-medium-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pe-blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pe-teal);
    text-decoration: none;
}

.pe-blog-card__link:hover {
    color: var(--pe-navy);
}

.pe-blog-card__link svg {
    width: 14px;
    height: 14px;
}

/* Blog Empty */
.pe-blog-empty {
    text-align: center;
    padding: 60px 20px;
}

.pe-blog-empty h2 {
    color: var(--pe-navy);
    margin-bottom: 12px;
}

.pe-blog-empty p {
    color: var(--pe-medium-gray);
    margin-bottom: 24px;
}

/* Pagination */
.pe-pagination {
    display: flex;
    justify-content: center;
}

.pe-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pe-pagination a,
.pe-pagination span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--pe-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--pe-radius-sm);
    font-size: 14px;
    color: var(--pe-navy);
    text-decoration: none;
    transition: var(--pe-transition);
}

.pe-pagination a:hover {
    background: var(--pe-teal);
    border-color: var(--pe-teal);
    color: var(--pe-white);
}

.pe-pagination .current {
    background: var(--pe-navy);
    border-color: var(--pe-navy);
    color: var(--pe-white);
}

.pe-pagination svg {
    width: 14px;
    height: 14px;
}

/* Single Post Hero */
.pe-post-hero {
    background: var(--pe-navy);
    padding: 60px 0;
    text-align: center;
}

.pe-post-hero__meta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.pe-post-hero__date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.pe-post-hero__cat {
    color: var(--pe-teal);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(44, 140, 140, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
}

.pe-post-hero__cat:hover {
    background: var(--pe-teal);
    color: var(--pe-white);
}

.pe-post-hero__title {
    font-size: 2.25rem;
    color: var(--pe-white);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Single Post Content */
.pe-post-content {
    padding: 60px 0 100px;
}

.pe-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

/* Post Article */
.pe-post-article__featured {
    border-radius: var(--pe-radius-md);
    overflow: hidden;
    margin-bottom: 40px;
}

.pe-post-article__featured img {
    width: 100%;
    height: auto;
}

.pe-post-article__body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--pe-dark-gray);
}

.pe-post-article__body h2 {
    font-size: 1.5rem;
    color: var(--pe-navy);
    margin-top: 40px;
    margin-bottom: 16px;
}

.pe-post-article__body h3 {
    font-size: 1.25rem;
    color: var(--pe-navy);
    margin-top: 32px;
    margin-bottom: 12px;
}

.pe-post-article__body p {
    margin-bottom: 20px;
}

.pe-post-article__body ul,
.pe-post-article__body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.pe-post-article__body li {
    margin-bottom: 8px;
}

.pe-post-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--pe-radius-sm);
}

.pe-post-article__body blockquote {
    margin: 30px 0;
    padding: 24px 30px;
    background: var(--pe-light-gray);
    border-left: 4px solid var(--pe-teal);
    font-style: italic;
    font-size: 1.125rem;
}

.pe-post-article__body a {
    color: var(--pe-teal);
}

/* Post Tags */
.pe-post-article__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.pe-post-article__tags > span {
    font-weight: 600;
    color: var(--pe-navy);
}

.pe-post-article__tags a {
    padding: 6px 14px;
    background: var(--pe-light-gray);
    border-radius: 20px;
    font-size: 13px;
    color: var(--pe-medium-gray);
    text-decoration: none;
    transition: var(--pe-transition);
}

.pe-post-article__tags a:hover {
    background: var(--pe-teal);
    color: var(--pe-white);
}

/* Post Navigation */
.pe-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.pe-post-nav__link {
    display: block;
    padding: 20px;
    background: var(--pe-light-gray);
    border-radius: var(--pe-radius-md);
    text-decoration: none;
    transition: var(--pe-transition);
}

.pe-post-nav__link:hover {
    background: var(--pe-navy);
}

.pe-post-nav__link:hover .pe-post-nav__label,
.pe-post-nav__link:hover .pe-post-nav__title {
    color: var(--pe-white);
}

.pe-post-nav__link--next {
    text-align: right;
}

.pe-post-nav__label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--pe-medium-gray);
    margin-bottom: 6px;
    transition: var(--pe-transition);
}

.pe-post-nav__link--next .pe-post-nav__label {
    justify-content: flex-end;
}

.pe-post-nav__label svg {
    width: 14px;
    height: 14px;
}

.pe-post-nav__title {
    font-weight: 600;
    color: var(--pe-navy);
    line-height: 1.4;
    transition: var(--pe-transition);
}

/* Post Sidebar */
.pe-post-sidebar {
    position: sticky;
    top: 30px;
}

.pe-sidebar-cta {
    background: linear-gradient(135deg, var(--pe-navy) 0%, #2c5a7c 100%);
    padding: 30px;
    border-radius: var(--pe-radius-md);
    text-align: center;
    margin-bottom: 30px;
}

.pe-sidebar-cta h3 {
    color: var(--pe-white);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.pe-sidebar-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.pe-sidebar-cta__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--pe-white);
    text-decoration: none;
    font-weight: 600;
}

.pe-sidebar-cta__phone svg {
    width: 18px;
    height: 18px;
}

.pe-sidebar-section {
    background: var(--pe-light-gray);
    padding: 24px;
    border-radius: var(--pe-radius-md);
    margin-bottom: 20px;
}

.pe-sidebar-section h3 {
    font-size: 1rem;
    color: var(--pe-navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--pe-teal);
}

/* Sidebar Recent Posts */
.pe-sidebar-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pe-sidebar-posts li {
    margin-bottom: 16px;
}

.pe-sidebar-posts li:last-child {
    margin-bottom: 0;
}

.pe-sidebar-posts a {
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.pe-sidebar-posts__thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--pe-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.pe-sidebar-posts__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pe-sidebar-posts__content {
    flex: 1;
}

.pe-sidebar-posts__title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--pe-navy);
    line-height: 1.4;
    margin-bottom: 4px;
    transition: var(--pe-transition);
}

.pe-sidebar-posts a:hover .pe-sidebar-posts__title {
    color: var(--pe-teal);
}

.pe-sidebar-posts__date {
    font-size: 12px;
    color: var(--pe-medium-gray);
}

/* Sidebar Categories */
.pe-sidebar-cats {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pe-sidebar-cats li {
    margin-bottom: 10px;
}

.pe-sidebar-cats a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--pe-dark-gray);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--pe-transition);
}

.pe-sidebar-cats a:hover {
    color: var(--pe-teal);
}

.pe-sidebar-cats span {
    font-size: 13px;
    color: var(--pe-medium-gray);
}

/* ==========================================================================
   Careers Page
   ========================================================================== */

/* Careers Hero */
.pe-careers-hero {
    background: var(--pe-navy);
    padding: 80px 0;
    text-align: center;
}

.pe-careers-hero__title {
    font-size: 2.75rem;
    color: var(--pe-white);
    margin-bottom: 16px;
}

.pe-careers-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Careers Intro */
.pe-careers-intro {
    padding: 80px 0;
}

.pe-careers-intro__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pe-careers-intro__text {
    font-size: 1.125rem;
    color: var(--pe-dark-gray);
    line-height: 1.8;
}

/* Benefits Section */
.pe-careers-benefits {
    background: var(--pe-light-gray);
    padding: 80px 0;
}

.pe-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pe-benefit-card {
    background: var(--pe-white);
    padding: 40px 30px;
    border-radius: var(--pe-radius-md);
    text-align: center;
    box-shadow: var(--pe-shadow-sm);
    transition: var(--pe-transition);
}

.pe-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pe-shadow-lg);
}

.pe-benefit-card__icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pe-teal) 0%, #3a9d9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pe-benefit-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--pe-white);
}

.pe-benefit-card__title {
    font-size: 1.125rem;
    color: var(--pe-navy);
    margin-bottom: 10px;
}

.pe-benefit-card__desc {
    font-size: 14px;
    color: var(--pe-medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Positions Section */
.pe-careers-positions {
    padding: 80px 0;
}

.pe-careers-positions__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.pe-careers-positions__intro {
    font-size: 1.125rem;
    color: var(--pe-medium-gray);
}

.pe-positions-list {
    max-width: 900px;
    margin: 0 auto;
}

.pe-position-card {
    background: var(--pe-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--pe-radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.pe-position-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
}

.pe-position-card__info {
    flex: 1;
}

.pe-position-card__title {
    font-size: 1.25rem;
    color: var(--pe-navy);
    margin-bottom: 8px;
}

.pe-position-card__meta {
    display: flex;
    gap: 20px;
}

.pe-position-card__type,
.pe-position-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--pe-medium-gray);
}

.pe-position-card__type svg,
.pe-position-card__location svg {
    width: 16px;
    height: 16px;
}

.pe-position-card__toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--pe-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--pe-transition);
}

.pe-position-card__toggle svg {
    width: 20px;
    height: 20px;
    color: var(--pe-navy);
    transition: var(--pe-transition);
}

.pe-position-card__toggle:hover {
    background: var(--pe-teal);
}

.pe-position-card__toggle:hover svg {
    color: var(--pe-white);
}

.pe-position-card.is-open .pe-position-card__toggle svg {
    transform: rotate(180deg);
}

.pe-position-card__details {
    display: none;
    padding: 0 30px 30px;
    border-top: 1px solid #e2e8f0;
}

.pe-position-card.is-open .pe-position-card__details {
    display: block;
}

.pe-position-card__desc {
    font-size: 15px;
    color: var(--pe-dark-gray);
    line-height: 1.7;
    padding-top: 24px;
    margin-bottom: 20px;
}

.pe-position-card__requirements h4 {
    font-size: 14px;
    color: var(--pe-navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pe-position-card__requirements ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.pe-position-card__requirements li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--pe-dark-gray);
}

.pe-position-card__requirements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--pe-teal);
    border-radius: 50%;
}

.pe-positions-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--pe-light-gray);
    border-radius: var(--pe-radius-md);
}

.pe-positions-empty p {
    color: var(--pe-medium-gray);
    font-size: 1.125rem;
}

/* Careers CTA */
.pe-careers-cta {
    background: var(--pe-light-gray);
    padding: 80px 0;
}

.pe-careers-cta__card {
    background: var(--pe-white);
    border-radius: var(--pe-radius-lg);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--pe-shadow-lg);
}

.pe-careers-cta__title {
    font-size: 2rem;
    color: var(--pe-navy);
    margin-bottom: 16px;
}

.pe-careers-cta__text {
    font-size: 1.125rem;
    color: var(--pe-dark-gray);
    margin-bottom: 30px;
}

.pe-careers-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pe-careers-cta__actions .pe-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pe-careers-cta__actions .pe-btn svg {
    width: 20px;
    height: 20px;
}

.pe-careers-cta__email {
    font-size: 14px;
    color: var(--pe-medium-gray);
}

.pe-careers-cta__email a {
    color: var(--pe-teal);
    font-weight: 600;
}

/* ==========================================================================
   Legal Pages (Privacy Policy, Terms of Service)
   ========================================================================== */

/* Legal Hero */
.pe-legal-hero {
    background: var(--pe-navy);
    padding: 60px 0;
    text-align: center;
}

.pe-legal-hero__title {
    font-size: 2.5rem;
    color: var(--pe-white);
    margin-bottom: 12px;
}

.pe-legal-hero__updated {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Legal Content */
.pe-legal-content {
    padding: 60px 0 100px;
}

.pe-legal-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.pe-legal-intro {
    font-size: 1.125rem;
    color: var(--pe-dark-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.pe-legal-text h2 {
    font-size: 1.5rem;
    color: var(--pe-navy);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 20px;
}

.pe-legal-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
}

.pe-legal-text h3 {
    font-size: 1.125rem;
    color: var(--pe-navy);
    margin-top: 24px;
    margin-bottom: 12px;
}

.pe-legal-text p {
    font-size: 16px;
    color: var(--pe-dark-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.pe-legal-text ul,
.pe-legal-text ol {
    margin: 0 0 20px 0;
    padding-left: 24px;
}

.pe-legal-text li {
    font-size: 16px;
    color: var(--pe-dark-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

.pe-legal-text strong {
    color: var(--pe-navy);
}

.pe-legal-text a {
    color: var(--pe-teal);
    text-decoration: underline;
}

.pe-legal-text a:hover {
    color: var(--pe-navy);
}

.pe-legal-contact {
    background: var(--pe-light-gray);
    padding: 24px 30px;
    border-radius: var(--pe-radius-md);
    margin-top: 30px;
}

.pe-legal-contact p {
    margin-bottom: 8px;
}

.pe-legal-contact p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* About Story Section */
.pe-about-story {
    padding: 100px 0;
}

.pe-about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pe-about-story__title {
    font-size: 2.25rem;
    color: var(--pe-navy);
    margin-bottom: 24px;
}

.pe-about-story__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--pe-dark-gray);
    margin-bottom: 32px;
}

.pe-about-story__text p {
    margin-bottom: 16px;
}

.pe-about-mission {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(44, 140, 140, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--pe-teal);
}

.pe-about-mission__icon {
    width: 50px;
    height: 50px;
    background: var(--pe-teal);
    color: var(--pe-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pe-about-mission__icon svg {
    width: 24px;
    height: 24px;
}

.pe-about-mission__content h3 {
    font-size: 1.125rem;
    color: var(--pe-navy);
    margin-bottom: 8px;
}

.pe-about-mission__content p {
    font-size: 15px;
    color: var(--pe-dark-gray);
    line-height: 1.6;
    margin: 0;
}

.pe-about-story__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--pe-shadow-lg);
}

.pe-about-story__image img {
    width: 100%;
    height: auto;
    display: block;
}

.pe-about-story__placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(44, 140, 140, 0.1) 0%, rgba(26, 52, 78, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pe-about-story__placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--pe-teal);
    opacity: 0.3;
}

/* About Stats Section */
.pe-about-stats {
    background: var(--pe-teal);
    padding: 60px 0;
}

.pe-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.pe-about-stat__number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--pe-white);
    line-height: 1;
    margin-bottom: 8px;
}

.pe-about-stat__label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

/* About Values Section */
.pe-about-values {
    padding: 100px 0;
    background: var(--pe-light-gray);
}

.pe-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pe-value-card {
    background: var(--pe-white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--pe-shadow-sm);
    transition: var(--pe-transition);
}

.pe-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pe-shadow-md);
}

.pe-value-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(44, 140, 140, 0.1);
    color: var(--pe-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pe-value-card__icon svg {
    width: 28px;
    height: 28px;
}

.pe-value-card__title {
    font-size: 1.125rem;
    color: var(--pe-navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.pe-value-card__desc {
    font-size: 14px;
    color: var(--pe-medium-gray);
    line-height: 1.6;
}

/* About Process Section */
.pe-about-process {
    padding: 100px 0;
}

.pe-about-process__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.pe-about-process__timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--pe-teal) 0%, rgba(44, 140, 140, 0.3) 100%);
    border-radius: 3px;
    z-index: 0;
}

.pe-process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pe-process-step__number {
    width: 60px;
    height: 60px;
    background: var(--pe-teal);
    color: var(--pe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(44, 140, 140, 0.3);
}

.pe-process-step__title {
    font-size: 1.125rem;
    color: var(--pe-navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.pe-process-step__desc {
    font-size: 14px;
    color: var(--pe-medium-gray);
    line-height: 1.6;
}

/* About Testimonials */
.pe-about-testimonials {
    background: var(--pe-light-gray);
    padding: 100px 0;
}

/* About Service Areas */
.pe-about-areas {
    padding: 100px 0;
}

.pe-about-areas__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pe-about-areas__content h2 {
    font-size: 2rem;
    color: var(--pe-navy);
    margin-bottom: 20px;
}

.pe-about-areas__content > p {
    font-size: 17px;
    color: var(--pe-dark-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.pe-about-areas__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.pe-about-areas__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--pe-light-gray);
    border-radius: 8px;
    font-size: 15px;
    color: var(--pe-dark-gray);
    text-decoration: none;
    transition: var(--pe-transition);
}

.pe-about-areas__item:hover {
    background: rgba(44, 140, 140, 0.1);
    color: var(--pe-teal);
}

.pe-about-areas__item svg {
    width: 16px;
    height: 16px;
    color: var(--pe-teal);
}

.pe-about-areas__image {
    text-align: center;
}

.pe-about-areas__image img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.pe-footer {
    background: var(--pe-navy);
    color: #B0BEC5;
}

.pe-footer__main {
    padding: 80px 80px 60px;
    max-width: 1920px;
    margin: 0 auto;
}

.pe-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.pe-footer__brand {
    padding-right: 40px;
}

.pe-footer__logo-image {
    height: 120px;
    margin-bottom: 24px;
    width: auto;
    max-width: 100%;
}

/* Show desktop logo by default */
.pe-footer__logo-desktop {
    display: block;
}

/* Hide mobile logo by default - only show if explicitly has mobile version */
.pe-footer__logo-mobile {
    display: none;
}

.pe-footer__logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--pe-white);
    display: block;
    margin-bottom: 24px;
}

.pe-footer__tagline {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #B0BEC5;
}

.pe-footer__contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pe-footer__contact-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
}

.pe-footer__contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #fff;
}

.pe-footer__contact-list li a { 
    color: #fff;
    transition: var(--pe-transition);
}

.pe-footer__contact-list li a:hover { 
    color: var(--pe-teal); 
}

.pe-footer__address span {
    color: #fff;
    line-height: 1.5;
}

.pe-footer__heading {
    color: var(--pe-white);
    font-size: 18px;
    font-family: var(--pe-font-main);
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pe-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pe-footer__menu li { margin-bottom: 15px; }

.pe-footer__menu a {
    color: #B0BEC5;
    transition: var(--pe-transition);
    font-size: 16px;
}

.pe-footer__menu a:hover { color: var(--pe-teal); }

/* Social Icons Grid */
.pe-footer__social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 200px;
}

.pe-footer__social-link {
    width: 44px;
    height: 44px;
    background: var(--pe-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pe-white);
    transition: var(--pe-transition);
}

.pe-footer__social-link:hover {
    background: #2dd4bf;
    transform: translateY(-2px);
}

.pe-footer__social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Bottom */
.pe-footer__bottom {
    border-top: 3px solid var(--pe-teal);
    padding: 30px 80px;
    font-size: 14px;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.pe-footer__copyright {
    color: #B0BEC5;
}

.pe-footer__legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pe-footer__legal a {
    color: #B0BEC5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pe-footer__legal a:hover {
    color: var(--pe-teal);
}

.pe-footer__legal-separator {
    color: #B0BEC5;
    opacity: 0.5;
}

.pe-footer__separator { opacity: 0.5; }

/* ==========================================================================
   Quote Form Section
   ========================================================================== */
.pe-quote-form-section {
    padding: 100px 0;
    background: var(--pe-light-gray);
}

.pe-quote-form {
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.pe-faq-section {
    padding: 100px 0;
}

.pe-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.pe-faq-item {
    border-bottom: 1px solid var(--pe-border-gray);
}

.pe-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--pe-navy);
    cursor: pointer;
    text-align: left;
}

.pe-faq-icon {
    font-size: 24px;
    color: var(--pe-teal);
    transition: var(--pe-transition);
}

.pe-faq-question[aria-expanded="true"] .pe-faq-icon {
    transform: rotate(45deg);
}

.pe-faq-answer {
    display: none;
    padding-bottom: 24px;
    color: var(--pe-medium-gray);
    line-height: 1.8;
}

.pe-faq-question[aria-expanded="true"] + .pe-faq-answer {
    display: block;
}

/* ==========================================================================
   Process Steps
   ========================================================================== */
.pe-process-section {
    padding: 100px 0;
    background: var(--pe-light-gray);
}

.pe-process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.pe-process-step {
    flex: 1;
    text-align: center;
}

.pe-process-step__number {
    width: 60px;
    height: 60px;
    background: var(--pe-teal);
    color: var(--pe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.pe-process-step__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.pe-process-step__description {
    color: var(--pe-medium-gray);
    font-size: 16px;
}

/* ==========================================================================
   Pricing Table
   ========================================================================== */
.pe-pricing-section {
    padding: 100px 0;
}

.pe-pricing-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
}

.pe-pricing-table th,
.pe-pricing-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--pe-border-gray);
}

.pe-pricing-table th {
    background: var(--pe-light-gray);
    font-weight: 700;
    color: var(--pe-navy);
}

.pe-pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--pe-teal);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.pe-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   Responsive - Large Desktop (1440px)
   ========================================================================== */
@media (max-width: 1440px) {
    :root {
        --pe-container-padding: 80px;
    }
    
    .pe-hero {
        min-height: 700px;
    }
    
    .pe-hero__form-card {
        width: 420px;
        padding: 30px;
    }
}

/* ==========================================================================
   Responsive - Desktop (1200px)
   ========================================================================== */
@media (max-width: 1200px) {
    :root {
        --pe-container-padding: 60px;
    }
    
    .pe-hero {
        padding: 60px 80px;
    }
    
    .pe-trust-bar__container {
        gap: 40px;
    }
    
    .pe-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-services-grid--2col {
        flex-wrap: wrap;
    }
    
    .pe-services-grid--2col .pe-service-card {
        width: calc(50% - 15px);
    }
    
    .pe-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .pe-footer__brand {
        padding-right: 20px;
    }
    
    .pe-footer__social-column {
        grid-column: span 1;
    }
    
    .pe-footer__main {
        padding: 70px 60px 50px;
    }
    
    .pe-footer__bottom {
        padding: 25px 60px;
    }
    
    .pe-why-us__content {
        padding: 60px 50px;
    }
    
    .pe-service-areas__content {
        padding: 60px;
    }
}

/* ==========================================================================
   Responsive - Tablet (992px)
   ========================================================================== */
@media (max-width: 992px) {
    :root {
        --pe-container-padding: 40px;
    }
    
    .pe-section-header__title {
        white-space: normal;
    }
    
    /* Commercial Page Tablet */
    .pe-commercial-why__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pe-commercial-stats {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pe-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-commercial-services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pe-case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-commercial-form-layout {
        grid-template-columns: 1fr;
    }
    
    .pe-commercial-form-sidebar {
        order: -1;
    }
    
    .pe-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Page Tablet */
    .pe-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pe-contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pe-contact-info__cta {
        grid-column: span 2;
    }
    
    /* Blog Tablet */
    .pe-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-post-layout {
        grid-template-columns: 1fr 300px;
        gap: 30px;
    }
    
    /* Careers Tablet */
    .pe-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Page Tablet */
    .pe-about-story__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pe-about-story__image {
        order: -1;
    }
    
    .pe-about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .pe-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-about-process__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .pe-about-process__timeline::before {
        display: none;
    }
    
    .pe-about-areas__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pe-about-areas__image {
        order: -1;
    }
    
    /* Locations Grid Tablet */
    .pe-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Service Page Tablet */
    .pe-service-included__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pe-process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pe-process-timeline::before {
        top: 35px;
        left: 15%;
        right: 15%;
    }
    
    .pe-transformations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-other-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-header__main {
        height: 80px;
    }
    
    .pe-nav {
        display: none;
    }
    
    .pe-header__toggle {
        display: flex;
    }
    
    .pe-header__phone {
        display: none;
    }
    
    .pe-header__cta {
        display: none;
    }
    
    .pe-hero {
        flex-direction: column;
        min-height: auto;
        padding: 60px var(--pe-container-padding);
        gap: 40px;
    }
    
    .pe-hero__content {
        width: 100%;
        text-align: center;
    }
    
    .pe-hero__rating {
        justify-content: center;
    }
    
    .pe-hero__form-card {
        width: 100%;
        max-width: 500px;
    }
    
    .pe-trust-bar__container {
        gap: 30px;
    }
    
    .pe-trust-bar__item {
        font-size: 16px;
    }
    
    .pe-why-us {
        flex-direction: column;
        min-height: auto;
    }
    
    .pe-why-us__image {
        width: 100%;
        height: 400px;
    }
    
    .pe-why-us__content {
        width: 100%;
        padding: 60px var(--pe-container-padding);
    }
    
    .pe-service-areas {
        flex-direction: column;
        min-height: auto;
    }
    
    .pe-service-areas__map {
        width: 100%;
        height: 300px;
    }
    
    .pe-service-areas__map-container {
        width: 100%;
        padding: 30px 20px;
    }
    
    .pe-service-areas__content {
        width: 100%;
        padding: 60px var(--pe-container-padding);
    }
    
    .pe-process-steps {
        flex-wrap: wrap;
    }
    
    .pe-process-step {
        flex: 0 0 calc(50% - 15px);
    }
}

/* ==========================================================================
   Responsive - Mobile Landscape (768px)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --pe-container-padding: 24px;
    }
    
    /* Hide header CTA on mobile */
    .pe-header__cta {
        display: none !important;
    }
    
    /* Commercial Page Mobile */
    .pe-commercial-hero {
        padding: 60px 0;
    }
    
    .pe-commercial-hero__benefits {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .pe-commercial-why,
    .pe-commercial-industries,
    .pe-commercial-services,
    .pe-commercial-projects,
    .pe-commercial-form-section,
    .pe-commercial-testimonials {
        padding: 60px 0;
    }
    
    .pe-commercial-stats {
        grid-template-columns: 1fr 1fr;
        padding: 30px;
        gap: 24px;
    }
    
    .pe-commercial-stats__number {
        font-size: 2rem;
    }
    
    .pe-industries-grid {
        grid-template-columns: 1fr;
    }
    
    .pe-case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .pe-commercial-form .pe-form-row {
        grid-template-columns: 1fr;
    }
    
    .pe-commercial-form-box {
        padding: 24px;
    }
    
    .pe-checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pe-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page Mobile */
    .pe-contact-hero {
        padding: 60px 0;
    }
    
    .pe-contact-hero__title {
        font-size: 2rem;
    }
    
    .pe-contact-content {
        padding: 60px 0;
    }
    
    .pe-form-row--2col {
        grid-template-columns: 1fr;
    }
    
    .pe-contact-info {
        grid-template-columns: 1fr;
    }
    
    .pe-contact-info__cta {
        grid-column: span 1;
    }
    
    .pe-contact-map__embed {
        height: 300px;
    }
    
    /* 404 Page Mobile */
    .pe-404 {
        padding: 60px 0;
    }
    
    .pe-404__icon {
        width: 80px;
        height: 80px;
    }
    
    .pe-404__icon svg {
        width: 40px;
        height: 40px;
    }
    
    .pe-404__title {
        font-size: 1.75rem;
    }
    
    .pe-404__links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pe-404__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pe-404__cta-buttons .pe-btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Blog Mobile */
    .pe-blog-hero {
        padding: 40px 0;
    }
    
    .pe-blog-hero__title {
        font-size: 1.75rem;
    }
    
    .pe-blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pe-blog-content {
        padding: 40px 0 60px;
    }
    
    .pe-post-hero__title {
        font-size: 1.5rem;
    }
    
    .pe-post-layout {
        grid-template-columns: 1fr;
    }
    
    .pe-post-sidebar {
        position: static;
    }
    
    .pe-post-nav {
        grid-template-columns: 1fr;
    }
    
    .pe-post-article__body {
        font-size: 16px;
    }
    
    /* Careers Mobile */
    .pe-careers-hero {
        padding: 50px 0;
    }
    
    .pe-careers-hero__title {
        font-size: 1.75rem;
    }
    
    .pe-careers-hero__subtitle {
        font-size: 1rem;
    }
    
    .pe-careers-intro,
    .pe-careers-benefits,
    .pe-careers-positions,
    .pe-careers-cta {
        padding: 50px 0;
    }
    
    .pe-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pe-benefit-card {
        padding: 30px 20px;
    }
    
    .pe-position-card__header {
        padding: 20px;
    }
    
    .pe-position-card__meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .pe-position-card__details {
        padding: 0 20px 20px;
    }
    
    .pe-careers-cta__card {
        padding: 40px 24px;
    }
    
    .pe-careers-cta__title {
        font-size: 1.5rem;
    }
    
    .pe-careers-cta__actions {
        flex-direction: column;
    }
    
    .pe-careers-cta__actions .pe-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Legal Page Mobile */
    .pe-legal-hero {
        padding: 40px 0;
    }
    
    .pe-legal-hero__title {
        font-size: 1.75rem;
    }
    
    .pe-legal-content {
        padding: 40px 0 60px;
    }
    
    .pe-legal-text h2 {
        font-size: 1.25rem;
    }
    
    /* About Page Mobile */
    .pe-about-story,
    .pe-about-values,
    .pe-about-process,
    .pe-about-testimonials,
    .pe-about-areas {
        padding: 60px 0;
    }
    
    .pe-about-stats {
        padding: 40px 0;
    }
    
    .pe-about-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .pe-about-stat__number {
        font-size: 2.25rem;
    }
    
    .pe-values-grid {
        grid-template-columns: 1fr;
    }
    
    .pe-about-process__timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pe-about-areas__list {
        grid-template-columns: 1fr;
    }
    
    .pe-header__main {
        height: 70px;
        padding: 0 24px;
    }
    
    .pe-logo__image {
        height: 50px;
    }
    
    /* Mobile logo switching - only when mobile logo exists */
    .has-mobile-logo .pe-logo__image--desktop {
        display: none;
    }
    
    .has-mobile-logo .pe-logo__image--mobile {
        display: block;
    }
    
    /* Footer logo mobile switching - only hide desktop if mobile exists */
    .pe-footer__logo-desktop.has-mobile-logo {
        display: none;
    }
    
    .pe-footer__logo-mobile {
        display: block;
    }
    
    .pe-footer__logo-image {
        height: 100px;
        margin: 0 auto 24px;
    }
    
    /* Switch to mobile hero image if available */
    .pe-hero {
        background-image: var(--pe-hero-bg-mobile, var(--pe-hero-bg, none));
    }
    
    .pe-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pe-services-grid--2col {
        flex-direction: column;
    }
    
    .pe-services-grid--2col .pe-service-card {
        width: 100%;
    }
    
    .pe-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .pe-project-card__image {
        height: 300px;
    }
    
    .pe-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pe-trust-bar__container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .pe-areas-list {
        grid-template-columns: 1fr;
    }
    
    .pe-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pe-footer__social-grid {
        justify-content: center;
        margin: 0 auto;
    }
    
    .pe-footer__brand {
        padding-right: 0;
    }
    
    .pe-footer__main {
        padding: 60px 30px 40px;
    }
    
    .pe-footer__bottom {
        padding: 25px 30px;
    }
    
    .pe-footer__contact-list {
        display: inline-block;
        text-align: left;
    }
    
    .pe-footer__contact-list li {
        justify-content: flex-start;
    }
    
    .pe-cta-section__buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .pe-form-row {
        grid-template-columns: 1fr;
    }
    
    .pe-quote-form {
        padding: 30px;
    }
    
    .pe-process-steps {
        flex-direction: column;
    }
    
    .pe-process-step {
        flex: 1;
    }
    
    /* Page Header Mobile */
    .pe-page-header {
        padding: 50px 0 40px;
    }
    
    .pe-page-header__title {
        font-size: 2rem;
    }
    
    /* Past Jobs Filters Mobile */
    .pe-past-jobs-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pe-past-jobs-filters__row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pe-form-select {
        width: 100%;
        min-width: unset;
    }
    
    .pe-past-jobs-filters__count {
        text-align: center;
    }
    
    /* Past Jobs Grid Mobile */
    .pe-past-jobs-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pagination Mobile */
    .pe-pagination {
        gap: 4px;
    }
    
    .pe-pagination a,
    .pe-pagination span {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 14px;
    }
    
    /* Locations Page Mobile */
    .pe-locations-hero {
        padding: 60px 0;
    }
    
    .pe-locations-hero__badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .pe-zip-search__form {
        flex-direction: column;
    }
    
    .pe-locations-grid {
        grid-template-columns: 1fr;
    }
    
    .pe-services-icon-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .pe-service-icon-card {
        padding: 24px 16px;
    }
    
    /* Service Page Mobile */
    .pe-service-hero {
        padding: 60px 0;
    }
    
    .pe-service-hero__title {
        font-size: 1.75rem;
    }
    
    .pe-service-included__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pe-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .pe-process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pe-process-timeline::before {
        display: none;
    }
    
    .pe-process-step__number {
        margin-bottom: 12px;
    }
    
    .pe-pricing-table th,
    .pe-pricing-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .pe-service-transformations__header {
        flex-direction: column;
        gap: 20px;
    }
    
    .pe-transformations-grid {
        grid-template-columns: 1fr;
    }
    
    .pe-faqs-grid {
        grid-template-columns: 1fr;
    }
    
    .pe-other-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pe-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Responsive - Mobile Portrait (480px)
   ========================================================================== */
@media (max-width: 480px) {
    :root {
        --pe-container-padding: 16px;
    }
    
    .pe-hero__headline {
        font-size: 2rem;
    }
    
    .pe-hero__form-card {
        padding: 24px;
    }
    
    .pe-hero__form-title {
        font-size: 22px;
    }
    
    .pe-service-card__image {
        height: 200px;
    }
    
    .pe-service-card__content {
        padding: 24px;
    }
    
    .pe-service-card__title {
        font-size: 20px;
    }
    
    .pe-testimonial-card {
        padding: 24px;
    }
    
    .pe-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .pe-btn--lg {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .pe-header,
    .pe-footer,
    .pe-mobile-menu,
    .pe-hero__form-card,
    .pe-cta-section,
    .pe-btn {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .pe-hero::before {
        display: none;
    }
}
