/* One Electric - Professional Electrical Contractor Site
   Design: Industrial-Professional with refined utility aesthetic
   Colors: Black/Teal with clean accents
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Brand Colors - Original One Electric */
    --primary-teal: #00CED1;
    --teal-dark: #008B8B;
    --teal-light: #40E0D0;
    --teal-subtle: #E0FFFE;
    
    /* Neutrals */
    --black: #0F172A;
    --gray-900: #1E293B;
    --gray-700: #334155;
    --gray-500: #64748B;
    --gray-300: #CBD5E1;
    --gray-100: #F1F5F9;
    --white: #FFFFFF;
    
    /* Functional */
    --emergency-red: #DC2626;
    --success-green: #059669;
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.section--gray {
    background: var(--gray-100);
}

.section--dark {
    background: var(--black);
    color: var(--white);
}

.section--dark h2,
.section--dark h3 {
    color: var(--white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow var(--transition-base);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 32px;
}

/* Mobile: reorder so toggle is first */
@media (max-width: 768px) {
    .header__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 16px;
    }
    
    .nav-toggle {
        order: -1;
    }
    
    .logo {
        justify-self: center;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
}

.logo__icon {
    width: 36px;
    height: 36px;
    color: var(--primary-teal);
}

.logo span {
    color: var(--primary-teal);
}

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

.nav__link {
    padding: 10px 16px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--primary-teal);
    background: var(--teal-subtle);
}

.nav__link.active {
    color: var(--primary-teal);
}

.header__cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--black);
    transition: color var(--transition-fast);
}

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

.header__phone svg {
    width: 20px;
    height: 20px;
    color: var(--primary-teal);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-base);
}

.btn svg {
    width: 18px;
    height: 18px;
}

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

.btn--primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.4);
}

.btn--secondary {
    background: var(--white);
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn--secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
}

.btn--dark {
    background: var(--black);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn--white {
    background: var(--white);
    color: var(--black);
}

.btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero__visual-icon {
    width: 220px;
    height: 220px;
    color: var(--primary-teal);
    opacity: 0.2;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero__visual-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px solid var(--primary-teal);
    border-radius: 50%;
    opacity: 0.15;
    animation: ring-pulse 3s ease-in-out infinite;
}

.hero__visual-ring:nth-child(2) {
    width: 360px;
    height: 360px;
    opacity: 0.08;
    animation-delay: 0.5s;
}

.hero__visual-ring:nth-child(3) {
    width: 440px;
    height: 440px;
    opacity: 0.04;
    animation-delay: 1s;
}

.hero__services {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 380px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero__service-tag {
    background: rgba(0, 206, 209, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 206, 209, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal-light);
    white-space: nowrap;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    background: rgba(8, 145, 178, 0.2);
    border: 1px solid rgba(8, 145, 178, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--teal-light);
}

.hero__badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--teal-light);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--gray-300);
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--success-green);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

.section--dark .section-header p {
    color: var(--gray-300);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 12px 40px rgba(0, 206, 209, 0.15);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-subtle);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--primary-teal);
}

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

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-card .btn {
    width: 100%;
}

.service-card--featured {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.08) 0%, rgba(0, 139, 139, 0.08) 100%);
    border: 2px solid var(--primary-teal);
    position: relative;
}

.service-card--featured::before {
    content: 'Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-teal);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card--featured .service-card__icon {
    background: var(--primary-teal);
    color: var(--white);
}

/* ============================================
   FEATURES / WHY CHOOSE
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature {
    text-align: center;
    padding: 24px;
}

.feature__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--teal-subtle);
    border-radius: 16px;
    color: var(--primary-teal);
}

.feature__icon svg {
    width: 36px;
    height: 36px;
}

.feature h3 {
    margin-bottom: 8px;
}

.feature p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--gray-100);
    font-weight: 600;
    color: var(--black);
    transition: all var(--transition-base);
}

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

.area-item:hover {
    border-color: var(--primary-teal);
    background: var(--teal-subtle);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 12px;
}

.testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #FBBF24;
}

.testimonial__stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.testimonial p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 20px;
}

.testimonial__author {
    font-weight: 600;
    color: var(--white);
}

.testimonial__location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-subtle);
    border-radius: 10px;
    color: var(--primary-teal);
    flex-shrink: 0;
}

.contact-item__icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.contact-item a {
    color: var(--primary-teal);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--black);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.15);
}

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

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

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--gray-300);
    padding: 80px 0 32px;
}

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

.footer__brand p {
    margin-top: 16px;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer__section h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: var(--gray-300);
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--teal-light);
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: var(--emergency-red);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
    transition: all var(--transition-base);
}

.floating-cta svg {
    width: 20px;
    height: 20px;
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5);
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro__content h2 {
    margin-bottom: 24px;
}

.about-intro__content p {
    font-size: 1.0625rem;
    color: var(--gray-500);
}

.about-intro__image {
    background: var(--gray-100);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.credential {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray-100);
}

.credential__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-subtle);
    border-radius: 12px;
    color: var(--primary-teal);
}

.credential__icon svg {
    width: 32px;
    height: 32px;
}

.credential h4 {
    margin-bottom: 8px;
}

.credential p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* ============================================
   SERVICE AREAS - Card Layout
   ============================================ */
.areas-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
}

.area-card:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 12px 40px rgba(0, 206, 209, 0.15);
    transform: translateY(-6px);
}

.area-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--teal-subtle);
    border-radius: 50%;
    color: var(--primary-teal);
}

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

.area-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.area-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-teal);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.area-card--primary {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    border: none;
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
}

.area-card--primary h3 {
    color: var(--white);
    font-size: 2rem;
}

.area-card--primary p {
    color: var(--gray-300);
    font-size: 1.0625rem;
}

.area-card--primary .area-card__icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 206, 209, 0.2);
}

.area-card--primary .area-card__icon svg {
    width: 40px;
    height: 40px;
    color: var(--teal-light);
}

.area-card--primary .area-card__badge {
    background: var(--teal-light);
    color: var(--black);
}

.area-card--primary:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SERVICE AREAS HIGHLIGHT (Homepage)
   ============================================ */
.service-areas-highlight {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    color: var(--white);
}

.service-areas-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.service-areas-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.service-areas-text h2 span {
    color: var(--teal-light);
}

.service-areas-text p {
    color: var(--gray-300);
    font-size: 1.125rem;
    margin-bottom: 28px;
}

.service-areas-locations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all var(--transition-base);
}

.location-card:hover {
    background: rgba(0, 206, 209, 0.1);
    border-color: var(--primary-teal);
    transform: translateY(-4px);
}

.location-card svg {
    width: 28px;
    height: 28px;
    color: var(--primary-teal);
    margin-bottom: 10px;
}

.location-card span {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--white);
}

.location-card small {
    display: block;
    font-size: 0.75rem;
    color: var(--teal-light);
    margin-top: 4px;
}

.location-card--featured {
    background: rgba(0, 206, 209, 0.15);
    border-color: var(--primary-teal);
}

.location-card--featured svg {
    color: var(--teal-light);
}

/* ============================================
   PAGE HERO (Interior Pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--gray-300);
    font-size: 1.125rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__visual {
        min-height: 280px;
    }
    
    .hero__services {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 24px;
    }
    
    .service-areas-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-areas-locations {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .header__inner {
        height: 70px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav__link {
        width: 100%;
        padding: 14px 16px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .header__cta .btn {
        display: none;
    }
    
    .hero__visual {
        display: none;
    }
    
    .hero__buttons {
        flex-direction: column;
    }
    
    .hero__buttons .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-cta {
        bottom: 16px;
        right: 16px;
        padding: 14px 20px;
        font-size: 0.9375rem;
    }
    
    .service-areas-locations {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-showcase {
        grid-template-columns: 1fr 1fr;
    }
    
    .area-card--primary {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header__phone span {
        display: none;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}
