/* ================================
   BENITEZ REMODELING - PREMIUM CSS
   Professional, Eye-Popping Design
   ================================ */

/* ===== RESET & FOUNDATIONS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --primary: #1a365d;
    --primary-light: #2b77ad;
    --secondary: #f56500;
    --secondary-light: #ff7a1a;
    --accent: #e53e3e;
    --gold: #d69e2e;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2b77ad 100%);
    --gradient-secondary: linear-gradient(135deg, #f56500 0%, #ff7a1a 100%);
    --gradient-gold: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    --gradient-text: linear-gradient(135deg, #1a365d 0%, #2b77ad 50%, #f56500 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(43, 119, 173, 0.8) 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

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

p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Inner page hero (Services, Portfolio, About, Contact) */
.page-hero {
    padding: var(--space-3xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}
.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary .btn-icon {
    transition: transform var(--transition-base);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
    position: relative;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    text-decoration: none;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== NAVIGATION ===== */
.nav-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--space-lg);
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.nav-cta {
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-cta .phone-icon {
    filter: brightness(0) invert(1);
}

/* Services dropdown in nav */
.nav-link-services {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 0.15rem;
    vertical-align: middle;
    transition: transform var(--transition-base);
}

.nav-dropdown-wrap:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-wrap {
    position: relative;
}

.nav-services-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.25rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    min-width: min(90vw, 720px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    z-index: 1001;
}

.nav-dropdown-wrap:hover .nav-services-dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 2rem;
}

.nav-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--radius-md);
    transition: color var(--transition-base), background var(--transition-base);
    min-width: 5rem;
}

.nav-service-item:hover {
    color: var(--primary);
    background: var(--gray-50);
}

.nav-service-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.75);
    transition: filter var(--transition-base);
}

.nav-service-item:hover .nav-service-icon {
    filter: grayscale(0) opacity(1);
}

.nav-service-label {
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--gray-700);
    transition: all var(--transition-base);
}

@media (max-width: 768px) {
    .nav-dropdown-wrap:hover .nav-services-dropdown {
        opacity: 0;
        visibility: hidden;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem var(--space-lg) var(--space-xl);
        gap: 0;
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links .nav-link {
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1.125rem;
    }

    .nav-links .nav-dropdown-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links .nav-link-services {
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links .nav-services-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        padding: 0 0 0 1rem;
        box-shadow: none;
        border: none;
        min-width: 0;
        background: transparent;
    }

    .nav-links .nav-services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding-bottom: var(--space-md);
    }

    .nav-links .nav-service-item {
        flex-direction: row;
        min-width: 0;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 0.8rem;
        text-align: left;
    }

    .nav-links .nav-service-item:last-child,
    .nav-links .nav-service-item:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }

    .nav-links .nav-service-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .nav-links .nav-cta {
        margin-top: var(--space-md);
        justify-content: center;
        padding: 1rem;
    }
    
    .nav-mobile-toggle {
        display: flex;
        z-index: 1001;
        padding: var(--space-sm);
    }
    
    .nav-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

body.nav-open {
    overflow: hidden;
}
body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

/* ===== HERO SECTION ===== */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.5) contrast(0.8);
    transform: scale(1.05);
    opacity: 0.6;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(26, 54, 93, 0.85) 0%, 
        rgba(43, 119, 173, 0.8) 30%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(245, 101, 0, 0.7) 100%
    );
    z-index: -1;
}

.hero-content {
    width: 100%;
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    max-width: 60%;
}

@media (max-width: 768px) {
    .hero-container {
        min-height: 70vh;
        padding: 0 var(--space-md);
    }
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    .hero-image {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 340px;
        margin: var(--space-xl) auto 0;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(245, 101, 0, 0.2);
    backdrop-filter: blur(15px);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(245, 101, 0, 0.2);
}

.badge-icon {
    width: 0.875rem;
    height: 0.875rem;
    object-fit: contain;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 
                 0 0 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    color: #f59e0b;
    font-weight: 800;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(245, 158, 11, 0.4);
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    max-width: 90%;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 10;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-display);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}
/* Rating: force Inter so the decimal point always shows (Playfair hides it) */
.stat-rating-full {
    font-family: var(--font-primary) !important;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 
        1px 1px 4px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-cta {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.hero-image {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: clamp(280px, 38vw, 420px);
    z-index: 2;
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero-cards .hero-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hero-cards .hero-image-container:first-child {
    transform: rotate(-2deg);
}

.hero-cards .hero-image-container:first-child:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-cards .hero-image-container:last-child {
    transform: rotate(2deg);
}

.hero-cards .hero-image-container:last-child:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-cards .hero-img {
    max-height: 200px;
    object-fit: cover;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transform: rotate(2deg);
    transition: transform var(--transition-slow);
}

.hero-image-container:hover {
    transform: rotate(0deg) scale(1.02);
}

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

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: var(--space-lg);
}

.overlay-badge {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-xs);
}

.overlay-text {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Floating Elements - compact so they don't block the hero image */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 0.4rem 0.6rem;
    box-shadow: var(--shadow-md);
    animation: float 8s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 5%;
    left: -8%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 45%;
    right: -8%;
    animation-delay: 2s;
}

.floating-element.element-3 {
    bottom: 5%;
    left: -6%;
    animation-delay: 4s;
}

.element-content {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}

.element-icon {
    font-size: 0.875rem;
}

.element-text {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.75rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

@media (max-width: 968px) {
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-image {
        width: clamp(260px, 42vw, 360px);
        right: var(--space-md);
        bottom: var(--space-md);
    }
    .floating-element {
        display: none;
    }
}

/* Mobile hero: full-width CTA, tap-friendly */
@media (max-width: 768px) {
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 1rem 1.5rem;
    }
    
    .hero-image-container {
        transform: none;
    }
    
    .hero-image-container:hover {
        transform: scale(1.02);
    }
}

/* ===== SERVICES SECTION ===== */
.services-premium {
    padding: var(--space-3xl) 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: var(--space-lg);
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.service-card.featured {
    border: 3px solid var(--gold);
    position: relative;
}

.service-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8), rgba(245, 101, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-content {
    padding: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.service-content > .service-btn,
.service-content > button.service-btn {
    margin-top: auto;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--gray-900);
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.feature {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.service-btn {
    display: inline-block;
    width: 100%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.service-content a.service-btn {
    display: block;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-premium {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--gray-600);
    border: 2px solid var(--gray-200);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
}

.portfolio-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.before-after {
    position: relative;
    width: 100%;
    height: 100%;
}

.before,
.after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before img,
.after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path var(--transition-base);
}

.portfolio-item:hover .after {
    clip-path: inset(0 0% 0 0);
}

.ba-label {
    position: absolute;
    top: var(--space-md);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
}

.before .ba-label {
    left: var(--space-md);
}

.after .ba-label {
    right: var(--space-md);
}

.ba-slider {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 60px;
    background: var(--white);
    transform: translate(-50%, -50%);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: left var(--transition-base);
}

.portfolio-item:hover .ba-slider {
    left: 75%;
}

.portfolio-content {
    padding: var(--space-lg);
}

.portfolio-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.portfolio-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.portfolio-tags {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 500;
}

.portfolio-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: var(--space-3xl) 0;
    background: var(--gray-900);
    color: var(--white);
}

.trust-section-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.trust-section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.trust-section-header .reviews-subtitle {
    margin-bottom: var(--space-sm);
}

.trust-section-header .stars {
    margin-bottom: var(--space-xs);
}

.stars-text {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: #fbbf24;
}

.trust-section-header .rating-text {
    font-size: 1.125rem;
    color: var(--gray-300);
}

.trust-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.reviews-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-300);
}

.rating-text {
    font-size: 1.125rem;
    color: var(--gray-300);
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.review {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    min-height: 0;
    overflow: visible;
}

.review-content {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-style: italic;
    overflow: visible;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.review-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
}

.author-location {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.trust-section .author-name,
.trust-section .author-location {
    color: #ffffff;
}

/* Credentials & Partners column */
.trust-credentials {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
}

.credentials-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.credential-bbb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.credential-bbb img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.credential-bbb-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.trust-licensed {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-bottom: var(--space-xl);
}

.trust-partners {
    width: 100%;
}

.partners-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.partner-logos {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    transition: background var(--transition-base);
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.partner-item img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.partner-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-300);
}

@media (max-width: 968px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    .trust-credentials {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-xl);
    }
    .trust-partners {
        width: 100%;
        flex-basis: 100%;
    }
    .partner-logos {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
}

.cta-primary-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}
.cta-primary-actions .btn-primary,
.cta-primary-actions .btn-secondary {
    min-height: 52px;
    padding: 1rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}
.cta-primary-actions .cta-phone {
    text-decoration: none;
}
/* White icons on blue CTA (match nav bar phone) */
.cta-section .cta-phone .phone-icon,
.cta-section .guarantee-item img.cta-icon-white {
    filter: brightness(0) invert(1);
}
.cta-or {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.cta-form {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.form-step h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.project-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-md);
}

.option-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.option-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.option-icon {
    font-size: 2rem;
}

.option-text {
    font-weight: 600;
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.9);
}

.guarantee-item .guarantee-icon {
    font-size: 1.5rem;
}
.guarantee-item img.guarantee-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.cta-section .guarantee-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #fff;
}
.cta-section .guarantee-icon-svg svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .cta-guarantee {
        flex-direction: column;
        gap: var(--space-md);
    }
}

/* Sticky mobile CTA bar - conversion focused */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: var(--space-sm) var(--space-md);
    padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom, 0px));
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    gap: var(--space-sm);
    align-items: stretch;
}
@media (min-width: 769px) {
    .sticky-mobile-cta { display: none !important; }
}
@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: none;
        grid-template-columns: 1fr 1fr;
    }
    .sticky-mobile-cta.visible {
        display: grid;
    }
    .sticky-cta-phone {
        background: var(--gradient-primary);
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        padding: 1rem;
        text-align: center;
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
    }
    .sticky-cta-estimate {
        background: var(--white);
        color: var(--primary);
        border: 2px solid var(--primary);
        font-weight: 600;
        padding: 1rem;
        border-radius: var(--radius-lg);
        cursor: pointer;
        min-height: 48px;
    }
}

/* ===== FOOTER ===== */
.footer-premium {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-social .social-icon {
    display: block;
    width: 24px;
    height: 24px;
    color: var(--white);
    transition: color var(--transition-base);
}

.social-link:hover .social-icon {
    color: var(--white);
}

.footer-content h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: 1.125rem;
}

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

.footer-content li {
    margin-bottom: var(--space-xs);
}

.footer-content a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-content a:hover {
    color: var(--white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-icon {
    font-size: 1.25rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-400);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.legal-links {
    display: flex;
    gap: var(--space-lg);
}

.legal-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.legal-links a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== ANIMATIONS & INTERACTIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transition: all var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
    animation: fadeInUp 0.8s ease-out;
}

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Focus styles */
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Contact page form */
.contact-form-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}
.contact-form .form-group {
    margin-bottom: var(--space-lg);
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--gray-800);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-primary);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}
.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}
@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}
.contact-form .btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-top: var(--space-md);
}

/* Contact page layout */
.contact-page-section {
    padding: var(--space-xl) 0;
}
.contact-page-section .contact-info-block {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.contact-page-section .contact-info-block h2,
.contact-form-wrap h2 {
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: var(--space-md);
    font-size: 1.5rem;
}
.contact-page-section .contact-info-block .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}
.contact-page-section .contact-info-block .contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    text-align: left;
}
.contact-page-section .contact-info-block .contact-item a {
    color: var(--primary);
    font-weight: 500;
}
.contact-page-section .contact-page-guarantee {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-200);
}
.contact-page-section .contact-page-guarantee .guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.contact-page-section .contact-page-guarantee .guarantee-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.contact-page-section .contact-page-guarantee .cta-icon-white {
    filter: brightness(0) invert(1);
}
.contact-page-section .contact-page-guarantee .guarantee-icon-svg {
    display: inline-flex;
    color: var(--primary);
}
.contact-page-section .contact-page-guarantee .guarantee-text {
    color: var(--gray-700);
    font-weight: 500;
}
/* ===== PAGE-SPECIFIC HERO VARIATIONS ===== */

/* About Hero - Warmer, Trust-focused */
.about-hero .hero-gradient {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(213, 158, 46, 0.7) 100%);
}

.about-hero .gradient-text {
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 50%, #1a365d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .hero-badge {
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
}

/* Services Hero - Professional, Comprehensive */
.services-hero .hero-gradient {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(245, 101, 0, 0.75) 100%);
}

.services-hero .gradient-text {
    background: linear-gradient(135deg, #f56500 0%, #ff7a1a 50%, #1a365d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero .hero-badge {
    background: linear-gradient(135deg, #f56500 0%, #ff7a1a 100%);
}

/* Portfolio Hero - Creative, Showcase */
.portfolio-hero .hero-gradient {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.8) 0%, rgba(99, 102, 241, 0.7) 100%);
}

.portfolio-hero .gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #1a365d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-hero .hero-badge {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

/* Contact Hero - Urgent, Action-focused */
.contact-hero .hero-gradient {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(229, 62, 62, 0.8) 100%);
}

.contact-hero .gradient-text {
    background: linear-gradient(135deg, #e53e3e 0%, #f56565 50%, #1a365d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero .hero-badge {
    background: linear-gradient(135deg, #e53e3e 0%, #f56565 100%);
}

/* Page-specific overlay content styling */
.about-hero .overlay-badge {
    background: rgba(213, 158, 46, 0.9);
}

.services-hero .overlay-badge {
    background: rgba(245, 101, 0, 0.9);
}

.portfolio-hero .overlay-badge {
    background: rgba(99, 102, 241, 0.9);
}

.contact-hero .overlay-badge {
    background: rgba(229, 62, 62, 0.9);
}

/* Enhanced button hover effects for specific pages */
.about-hero .btn-primary:hover {
    background: linear-gradient(135deg, #d69e2e 0%, #f6e05e 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(213, 158, 46, 0.4);
}

.services-hero .btn-primary:hover {
    background: linear-gradient(135deg, #f56500 0%, #ff7a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 101, 0, 0.4);
}

.portfolio-hero .btn-primary:hover {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.contact-hero .btn-primary:hover {
    background: linear-gradient(135deg, #e53e3e 0%, #f56565 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.4);
}

/* Responsive adjustments for page-specific heros */
@media (max-width: 768px) {
    .about-hero .hero-stats,
    .services-hero .hero-stats,
    .portfolio-hero .hero-stats,
    .contact-hero .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .about-hero .hero-title,
    .services-hero .hero-title,
    .portfolio-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}

/* ===== NEW MULTI-SECTION STYLING ===== */

/* Story Section */
.story-section { padding: 4rem 0; background: var(--gray-50); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.timeline-item { display: flex; gap: 1rem; margin-bottom: 2rem; }
.timeline-year { background: var(--primary); color: white; padding: 0.5rem 1rem; border-radius: 8px; font-weight: 600; min-width: 80px; text-align: center; }
.story-image { position: relative; }
.story-stats { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; display: flex; gap: 1rem; }
.story-stats .stat-item { background: rgba(255,255,255,0.9); padding: 1rem; border-radius: 8px; text-align: center; flex: 1; }

/* Team Section */
.team-section { padding: 4rem 0; }
.team-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-top: 2rem; }
.team-member { background: white; border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.member-image { position: relative; margin-bottom: 1rem; }
.member-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: white; padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.875rem; }
.member-credentials { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.credential { background: var(--gray-100); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.875rem; }

/* Team Stats Grid */
.team-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.team-stat { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); text-align: center; }
.team-stat .stat-icon { font-size: 2rem; margin-bottom: 0.5rem; }

/* Service Value Grid */
.service-value-section { padding: 4rem 0; background: var(--gray-50); }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.value-item { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); text-align: center; }
.value-icon { font-size: 3rem; margin-bottom: 1rem; }
.value-stats { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; }
.value-stats .stat { background: var(--gray-100); padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.875rem; font-weight: 500; }

/* Process Timeline */
.process-timeline, .timeline-process { display: grid; gap: 2rem; margin-top: 2rem; }
.timeline-step, .step-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-icon, .timeline-number, .step-number { width: 60px; height: 60px; background: var(--primary); color: white; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 600; font-size: 1.25rem; flex-shrink: 0; }
.step-details { display: flex; gap: 1rem; margin-top: 0.5rem; }
.step-duration, .step-cost, .timeline-duration { background: var(--gray-100); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.875rem; }

/* Guarantee Grid */
.guarantee-section { padding: 4rem 0; }
.guarantee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.guarantee-item { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); text-align: center; }
.guarantee-icon { font-size: 3rem; margin-bottom: 1rem; }

/* Comparison Table */
.comparison-section { padding: 4rem 0; background: var(--gray-50); }
.comparison-table { background: white; border-radius: 12px; overflow: hidden; margin-top: 2rem; }
.comparison-header { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--primary); color: white; }
.comparison-header > div { padding: 1rem; font-weight: 600; }
.comparison-row { display: grid; grid-template-columns: 2fr 1fr 1fr; border-bottom: 1px solid var(--gray-200); }
.comparison-row > div { padding: 1rem; }
.benitez { background: rgba(34, 197, 94, 0.1); }
.others { background: rgba(239, 68, 68, 0.1); }

/* Categories Grid */
.categories-section { padding: 4rem 0; }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.category-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.category-image { position: relative; }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; align-items: flex-end; padding: 1.5rem; }
.category-stats { display: flex; gap: 1rem; margin-top: 0.5rem; }
.category-stats .stat { background: rgba(255,255,255,0.2); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.875rem; }
.category-content { padding: 1.5rem; }
.category-btn { display: inline-block; margin-top: 1rem; padding: 0.75rem 1.5rem; background: var(--primary); color: white; text-decoration: none; border-radius: 6px; }

/* ROI Section */
.roi-section { padding: 4rem 0; background: var(--gray-50); }
.roi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 2rem; }
.roi-item { background: white; border-radius: 12px; padding: 1.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.roi-stats .stat { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--gray-200); }
.roi-summary { display: flex; justify-content: center; gap: 3rem; margin-top: 3rem; }
.summary-stat { text-align: center; }
.summary-number { font-size: 3rem; font-weight: 700; color: var(--primary); }

/* Contact Methods */
.contact-options-section { padding: 4rem 0; }
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.contact-method { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); text-align: center; }
.contact-method.priority { border: 2px solid var(--primary); }
.method-icon { font-size: 3rem; margin-bottom: 1rem; }
.method-action { display: inline-block; margin: 1rem 0; padding: 0.75rem 1.5rem; background: var(--primary); color: white; text-decoration: none; border-radius: 6px; }
.method-hours { font-size: 0.875rem; color: var(--gray-600); }
.method-benefit { margin-top: 1rem; background: var(--gray-100); padding: 0.5rem; border-radius: 6px; font-size: 0.875rem; }

/* FAQ Grid */
.faq-section { padding: 4rem 0; background: var(--gray-50); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 2rem; }
.faq-item { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.faq-item h3 { margin-bottom: 1rem; color: var(--primary); }

/* Emergency Contact */
.emergency-contact-section { padding: 2rem 0; background: var(--accent); color: white; }
.emergency-content { display: flex; align-items: center; gap: 2rem; }
.emergency-icon { font-size: 4rem; }
.emergency-action { text-align: center; }
.btn-urgent { background: white; color: var(--accent); padding: 1rem 2rem; text-decoration: none; border-radius: 6px; font-weight: 600; }

/* Success Stories */
.success-stories-section { padding: 4rem 0; }
.stories-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.story-item { background: white; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.story-item.featured { grid-row: span 2; }
.story-image img { border-radius: 50%; }
.story-stars { color: var(--gold); margin-top: 1rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .story-grid, .team-grid, .comparison-row, .comparison-header, .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods { grid-template-columns: 1fr; }
    .emergency-content { flex-direction: column; text-align: center; }
    .roi-summary { flex-direction: column; gap: 1rem; }
    .value-stats, .category-stats { justify-content: center; }
}

/* ===== SERVICES PAGE SPECIFIC STYLING ===== */

/* Enhanced Service Cards */
.service-details {
    display: flex; 
    gap: 1rem; 
    margin: 1rem 0;
    font-size: 0.875rem;
}

.service-timeline, .service-roi {
    background: var(--gray-100); 
    padding: 0.25rem 0.75rem; 
    border-radius: 20px;
    color: var(--gray-700);
}

/* Service Portfolio Grid */
.service-portfolio-section { 
    padding: 4rem 0; 
    background: var(--gray-50); 
}

.service-portfolio-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
    margin-top: 2rem; 
}

.portfolio-item.featured { 
    /* Equal height with other items when grid has 2 columns */
}

.portfolio-content { 
    padding: 1.5rem; 
}

.portfolio-location { 
    color: var(--gray-600); 
    font-size: 0.875rem; 
    margin-bottom: 1rem; 
}

.portfolio-details { 
    display: flex; 
    flex-direction: column; 
    gap: 0.5rem; 
    margin: 1rem 0; 
    padding: 1rem; 
    background: var(--gray-50); 
    border-radius: 8px; 
}

.detail-item { 
    display: flex; 
    justify-content: space-between; 
    font-size: 0.875rem; 
}

.detail-label { 
    color: var(--gray-600); 
}

.detail-value { 
    font-weight: 600; 
    color: var(--primary); 
}

.portfolio-features { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 0.5rem; 
    margin-top: 1rem; 
}

.portfolio-stats { 
    display: flex; 
    justify-content: center; 
    gap: 3rem; 
    margin-top: 3rem; 
    padding: 2rem; 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
}

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

.portfolio-stats .stat-number { 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: var(--primary); 
    font-family: var(--font-display);
    text-shadow: none;
}

.portfolio-stats .stat-label { 
    color: var(--gray-600); 
    font-size: 0.875rem; 
    margin-top: 0.5rem;
    text-shadow: none;
}

/* Why Choose Us Section */
.why-choose-section { 
    padding: 4rem 0; 
}

.why-choose-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
    margin-top: 2rem; 
}

.choose-item { 
    background: white; 
    padding: 2rem; 
    border-radius: 24px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
    text-align: center; 
}

.choose-icon { 
    font-size: 3rem; 
    margin-bottom: 1rem; 
}

.choose-proof { 
    margin-top: 1rem; 
    background: var(--gold); 
    color: white; 
    padding: 0.5rem 1rem; 
    border-radius: 6px; 
    font-size: 0.875rem; 
    font-weight: 500; 
}

/* Service Areas Section */
.service-areas-section { 
    padding: 4rem 0; 
    background: var(--gray-50); 
}

.areas-content { 
    margin-top: 2rem; 
}

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

.area-group h3 { 
    color: var(--primary); 
    margin-bottom: 1rem; 
    font-family: var(--font-display); 
}

.area-list { 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem; 
}

.area-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1rem; 
    background: white; 
    border-radius: 8px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.project-count { 
    background: var(--primary); 
    color: white; 
    padding: 0.25rem 0.75rem; 
    border-radius: 20px; 
    font-size: 0.75rem; 
    font-weight: 500; 
}

.coverage-stats { 
    display: flex; 
    justify-content: center; 
    gap: 3rem; 
    padding: 2rem; 
    background: white; 
    border-radius: 12px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); 
}

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

.coverage-number { 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: var(--primary); 
    font-family: var(--font-display); 
}

.coverage-label { 
    color: var(--gray-600); 
    font-size: 0.875rem; 
    margin-top: 0.5rem; 
}

/* Services Hero Color Theme */
.services-hero .hero-gradient {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(245, 101, 0, 0.75) 100%);
}

.services-hero .gradient-text {
    background: linear-gradient(135deg, #f56500 0%, #ff7a1a 50%, #1a365d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero .hero-badge {
    background: linear-gradient(135deg, #f56500 0%, #ff7a1a 100%);
}

.services-hero .btn-primary:hover {
    background: linear-gradient(135deg, #f56500 0%, #ff7a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 101, 0, 0.4);
}

.services-hero .overlay-badge {
    background: rgba(245, 101, 0, 0.9);
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .service-portfolio-grid { 
        grid-template-columns: 1fr; 
    }
    
    .portfolio-item.featured { 
        grid-row: span 1; 
    }
    
    .areas-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
    }
    
    .portfolio-stats, .coverage-stats { 
        flex-direction: column; 
        gap: 1rem; 
    }
    
    .service-details { 
        flex-direction: column; 
        gap: 0.5rem; 
    }
    
    .why-choose-grid { 
        grid-template-columns: 1fr; 
    }
}

/* Modal Styling Updates */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.close {
    color: var(--gray-600);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

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

#estimateForm {
    margin-top: 1rem;
}

#estimateForm .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

#estimateForm input,
#estimateForm select,
#estimateForm textarea {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
}

#estimateForm textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 768px) {
    #estimateForm .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== NEW CENTERED PAGE HERO DESIGN ===== */

.page-hero-centered {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem 5rem;
}

/* Service detail pages: hero fits content, no blank space at bottom */
.page-hero-centered:has(+ .service-detail-section) {
    min-height: 0;
    padding: 5rem 1.5rem 2.5rem;
}
.page-hero-centered:has(+ .service-detail-section) .hero-content-centered {
    padding: 3.5rem 0 1.5rem;
}

.hero-background-full {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* About page: shift hero image up so group/heads aren't cut off */
.page-hero-centered .hero-bg-img {
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Match home page hero gradient – simple navy/blue/white/orange */
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.85) 0%,
        rgba(43, 119, 173, 0.8) 30%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(245, 101, 0, 0.7) 100%
    );
    z-index: 2;
}

.hero-content-centered {
    position: relative;
    z-index: 3;
    color: #ffffff;
    width: 100%;
    padding: 3rem 0 4rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.page-hero-centered .container {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.hero-badge-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(245, 101, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-badge-center .badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 1.5rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.hero-title-large {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1.1;
    margin: 0 0 1rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Match home page .gradient-text – solid gold with shadow */
.hero-accent-text {
    display: block;
    color: #f59e0b;
    font-weight: 800;
    font-size: 0.7em;
    margin-top: 0.5rem;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(245, 158, 11, 0.4);
}

.hero-description-center {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-metrics-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
    min-width: 120px;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: #ffffff;
    line-height: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.metric-label {
    font-size: 0.875rem;
    color: #ffffff;
    margin-top: 0.5rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-cta-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.btn-subtext {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.hero-cta-divider {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Breadcrumb (service detail pages) */
.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}
.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    text-underline-offset: 3px;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Service detail page – main content block */
.service-detail-section {
    padding: 4rem 0;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

/* Service page slideshow */
.service-slideshow {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    aspect-ratio: 16 / 10;
    background: #111;
}
.service-slideshow-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.service-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.service-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.service-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}
.service-slideshow-prev,
.service-slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1a365d;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}
.service-slideshow-prev:hover,
.service-slideshow-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}
.service-slideshow-prev { left: 12px; }
.service-slideshow-next { right: 12px; }
.service-slideshow-dots {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.service-slideshow-dots button {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.service-slideshow-dots button:hover {
    background: rgba(255, 255, 255, 0.8);
}
.service-slideshow-dots button.active {
    background: #fff;
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .service-slideshow {
        aspect-ratio: 4 / 3;
    }
    .service-slideshow-prev,
    .service-slideshow-next {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

/* Service page: Popular Upgrades section (kitchen, bathroom, etc.) */
.service-upgrades-section {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
}
.service-upgrades-section .container {
    max-width: 1200px;
    margin: 0 auto;
}
.service-upgrades-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.service-upgrades-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a365d;
    background: rgba(26, 54, 93, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.service-upgrades-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    color: #1a365d;
    margin: 0 0 0.75rem 0;
}
.service-upgrades-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.service-upgrades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}
.service-upgrade-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-upgrade-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.service-upgrade-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e2e8f0;
}
.service-upgrade-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.service-upgrade-card:hover .service-upgrade-card-img img {
    transform: scale(1.05);
}
.service-upgrade-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
}
.service-upgrade-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-display);
}
.service-upgrade-card-body p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #475569;
    margin: 0;
}
@media (max-width: 768px) {
    .service-upgrades-section {
        padding: 3rem 0;
    }
    .service-upgrades-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 0 0 1rem 0;
    color: var(--color-heading, #1a365d);
}
.service-detail-content p {
    margin: 0 0 1.25rem 0;
    line-height: 1.6;
    color: var(--color-text, #374151);
}
.service-detail-content .service-features {
    margin-bottom: 1rem;
}
.service-detail-content .service-details {
    margin-bottom: 1rem;
}
.service-detail-content .service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary, #1a365d);
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-detail-section {
        padding: 3rem 0;
    }
}

.btn-phone-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-phone-large:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.phone-icon {
    font-size: 1.5rem;
}

.phone-content {
    text-align: left;
}

.phone-number {
    font-weight: 600;
    font-size: 1.1rem;
}

.phone-hours {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.trust-icon {
    background: #10b981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Responsive Design for New Hero */
@media (max-width: 768px) {
    .page-hero-centered {
        min-height: 90vh;
        padding: 3rem 1.25rem 4rem;
    }
    .page-hero-centered:has(+ .service-detail-section) {
        padding: 4rem 1.25rem 2rem;
    }
    .hero-content-centered {
        padding: 2rem 0 3rem;
    }
    .page-hero-centered:has(+ .service-detail-section) .hero-content-centered {
        padding: 1.5rem 0 1rem;
    }
    
    .hero-metrics-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-cta-center {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-phone-large {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-indicators {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.875rem;
    }
    
    .hero-badge-center {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-metrics-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-trust-indicators {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== QUICK SERVICE SELECTION SECTION ===== */

.service-quick-select {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
}

.quick-select-content {
    text-align: center;
}

.quick-select-content h2 {
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 1rem;
}

.quick-select-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.quick-select-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* About page: What Drives Our Success – 3 columns × 2 rows */
.quick-select-buttons--3x2 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
}

@media (max-width: 768px) {
    .quick-select-buttons--3x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .quick-select-buttons--3x2 {
        grid-template-columns: 1fr;
    }
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 24px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.quick-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.15);
}

.quick-icon {
    font-size: 2rem;
}

.quick-text {
    font-weight: 600;
    font-size: 1rem;
}

/* Project count tags in quick-select (e.g. Portfolio "85+ projects") – match Services style */
.service-quick-select .quick-btn .project-count {
    font-size: 0.75rem;
    color: #ffffff;
    background: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 500;
}

/* ===== ENHANCED SERVICE CARDS ===== */

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.service-includes {
    margin: 1.5rem 0;
}

.service-includes h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.include-item {
    background: var(--gray-100);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    text-align: center;
    color: var(--gray-700);
}

.service-pricing-breakdown {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.price-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price-range:last-child {
    margin-bottom: 0;
}

.price-label {
    font-weight: 500;
    color: var(--gray-600);
}

.price-value {
    font-weight: 600;
    color: var(--primary);
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.service-timeline,
.service-roi,
.service-warranty {
    background: var(--gray-100);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    text-align: center;
    color: var(--gray-700);
}

.service-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.service-btn.primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

/* Service card "View details" link – text style */
.service-btn.link-btn {
    display: inline-block;
    width: auto;
    background: none;
    border: none;
    color: var(--primary, #1a365d);
    text-decoration: none;
    font-weight: 600;
    box-shadow: none;
    margin-bottom: 0.5rem;
    padding: 0;
}
.service-btn.link-btn:hover {
    text-decoration: underline;
    transform: none;
    box-shadow: none;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .quick-select-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .quick-btn {
        padding: 1rem 0.5rem;
    }
    
    .quick-icon {
        font-size: 1.5rem;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .service-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .quick-select-buttons {
        grid-template-columns: 1fr;
    }
    
    .service-pricing-breakdown {
        padding: 0.75rem;
    }
    
    .price-range {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
}

/* ===== SERVICE PACKAGES SECTION ===== */

.service-packages-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

.package-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-header {
    padding: 1.75rem 2rem;
    height: 6rem;
    min-height: 6rem;
    max-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
    border-radius: 24px 24px 0 0;
}

.package-header h3 {
    margin: 0;
    font-size: 1.75rem;
    font-family: var(--font-display);
    color: #ffffff;
    line-height: 1.3;
}

.package-content {
    padding: 2rem;
}

.package-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.service-item .service-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.service-name {
    font-weight: 500;
    color: var(--gray-700);
}

.package-pricing {
    background: var(--gray-100);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.individual-price {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.savings {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.package-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.benefit {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.package-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-1px);
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-content {
        padding: 1.5rem;
    }
    
    .service-item {
        padding: 0.5rem;
    }
    
    .service-item .service-icon {
        font-size: 1.25rem;
        width: 35px;
    }
}

/* ===== FIXED GUARANTEE ITEMS STYLING ===== */

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    max-width: 200px;
}

.guarantee-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.guarantee-emoji {
    font-size: 1.5rem;
}

.guarantee-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive Design for Guarantee Items */
@media (max-width: 768px) {
    .cta-guarantee {
        gap: 2rem;
    }
    
    .guarantee-item {
        max-width: 150px;
    }
    
    .guarantee-icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .guarantee-emoji {
        font-size: 1.25rem;
    }
    
    .guarantee-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .cta-guarantee {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .guarantee-item {
        flex-direction: row;
        max-width: 300px;
        text-align: left;
    }
    
    .guarantee-icon-circle {
        flex-shrink: 0;
    }
}

/* ===== PORTFOLIO PAGE SPECIFIC STYLES ===== */

.service-areas-section .project-count,
.area-item .project-count {
    font-size: 0.75rem;
    color: #ffffff;
    margin-top: 0;
    margin-left: 0.5rem;
    background: var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 500;
}

.featured-project-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.featured-project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.project-info h3 {
    font-size: 1.75rem;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.project-location {
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.project-scope {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.project-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-box .stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
    text-shadow: none;
}

.stat-box .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
    text-shadow: none;
}

.project-highlights {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 0.95rem;
}

.featured-cta-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.featured-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.featured-project-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 280px;
}

.gallery-main .before-after {
    position: absolute;
    inset: 0;
    border-radius: 16px;
}

.gallery-main .before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.thumb-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
}

.portfolio-categories-section {
    padding: 4rem 0;
}

.category-section {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

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

.portfolio-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h4 {
    font-size: 1.25rem;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.portfolio-location {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.portfolio-investment {
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
}

.roi-results-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.roi-showcase {
    margin-top: 2rem;
}

.roi-summary-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.roi-stat .roi-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
}

.roi-stat .roi-label {
    color: var(--gray-600);
    margin-top: 0.5rem;
}

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

.roi-example {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.roi-example-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.roi-example-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roi-example-content {
    padding: 1.5rem;
}

.roi-project-type {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.roi-investment,
.roi-return {
    margin: 0.5rem 0;
    color: var(--gray-700);
}

.roi-percentage {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

.story-timeline {
    max-width: 800px;
    margin: 2rem auto 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 45px;
    top: 80px;
    width: 2px;
    height: 50px;
    background: var(--primary);
}

.timeline-year {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 90px;
    text-align: center;
    height: fit-content;
}

.timeline-content h3 {
    color: var(--primary);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.timeline-stat {
    background: var(--gold);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin-top: 0.75rem;
}

.team-section {
    padding: 4rem 0;
}

.team-showcase {
    margin-top: 2rem;
}

.team-leader {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.leader-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 24px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 24px;
}

.leader-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.leader-content h3 {
    font-size: 1.75rem;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--gray-700);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.leader-experience {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leader-story p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.leader-story blockquote {
    font-style: italic;
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    margin: 1rem 0;
}

.leader-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.credential-icon {
    font-size: 1.25rem;
}

.credential-text {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.team-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.team-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
    text-shadow: none;
}

.team-stat-card .stat-label {
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--gray-900);
    text-shadow: none;
}

.team-stat-card .stat-detail {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-shadow: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary);
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.value-proof {
    background: var(--gold);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

.testimonials-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.testimonials-showcase {
    margin-top: 2rem;
}

.testimonial-featured {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-featured blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    color: var(--gray-700);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image img {
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
}

.author-location,
.author-project {
    font-size: 0.875rem;
    color: var(--gray-600);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-author-simple {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

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

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

.priority-contact {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, var(--gold) 0%, #f6e05e 100%);
    color: white;
}

.contact-speed {
    font-size: 0.75rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.priority-contact .contact-speed {
    color: white;
}

.emergency-contact {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--accent) 0%, #f56565 100%);
    color: white;
}

.emergency-contact .contact-speed {
    color: white;
}

.contact-details-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info-card,
.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.contact-method:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.method-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.method-content {
    width: 100%;
}

.method-content h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.method-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

.method-link:hover {
    text-decoration: underline;
}

.method-hours,
.method-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
    line-height: 1.4;
}

.emergency-info {
    background: linear-gradient(135deg, var(--accent) 0%, #f56565 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 24px;
    margin-top: 2rem;
    text-align: center;
}

.emergency-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.emergency-icon {
    font-size: 1.5rem;
}

.emergency-btn {
    background: white;
    color: var(--accent);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0 0.5rem 0;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.emergency-hours {
    font-size: 0.875rem;
    opacity: 0.9;
}

.estimate-form {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    grid-column: 1 / -1;
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.form-submit-btn .btn-subtext {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    margin-top: 0.25rem;
    opacity: 0.9;
}

.form-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.guarantee {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.service-areas-detailed {
    padding: 4rem 0;
    background: var(--gray-50);
}

.service-coverage {
    margin-top: 2rem;
}

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

.county-section h3 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 1rem;
}

.towns-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.town-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.town-name {
    font-weight: 500;
}

.town-projects {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.coverage-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

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

.highlight-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-display);
    text-shadow: none;
}

.highlight-stat .stat-label {
    color: var(--gray-600);
    margin-top: 0.5rem;
    text-shadow: none;
}

.coverage-note {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.coverage-note h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.faq-contact-section {
    padding: 4rem 0;
}

.schedule-visit-section {
    padding: 3rem 0;
    background: var(--gray-50);
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.visit-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.step {
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 0.95rem;
}

.visit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.visit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.visit-guarantee {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

/* ===== RESPONSIVE DESIGN FOR NEW PAGES ===== */

@media (max-width: 768px) {
    .featured-project-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .project-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbs {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-summary-stats,
    .roi-examples {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .team-leader {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .coverage-map {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coverage-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .visit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .project-stats-grid,
    .team-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .form-guarantees {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== SEO INLINE LINKS ===== */
.inline-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 2px;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

/* Dark text version for light backgrounds */
.section-subtitle .inline-link {
    color: var(--primary);
    text-decoration-color: var(--primary);
}

.section-subtitle .inline-link:hover {
    color: var(--secondary);
    text-decoration-color: var(--secondary);
}

/* Inner page hero: keep links light, no underline */
.hero-content-centered .hero-description-center .inline-link {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content-centered .hero-description-center .inline-link:hover {
    color: #fbbf24;
}

/* Home page hero: no underline on links in subtitle */
.hero-subtitle .inline-link {
    text-decoration: none;
}
