/* ==============================================
   GUTTERS PAGE STYLES
   ============================================== */

/* Hero Section */
.hero {
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(56, 189, 248, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(34, 197, 94, 0.06), transparent 50%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: clamp(3rem, 5vw, 4rem);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-title span {
    background: linear-gradient(135deg, #22c55e 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.6;
    max-width: 50ch;
    margin-bottom: 1.5rem;
}

body.theme-light .hero-description {
    color: var(--slate-600);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
    text-decoration: none;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
    text-decoration: none;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(148, 163, 184, 0.1);
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hero-cta-secondary:hover {
    background: rgba(148, 163, 184, 0.15);
    border-color: rgba(148, 163, 184, 0.35);
    text-decoration: none;
}

body.theme-light .hero-cta-secondary {
    color: var(--slate-700);
}

/* Hero Image */
.hero-art {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* Google Reviews Badge */
.hero-metrics {
    margin-top: 1.5rem;
}

.metric-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 999px;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.metric-pill:hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.25);
    text-decoration: none;
}

.metric-brand svg {
    width: 20px;
    height: 20px;
}

.metric-stars {
    color: #fbbf24;
    letter-spacing: -0.05em;
}

.metric-score {
    font-weight: 600;
    color: #f8fafc;
}

body.theme-light .metric-score {
    color: var(--slate-700);
}

.metric-cta {
    color: #22c55e;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ==============================================
   SERVICES SECTION
   ============================================== */

.services-section {
    padding: var(--section-spacing) 0;
    background: rgba(0, 12, 36, 0.4);
}

body.theme-light .services-section {
    background: rgba(241, 245, 249, 0.6);
}

.services-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services-eyebrow {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12) 0%, rgba(56, 189, 248, 0.06) 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.services-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.services-subtitle {
    font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
    color: rgba(226, 232, 240, 0.75);
    max-width: 55ch;
    margin: 0 auto;
}

body.theme-light .services-subtitle {
    color: var(--slate-600);
}

.services-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

body.theme-light .service-card {
    background: white;
    border-color: rgba(148, 163, 184, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card-description {
    font-size: 0.9375rem;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.6;
    flex: 1;
}

body.theme-light .service-card-description {
    color: var(--slate-600);
}

/* ==============================================
   PROCESS SECTION
   ============================================== */

.process-overview {
    padding: var(--section-spacing) 0;
}

.process-eyebrow {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12) 0%, rgba(56, 189, 248, 0.06) 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.process-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.process-subtitle {
    font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
    color: rgba(226, 232, 240, 0.75);
    max-width: 55ch;
    margin-bottom: 2.5rem;
}

body.theme-light .process-subtitle {
    color: var(--slate-600);
}

.process-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.process-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: all 0.3s ease;
}

body.theme-light .process-card {
    background: white;
    border-color: rgba(148, 163, 184, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
}

.process-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.process-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-card p {
    font-size: 0.9375rem;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.6;
}

body.theme-light .process-card p {
    color: var(--slate-600);
}

/* ==============================================
   GALLERY SECTION
   ============================================== */

.gallery-section {
    padding: var(--section-spacing) 0;
    background: rgba(0, 12, 36, 0.4);
}

body.theme-light .gallery-section {
    background: rgba(241, 245, 249, 0.6);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-subtitle {
    font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
    color: rgba(226, 232, 240, 0.75);
    max-width: 55ch;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: all 0.3s ease;
}

body.theme-light .gallery-item {
    background: white;
    border-color: rgba(148, 163, 184, 0.25);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gallery-caption strong {
    font-weight: 600;
    font-size: 1rem;
}

.gallery-caption span {
    font-size: 0.875rem;
    color: rgba(226, 232, 240, 0.7);
}

body.theme-light .gallery-caption span {
    color: var(--slate-500);
}

/* ==============================================
   BENEFITS SECTION
   ============================================== */

.reviews-section {
    padding: var(--section-spacing) 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.reviews-eyebrow {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12) 0%, rgba(56, 189, 248, 0.06) 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.reviews-heading h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.reviews-description {
    font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
    color: rgba(226, 232, 240, 0.75);
    max-width: 55ch;
    margin: 0.75rem auto 0;
}

body.theme-light .reviews-description {
    color: var(--slate-600);
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.review-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

body.theme-light .review-card {
    background: white;
    border-color: rgba(148, 163, 184, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
}

.review-header strong {
    font-size: 1.125rem;
    font-weight: 700;
}

.review-quote {
    font-size: 0.9375rem;
    color: rgba(226, 232, 240, 0.8);
    line-height: 1.6;
    margin-top: 0.75rem;
}

body.theme-light .review-quote {
    color: var(--slate-600);
}

/* ==============================================
   CTA SECTION
   ============================================== */

.section-dark {
    padding: var(--section-spacing) 0;
}

.services-cta {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(56, 189, 248, 0.08) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.services-cta h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.services-cta p {
    font-size: clamp(0.9375rem, 1.25vw, 1.0625rem);
    color: rgba(226, 232, 240, 0.8);
    max-width: 50ch;
    margin: 0 auto 1.5rem;
}

body.theme-light .services-cta p {
    color: var(--slate-600);
}

.services-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.services-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
    text-decoration: none;
}

.services-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
    text-decoration: none;
}

.services-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(148, 163, 184, 0.1);
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.services-cta-secondary:hover {
    background: rgba(148, 163, 184, 0.15);
    border-color: rgba(148, 163, 184, 0.35);
    text-decoration: none;
}

body.theme-light .services-cta-secondary {
    color: var(--slate-700);
}

/* ==============================================
   FOOTER
   ============================================== */

.footer-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li,
.footer-links a {
    font-size: 0.9375rem;
    color: rgba(226, 232, 240, 0.75);
}

body.theme-light .footer-links li,
body.theme-light .footer-links a {
    color: var(--slate-600);
}

.footer-links a:hover {
    color: #22c55e;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

body.theme-light .footer-bottom {
    border-top-color: rgba(148, 163, 184, 0.25);
}

.theme-btn {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    padding: 0.375rem;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.theme-btn:hover {
    opacity: 0.8;
    border-color: rgba(148, 163, 184, 0.5);
}

.theme-btn.active {
    opacity: 1;
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}