/* ===== Prime Property Maintenance - Shared Styles ===== */

:root {
    --primary: #1A8FE0;
    --primary-dark: #1270B8;
    --primary-light: rgba(26,143,224,0.06);
    --primary-glow: rgba(26,143,224,0.12);
    --dark: #0D0D0D;
    --dark-light: #1A1A1A;
    --dark-mid: #2A2A2A;
    --white: #ffffff;
    --light-bg: #F5F7FA;
    --whatsapp: #25D366;
    --text: #3A3A3A;
    --text-light: #6B6B6B;
    --border: #E2E5EA;
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 18px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Utility ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    border: 1px solid var(--primary-glow);
}
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1.08rem;
    max-width: 560px;
    line-height: 1.75;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}
/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}
.btn:hover::after { width: 300px; height: 300px; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(26,143,224,0.35); }
.btn-white { background: white; color: var(--dark); border: 1px solid var(--border); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); transform: translateY(-3px); }
.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(37,211,102,0.35); }
.btn-phone { background: var(--dark); color: white; }
.btn-phone:hover { background: var(--dark-light); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(13,13,13,0.35); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* ===== Top Bar ===== */
.top-bar {
    background: #1A1A1A;
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    letter-spacing: 0.01em;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-bar a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.top-bar a:hover { color: var(--primary); }
.top-bar-links { display: flex; gap: 1.5rem; align-items: center; }

/* ===== Header ===== */
header {
    background: #000000;
    padding: 0.85rem 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}
header.scrolled {
    padding: 0.55rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    background: #000000;
}
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo img { height: 100px; width: auto; transition: height var(--transition); }
header.scrolled .logo img { height: 50px; }
nav { display: flex; align-items: center; gap: 0.2rem; }
nav a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    padding: 0.55rem 1.1rem;
    border-radius: 8px;
    transition: all var(--transition);
    font-size: 0.92rem;
    position: relative;
    letter-spacing: 0.01em;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width var(--transition), left var(--transition);
}
nav a:hover::after, nav a.active::after { width: 55%; left: 22.5%; }
nav a:hover { color: var(--primary); }
nav a.active { color: var(--primary); font-weight: 600; }
header nav a { color: rgba(255,255,255,0.85); }
header nav a:hover { color: var(--primary); }
header nav a.active { color: var(--primary); }
.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 0.55rem 1.3rem !important;
    margin-left: 0.6rem;
    border-radius: 10px;
    font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,143,224,0.25); }
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(160deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.72) 100%), url('images/banner.jpeg') center/cover no-repeat;
    color: white;
    padding: 6.5rem 0 5.5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
}
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(26,143,224,0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 10s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { opacity: 0.4; transform: translate(0, 0); }
    100% { opacity: 0.8; transform: translate(-40px, 30px); }
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26,143,224,0.1);
    border: 1px solid rgba(26,143,224,0.2);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease-in-out infinite;
    letter-spacing: 0.02em;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26,143,224,0.15); }
    50% { box-shadow: 0 0 0 10px rgba(26,143,224,0); }
}
.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.hero h1 span { color: var(--primary); }
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.25rem;
    max-width: 460px;
    line-height: 1.75;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    color: var(--text);
    transform: translateY(0);
    transition: transform var(--transition), box-shadow var(--transition);
}
.hero-form-card:hover { transform: translateY(-4px); box-shadow: 0 35px 90px rgba(0,0,0,0.22); }
.hero-form-card h3 { color: var(--dark); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.hero-form-card .form-sub { color: var(--text-light); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* ===== Forms ===== */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 0.35rem; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--transition);
    background: var(--light-bg);
    color: var(--dark);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-weight: 400;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-glow);
}
.form-group textarea { resize: vertical; min-height: 90px; }
/* Label-free form variant */
.form-minimal .form-group label { display: none; }
.form-minimal .form-group input,
.form-minimal .form-group textarea {
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
}
.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}
.form-submit-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,143,224,0.3); }
.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ===== Trust Bar ===== */
.trust-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
}
.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.trust-item:hover { background: var(--light-bg); transform: translateY(-4px); }
.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border: 1px solid var(--primary-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all var(--transition);
}
.trust-icon svg { width: 24px; height: 24px; fill: var(--primary); transition: fill var(--transition); }
.trust-item:hover .trust-icon { background: var(--primary); border-color: var(--primary); color: white; transform: rotate(5deg) scale(1.08); }
.trust-item:hover .trust-icon svg { fill: white; }
.trust-text { text-align: left; }
.trust-text strong { display: block; font-size: 0.88rem; color: var(--dark); font-weight: 700; letter-spacing: -0.01em; }
.trust-text span { font-size: 0.77rem; color: var(--text-light); }

/* ===== Service Cards ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.service-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.service-card-img {
    height: 210px;
    overflow: hidden;
    position: relative;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 1.75rem; }
.service-card-body h3 { color: var(--dark); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.service-card-body p { font-size: 0.9rem; line-height: 1.7; color: var(--text-light); }
.service-icon-inline {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}
.service-card:hover .service-icon-inline { transform: rotate(-5deg) scale(1.08); }

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-slow);
}
.about-image-wrapper:hover img { transform: scale(1.03); }
.about-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.2;
    box-shadow: var(--shadow-lg);
    letter-spacing: -0.02em;
}
.about-image-badge span { display: block; font-size: 0.78rem; font-weight: 500; opacity: 0.9; letter-spacing: 0; }
.about-features {
    margin-top: 1.75rem;
}
.about-features li {
    padding: 0.7rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.98rem;
    transition: all var(--transition);
    color: var(--text);
}
.about-features li:hover { transform: translateX(6px); }
.check {
    width: 26px;
    height: 26px;
    background: var(--primary-light);
    border: 1px solid var(--primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all var(--transition);
}
.about-features li:hover .check { background: var(--primary); border-color: var(--primary); color: white; }
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.about-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.about-stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.about-stat .number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
}
.about-stat .label { font-size: 0.84rem; color: var(--text-light); font-weight: 500; }

/* ===== Areas ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.area-tag {
    background: white;
    padding: 1.15rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1.5px solid var(--border);
    cursor: default;
}
.area-tag:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.area-tag.primary { background: var(--primary); color: white; border-color: var(--primary); }
.area-tag.primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-5px); }

/* ===== Testimonials / Google Reviews ===== */
.testimonials { background: var(--light-bg); color: var(--text); position: relative; overflow: hidden; }
.testimonials-header .section-label { background: var(--primary-light); border-color: var(--primary-glow); }
.testimonials-header .section-title { color: var(--dark); }
.testimonials-header .section-subtitle { color: var(--text-light); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.google-rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.google-rating-header .google-g {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.google-rating-score { font-size: 2.8rem; font-weight: 800; color: var(--dark); line-height: 1; letter-spacing: -0.03em; }
.google-rating-detail { display: flex; flex-direction: column; gap: 0.15rem; }
.google-rating-stars { color: #fbbc04; font-size: 1.1rem; letter-spacing: 2px; }
.google-rating-count { font-size: 0.82rem; color: var(--text-light); }
.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.review-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; }
.review-name { font-weight: 700; color: var(--dark); font-size: 0.92rem; letter-spacing: -0.01em; }
.review-date { font-size: 0.78rem; color: var(--text-light); }
.review-stars { color: #fbbc04; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 0.6rem; }
.testimonial-card p { color: var(--text); font-size: 0.92rem; line-height: 1.75; margin-bottom: 0; font-style: normal; }
.review-source {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-light);
}
.review-source svg { width: 14px; height: 14px; }
.google-review-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
    padding: 0.85rem 1.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-xs);
}
.google-review-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: transparent; }
.google-review-link svg { width: 20px; height: 20px; }

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
    animation: ctaGlow 8s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -30px) scale(1.1); }
}
.cta-section h2 { font-size: 2.6rem; font-weight: 800; margin-bottom: 0.75rem; position: relative; z-index: 1; letter-spacing: -0.02em; }
.cta-section p { font-size: 1.1rem; opacity: 0.85; margin-bottom: 2.25rem; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
}
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.35rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    color: var(--text);
    border: 1px solid var(--border);
}
.contact-method:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); border-left: 3px solid var(--primary); border-color: transparent; border-left-color: var(--primary); }
.contact-method .icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition: all var(--transition);
}
.contact-method:hover .icon { transform: scale(1.08) rotate(5deg); }
.contact-method .icon.phone-icon { background: rgba(13,13,13,0.06); }
.contact-method .icon.wa-icon { background: rgba(37,211,102,0.08); }
.contact-method .icon.email-icon { background: rgba(26,143,224,0.08); }
.contact-method strong { display: block; color: var(--dark); font-size: 0.95rem; font-weight: 700; }
.contact-method span { font-size: 0.84rem; color: var(--text-light); }
.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.75rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.contact-form-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-form-card h3 { color: var(--dark); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.contact-form-card .form-sub { color: var(--text-light); font-size: 0.88rem; margin-bottom: 1.5rem; }

/* ===== Gallery ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: white;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    color: var(--text);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-xs); }
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 16px rgba(26,143,224,0.25); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-xs);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.6) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-label {
    position: absolute;
    bottom: 1rem;
    left: 1.25rem;
    color: white;
    font-weight: 600;
    font-size: 0.88rem;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
    letter-spacing: 0.01em;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
    animation: lbFadeIn 0.3s;
    backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 0 80px rgba(0,0,0,0.5);
    animation: lbZoomIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes lbZoomIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); transform: rotate(90deg) scale(1.05); }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
    background: linear-gradient(160deg, #0D0D0D 0%, #111820 50%, #0A1018 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/Roof-Replacement-Cost.jpg') center/cover no-repeat;
    opacity: 0.06;
    filter: saturate(0.3);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 0.6rem; letter-spacing: -0.03em; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 480px; margin: 0 auto; }
.breadcrumb {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Footer ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 4.5rem 0 1.5rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 1.5rem;
}
.footer-brand p { margin-top: 1.25rem; font-size: 0.88rem; line-height: 1.75; }
.footer-brand img { height: 50px; width: auto; object-fit: contain; }
footer h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 1.1rem; letter-spacing: -0.01em; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a { color: rgba(255,255,255,0.5); transition: all var(--transition); font-size: 0.88rem; }
footer ul a:hover { color: var(--primary); padding-left: 4px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition);
    font-size: 0.95rem;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.footer-bottom { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.3); padding-top: 0.5rem; }

/* ===== Google Reviews Section ===== */
.google-reviews-section { background: var(--dark); color: white; }
.google-reviews-section .section-label { color: var(--primary); }
.google-reviews-section .section-title { color: white; }
.google-reviews-section .section-subtitle { color: rgba(255,255,255,0.6); }

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.rating-big {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.rating-stars-row {
    display: flex;
    gap: 4px;
    margin: 6px 0;
}
.rating-stars-row svg { width: 22px; height: 22px; fill: #FBBC04; color: #FBBC04; }
.rating-meta { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3c4043;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    text-decoration: none;
}
.google-reviews-link:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.4); }

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.review-card-v2 {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 22px;
    transition: all var(--transition);
}
.review-card-v2:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }

.review-card-v2 .rv-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.review-card-v2 .rv-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    color: #000;
}
.review-card-v2 .rv-meta { flex: 1; min-width: 0; }
.review-card-v2 .rv-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rv-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #4285F4;
    background: rgba(66,133,244,0.1);
    padding: 2px 6px;
    border-radius: 4px;
}
.rv-verified svg { width: 10px; height: 10px; }
.review-card-v2 .rv-date { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.review-card-v2 .rv-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}
.review-card-v2 .rv-stars svg { width: 15px; height: 15px; fill: #FBBC04; color: #FBBC04; }
.review-card-v2 .rv-text { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.65; }
.review-card-v2 .rv-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}
.rv-google-g {
    width: 18px; height: 18px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 0.7rem;
    font-family: serif;
    color: #4285F4;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Floating WhatsApp ===== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}
.floating-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.floating-whatsapp svg { width: 32px; height: 32px; fill: white; }
@keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 35px rgba(37,211,102,0.55); }
}
.floating-whatsapp { animation: floatPulse 2.5s ease-in-out infinite; }

/* ===== Mobile Sticky Bar ===== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    z-index: 998;
    padding: 0.6rem;
}
.mobile-sticky-bar .bar-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
}
.mobile-sticky-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.84rem;
    color: white;
    transition: all var(--transition);
}
.mobile-sticky-bar a:hover { transform: translateY(-2px); }
.bar-call { background: var(--dark); }
.bar-whatsapp { background: var(--whatsapp); }
.bar-quote { background: var(--primary); }

/* ===== Photo Banner ===== */
.photo-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}
.photo-banner img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform var(--transition-slow), filter var(--transition);
    filter: saturate(0.85);
}
.photo-banner img:hover { transform: scale(1.06); filter: saturate(1.1); }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-form-card { max-width: 480px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-banner { grid-template-columns: repeat(2, 1fr); height: 220px; }
    .page-hero h1 { font-size: 2.3rem; }
    .section { padding: 5rem 0; }
}
@media (max-width: 768px) {
    .top-bar { display: none; }
    nav { display: none; }
    .mobile-toggle { display: block; }
    nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        box-shadow: var(--shadow-lg);
        padding: 1rem;
        z-index: 999;
    }
    nav.active a { padding: 0.75rem 1rem; color: rgba(255,255,255,0.85); }
    .hero { padding: 3.5rem 0; }
    .hero h1 { font-size: 2.1rem; }
    .section { padding: 4rem 0; }
    .section-title { font-size: 1.85rem; }
    .services-grid { grid-template-columns: 1fr; }
    .trust-items { grid-template-columns: 1fr 1fr; }
    .floating-cta { display: block; }
    .mobile-sticky-bar { display: none; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .photo-banner { grid-template-columns: 1fr 1fr; height: 160px; }
    .gallery-filters { gap: 0.4rem; }
    .filter-btn { padding: 0.5rem 1rem; font-size: 0.82rem; }
    .container { padding: 0 1.25rem; }
    .cta-section h2 { font-size: 2rem; }
    .page-hero { padding: 3.5rem 0; }
    .page-hero h1 { font-size: 2rem; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .photo-banner { grid-template-columns: 1fr; height: 200px; }
    .hero h1 { font-size: 1.85rem; }
}
