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

:root {
    --black: #ffffff;
    --dark: #f5f5f5;
    --darker: #ffffff;
    --gray: #777777;
    --light-gray: #555555;
    --white: #1a1a1a;
    --red: #D00101;
    --red-dark: #a80000;
    --red-glow: rgba(208, 1, 1, 0.15);
    --pure-white: #ffffff;
    --border: rgba(0,0,0,0.08);
    --shadow: rgba(0,0,0,0.06);
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --container: 1200px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-4 { margin-top: 48px; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
}
.btn-primary { background: var(--red); color: var(--pure-white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 25px var(--red-glow); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--pure-white); }
.btn-white { background: var(--pure-white); color: var(--red); border-color: var(--pure-white); }
.btn-white:hover { background: transparent; color: var(--pure-white); border-color: var(--pure-white); }
.btn-outline-white { background: transparent; color: var(--pure-white); border-color: var(--pure-white); }
.btn-outline-white:hover { background: var(--pure-white); color: var(--red); }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; text-align: center; }
.btn-nav { padding: 10px 24px; font-size: 13px; }

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--red);
    color: var(--pure-white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.top-bar a { color: var(--pure-white); }
.top-bar a:hover { opacity: 0.8; }

/* ============ NAVBAR ============ */
.navbar {
    background: var(--pure-white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.navbar.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 4px 30px var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gray); }
.nav-links a:hover { color: var(--white); }
.nav-links a.btn { color: var(--pure-white); }
.nav-links a.active { color: var(--red); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 28px; height: 2px; background: var(--white); margin: 6px 0; transition: var(--transition); }


/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('../images/services-section.jpeg') center center / cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.45) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 80px 0; color: var(--pure-white); }
.hero-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--pure-white);
}
.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.trust-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.badge {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}
.badge-icon { color: var(--red); display: flex; align-items: center; }
.badge-icon svg { width: 18px; height: 18px; fill: var(--red); }

/* ============ SECTION STYLES ============ */
.section-tag {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    text-align: center;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.section-title.left-align { text-align: left; }
.section-sub {
    text-align: center;
    color: var(--gray);
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ============ SERVICES (HOME) ============ */
.services { padding: 100px 0; background: var(--dark); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.services-grid.four-col { grid-template-columns: repeat(4, 1fr); }
.service-card {
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 28px;
    transition: var(--transition);
    display: block;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
}
.service-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.service-icon { width: 48px; height: 48px; color: var(--red); margin-bottom: 24px; }
.service-card h3 { font-family: var(--font-heading); font-size: 19px; margin-bottom: 16px; line-height: 1.3; }
.service-card p { color: var(--gray); font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
.card-link { font-size: 14px; font-weight: 600; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 4px; }
.card-link .arrow { transition: var(--transition); }
.service-card:hover .card-link .arrow { transform: translateX(4px); }
.service-features { padding-left: 0; }
.service-features li {
    font-size: 14px;
    color: var(--light-gray);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}
.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}

/* ============ SERVICE DETAIL (SERVICES PAGE) ============ */
.service-detail { padding: 100px 0; background: var(--black); }
.service-detail.alt-bg { background: var(--dark); }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-detail-grid.reverse .service-detail-content { order: 1; }
.service-detail-grid.reverse .service-detail-image { order: 0; }
.service-detail-content .section-tag { text-align: left; }
.service-intro { color: var(--gray); font-size: 16px; margin-bottom: 32px; line-height: 1.8; }
.service-detail-image { border-radius: 8px; overflow: hidden; }
.service-detail-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; }

.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 16px; }
.feature-icon { width: 24px; height: 24px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.feature-icon svg { width: 24px; height: 24px; fill: var(--red); }
.feature-item strong { display: block; font-size: 16px; margin-bottom: 4px; color: var(--white); }
.feature-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ============ ADDITIONAL SERVICES ============ */
.additional-services { padding: 100px 0; background: var(--black); }
.additional-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 0; }
.additional-card {
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    transition: var(--transition);
    box-shadow: 0 2px 12px var(--shadow);
}
.additional-card:hover { border-color: var(--red); }
.additional-card h3 { font-family: var(--font-heading); font-size: 17px; margin-bottom: 10px; }
.additional-card p { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* ============ WHY CHOOSE US ============ */
.why-us { padding: 100px 0; background: var(--black); }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-us-image { position: relative; border-radius: 8px; overflow: hidden; }
.why-us-image img { width: 100%; height: 600px; object-fit: cover; border-radius: 8px; }
.why-us-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(0,0,0,0.15));
    border-radius: 8px;
}
.why-us-content .section-tag { text-align: left; }

.why-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-number {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--red);
    flex-shrink: 0;
    line-height: 1;
    padding-top: 4px;
}
.why-item h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.why-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ============ FEATURED PROJECT ============ */
.featured-project { padding: 100px 0; background: var(--dark); }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.featured-image { border-radius: 8px; overflow: hidden; }
.featured-image img { width: 100%; height: 450px; object-fit: cover; border-radius: 8px; }
.featured-content .section-tag { text-align: left; }
.featured-content p { color: var(--gray); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }

/* ============ OUR WORK / GALLERY ============ */
.work { padding: 100px 0; background: var(--dark); }

.gallery-filter { display: flex; justify-content: center; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
    background: var(--pure-white);
    border: 1px solid var(--border);
    color: var(--gray);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.filter-btn:hover { border-color: var(--red); color: var(--white); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--pure-white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--red); font-weight: 600; margin-bottom: 4px; }
.gallery-title { font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; color: #ffffff; }

.gallery-item.hidden { display: none; }

/* ============ INSTAGRAM CTA ============ */
.instagram-cta { margin-top: 64px; }
.instagram-inner {
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.instagram-text h3 { font-family: var(--font-heading); font-size: 24px; margin-bottom: 8px; }
.instagram-text p { color: var(--gray); font-size: 15px; max-width: 500px; }
.instagram-links { display: flex; gap: 12px; flex-shrink: 0; }

/* ============ QUALITY CALLOUT ============ */
.quality-callout { padding: 80px 0; background: var(--black); }
.quality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.quality-item h3 { font-family: var(--font-heading); font-size: clamp(32px, 4vw, 48px); color: var(--red); margin-bottom: 8px; }
.quality-item p { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--light-gray); font-weight: 500; }

/* ============ STATS ============ */
.stats { padding: 80px 0; background: var(--red); color: var(--pure-white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 56px);
    display: inline;
}
.stat-plus { font-family: var(--font-heading); font-size: clamp(32px, 4vw, 44px); }
.stat-label-inline { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 32px); }
.stat-label { display: block; font-size: 14px; font-weight: 500; opacity: 0.85; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.stat-text { font-family: var(--font-heading); font-size: 20px; }
.stat-number-small { font-family: var(--font-heading); font-size: clamp(28px, 3vw, 36px); margin-left: 4px; }

/* ============ PROCESS PREVIEW (HOME) ============ */
.process-preview { padding: 100px 0; background: var(--black); }
.process-grid { display: flex; align-items: flex-start; gap: 0; margin-top: 48px; justify-content: center; }
.process-step { text-align: center; max-width: 240px; flex-shrink: 0; }
.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.process-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.process-connector {
    width: 60px;
    height: 2px;
    background: rgba(0,0,0,0.12);
    margin-top: 28px;
    flex-shrink: 0;
}

/* ============ PROCESS DETAILED (PROCESS PAGE) ============ */
.process-detailed { padding: 100px 0; background: var(--black); }
.process-timeline { max-width: 800px; margin: 0 auto; }

.timeline-step { display: flex; gap: 32px; margin-bottom: 0; }
.timeline-step:last-child .timeline-line { display: none; }

.timeline-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-marker .step-number { margin: 0; flex-shrink: 0; }
.timeline-line { width: 2px; flex: 1; background: rgba(0,0,0,0.1); margin-top: 12px; }

.timeline-content { padding-bottom: 64px; }
.timeline-content h2 { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.timeline-intro { color: var(--light-gray); font-size: 16px; margin-bottom: 24px; line-height: 1.7; }
.timeline-intro a { color: var(--red); font-weight: 600; }
.timeline-intro a:hover { text-decoration: underline; }

.timeline-details { background: var(--pure-white); border: 1px solid var(--border); border-radius: 8px; padding: 28px; box-shadow: 0 2px 12px var(--shadow); }
.timeline-details h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--red); margin-bottom: 16px; }
.timeline-details ul { padding-left: 0; }
.timeline-details li {
    font-size: 14px;
    color: var(--light-gray);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}
.timeline-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}
.timeline-note { margin-top: 16px; font-size: 14px; color: var(--red); font-weight: 600; }

/* ============ WHAT'S INCLUDED ============ */
.whats-included { padding: 100px 0; background: var(--dark); }
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px;
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--shadow);
}
.included-item:hover { border-color: var(--red); }
.included-icon { flex-shrink: 0; }
.included-icon svg { width: 24px; height: 24px; fill: var(--red); }
.included-item span { font-size: 14px; font-weight: 500; color: var(--light-gray); }

/* ============ QUALITY STANDARDS ============ */
.quality-standards { padding: 100px 0; background: var(--dark); }
.standards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.standard-card {
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 12px var(--shadow);
}
.standard-card:hover { border-color: var(--red); transform: translateY(-4px); }
.standard-icon { margin-bottom: 16px; }
.standard-icon svg { width: 32px; height: 32px; fill: var(--red); margin: 0 auto; display: block; }
.standard-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.standard-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 0; background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.testimonial-card {
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px 32px;
    transition: var(--transition);
    box-shadow: 0 2px 12px var(--shadow);
}
.testimonial-card:hover { border-color: rgba(208,1,1,0.3); }
.stars { color: #FFD700; font-size: 20px; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--light-gray); line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--red); }

/* ============ ABOUT ============ */
.about { padding: 100px 0; background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-content .section-tag { text-align: left; }
.about-content p { color: var(--gray); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.about-highlights { margin-top: 32px; }
.highlight {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.highlight:last-child { border-bottom: none; }
.highlight strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 4px; }
.highlight span { font-size: 14px; color: var(--gray); }
.about-image { border-radius: 8px; overflow: hidden; }
.about-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; }

/* ============ CTA BANNER ============ */
.cta-banner {
    padding: 80px 0;
    background: var(--red);
    text-align: center;
    color: var(--pure-white);
}
.cta-content h2 { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; color: var(--pure-white); }
.cta-content p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; color: var(--pure-white); }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============ CONTACT ============ */
.contact { padding: 100px 0; background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 2px 12px var(--shadow);
}
.contact-form-title { font-family: var(--font-heading); font-size: 24px; margin-bottom: 0; }
.form-cta-text { font-size: 16px; color: var(--light-gray); max-width: 440px; line-height: 1.7; }
.form-or { font-size: 14px; color: var(--gray); text-transform: uppercase; letter-spacing: 2px; }
.form-trust { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.form-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--light-gray); }
.form-trust-item svg { width: 20px; height: 20px; fill: var(--red); flex-shrink: 0; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 8px var(--shadow);
}
.info-card-icon { margin-bottom: 8px; }
.info-card-icon svg { width: 24px; height: 24px; fill: var(--red); }
.info-card h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); margin-bottom: 8px; }
.info-phone { font-family: var(--font-heading); font-size: 24px; color: var(--red); }
.info-card a:hover { color: var(--red); }
.info-card p { color: var(--light-gray); font-size: 15px; line-height: 1.6; }
.info-card.license {
    background: transparent;
    border-color: var(--red);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.info-card.license svg { fill: var(--red); }
.info-card.license p { font-weight: 600; color: var(--red); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.license-sub { font-weight: 400 !important; font-size: 12px !important; letter-spacing: 0.5px !important; color: var(--gray) !important; margin-top: 4px; }

.social-links { display: flex; gap: 16px; margin-top: 8px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: var(--dark); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a svg { width: 18px; height: 18px; fill: var(--gray); transition: var(--transition); }
.social-links a:hover { background: var(--red); }
.social-links a:hover svg { fill: var(--pure-white); }

/* ============ SERVICE AREA ============ */
.service-area { padding: 100px 0; background: var(--black); }
.area-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 0; }
.area-tag {
    background: var(--pure-white);
    border: 1px solid var(--border);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--light-gray);
    transition: var(--transition);
}
.area-tag:hover { border-color: var(--red); color: var(--white); }
.area-note { text-align: center; margin-top: 32px; color: var(--gray); font-size: 15px; }

/* ============ FOOTER ============ */
.footer { padding: 64px 0 32px; background: #1a1a1a; border-top: none; color: #cccccc; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { height: 40px; margin-bottom: 12px; }
.footer-brand p { color: #999999; font-size: 14px; margin-bottom: 16px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a svg { width: 16px; height: 16px; fill: #cccccc; transition: var(--transition); }
.footer-social a:hover { background: var(--red); }
.footer-social a:hover svg { fill: #ffffff; }

.footer-links h4, .footer-contact h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: #999999; margin-bottom: 16px; }
.footer-links a, .footer-contact a { display: block; color: #cccccc; font-size: 14px; padding: 4px 0; }
.footer-links a:hover, .footer-contact a:hover { color: var(--red); }
.footer-contact p { color: #cccccc; font-size: 14px; padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 13px; color: #777777; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
    padding: 120px 0 60px;
    background: var(--dark);
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-hero .section-tag { margin-bottom: 16px; }
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 16px;
}
.page-hero p { color: var(--gray); font-size: 17px; max-width: 650px; margin: 0 auto; line-height: 1.7; }

/* ============ SUPPLIER PARTNERS ============ */
.supplier-partners { padding: 80px 0; background: var(--darker); }
.supplier-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.supplier-logo-card {
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}
.supplier-logo-card:hover { border-color: var(--red); transform: translateY(-3px); }
.supplier-name {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
}
.supplier-arizona { color: #0066B2; }
.supplier-fnd { color: #FF6600; }
.supplier-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }
.supplier-row-label {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 48px;
    margin-bottom: 24px;
}
.supplier-row-label:first-of-type { margin-top: 0; }
.supplier-flofx { color: #4CAF50; }
.supplier-hydroblok { color: #00AEEF; }
.supplier-schluter { color: #E87722; }
.supplier-mapei { color: #0057A0; }
.supplier-note { text-align: center; color: var(--gray); font-size: 15px; max-width: 700px; margin: 32px auto 0; line-height: 1.7; }

@media (max-width: 768px) {
    .supplier-logos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .supplier-logos { grid-template-columns: 1fr; }
}

/* ============ WARRANTY TIERS ============ */
.warranty-tiers { padding: 100px 0; background: var(--black); }
.warranty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.warranty-card {
    background: var(--pure-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px var(--shadow);
}
.warranty-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.warranty-card.featured { border-color: var(--red); position: relative; }
.warranty-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}
.warranty-card-header {
    padding: 32px 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.warranty-tier-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(208, 1, 1, 0.1);
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 12px;
}
.warranty-card-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 4px;
}
.warranty-duration {
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
}
.warranty-card-body {
    padding: 28px;
    flex: 1;
}
.warranty-card-body ul { padding-left: 0; }
.warranty-card-body li {
    font-size: 14px;
    color: var(--light-gray);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}
.warranty-card-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
}
.warranty-note {
    text-align: center;
    margin-top: 32px;
    font-size: 17px;
    font-weight: 600;
    color: var(--red);
}

/* ============ FINANCING NOTE ============ */
.financing-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    text-align: center;
}

/* ============ COMPARISON TABLE (Blog) ============ */
.comparison-table-wrapper { overflow-x: auto; margin: 32px 0; border-radius: 8px; border: 1px solid var(--border); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.comparison-table thead th {
    background: var(--red);
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-size: 15px;
    padding: 16px 20px;
    text-align: left;
    letter-spacing: 0.5px;
}
.comparison-table thead th:first-child { background: var(--dark); color: var(--gray); }
.comparison-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--light-gray);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    line-height: 1.6;
}
.comparison-table tbody td:first-child {
    font-weight: 600;
    color: var(--white);
    background: rgba(0,0,0,0.02);
    white-space: nowrap;
}
.comparison-table tbody tr:hover td { background: rgba(0,0,0,0.03); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
@media (max-width: 600px) {
    .comparison-table { font-size: 13px; }
    .comparison-table thead th, .comparison-table tbody td { padding: 10px 12px; }
}

/* ============ ANIMATIONS ============ */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services-grid, .services-grid.four-col { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; }
    .why-us-image { order: -1; }
    .why-us-image img { height: 400px; }
    .why-us-content .section-tag, .why-us-content .section-title { text-align: center; }
    .featured-grid { grid-template-columns: 1fr; }
    .featured-image img { height: 350px; }
    .featured-content .section-tag, .featured-content .section-title { text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large { grid-column: span 2; grid-row: span 1; }
    .gallery-item.tall { grid-row: span 1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .quality-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-content .section-tag, .about-content .section-title { text-align: center; }
    .service-detail-grid, .service-detail-grid.reverse { grid-template-columns: 1fr; }
    .service-detail-grid.reverse .service-detail-content { order: 0; }
    .service-detail-grid.reverse .service-detail-image { order: 1; }
    .service-detail-content .section-tag, .service-detail-content .section-title { text-align: center; }
    .service-detail-image img { height: 350px; }
    .additional-grid { grid-template-columns: repeat(2, 1fr); }
    .standards-grid { grid-template-columns: repeat(2, 1fr); }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
    .warranty-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .instagram-inner { flex-direction: column; text-align: center; }
    .instagram-links { justify-content: center; }
}

@media (max-width: 768px) {
    .top-bar-inner { font-size: 11px; gap: 12px; }
    .top-bar-hours { display: none; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pure-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px var(--shadow);
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: block; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    .hero { min-height: 80vh; }
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 15px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { text-align: center; }
    .trust-badges { flex-direction: column; gap: 12px; }

    .services-grid, .services-grid.four-col { grid-template-columns: 1fr; }
    .additional-grid { grid-template-columns: 1fr; }
    .standards-grid { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; }

    .process-grid { flex-direction: column; align-items: center; gap: 32px; }
    .process-connector { width: 2px; height: 30px; }

    .timeline-step { gap: 20px; }
    .timeline-content { padding-bottom: 48px; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; }
    .gallery-item img { height: 250px; }
    .gallery-item.large img { height: 300px; }

    .stats-grid { grid-template-columns: 1fr 1fr; }
    .quality-grid { grid-template-columns: 1fr 1fr; }
    .cta-btns { flex-direction: column; align-items: center; }

    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { margin: 0 auto 12px; }
    .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
    .top-bar-inner span:nth-child(2),
    .top-bar-inner span:nth-child(3) { display: none; }
    .hero { min-height: 70vh; }
    .btn-lg { padding: 16px 32px; font-size: 14px; }
    .stats-grid { grid-template-columns: 1fr; }
    .quality-grid { grid-template-columns: 1fr; }
    .filter-btn { padding: 8px 16px; font-size: 12px; }
    .instagram-links { flex-direction: column; }
    .instagram-links .btn { width: 100%; text-align: center; }
}

/* ============ BLOG LISTING ============ */
.blog-listing { padding: 80px 0; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--pure-white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px var(--shadow);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: var(--red);
}

.blog-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.blog-card-date {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

.blog-category-tag {
    display: inline-block;
    background: rgba(208, 1, 1, 0.08);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--white);
}

.blog-card-excerpt {
    font-size: 15px;
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
    margin-left: auto;
}
.blog-read-time svg { opacity: 0.7; }

.blog-card-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card:hover .blog-card-link { color: var(--white); }

/* ============ BLOG POST ============ */
.blog-post { padding: 40px 0 80px; }

.blog-breadcrumb {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-breadcrumb:hover { color: var(--red); }

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}

.blog-post-header { margin-bottom: 32px; }
.blog-post-header .blog-category-tag { margin-bottom: 16px; }

.blog-post-header h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}
.meta-divider { color: var(--gray); opacity: 0.4; }

.blog-post-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin: 32px 0;
}
.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.blog-post-body {
    max-width: 800px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--light-gray);
}
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body strong { color: var(--white); }

.blog-post-body h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--white);
    margin-top: 48px;
    margin-bottom: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.blog-post-body h2:first-of-type { border-top: none; padding-top: 0; }

.blog-post-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--white);
    margin-top: 36px;
    margin-bottom: 16px;
}

.blog-post-body ul,
.blog-post-body ol {
    padding-left: 24px;
    margin-bottom: 24px;
}
.blog-post-body li {
    margin-bottom: 12px;
    list-style: disc;
    color: var(--light-gray);
}
.blog-post-body ol li { list-style: decimal; }
.blog-post-body em { font-style: italic; }

/* Blog CTA Box */
.blog-cta-box {
    background: var(--dark);
    border: 2px solid var(--red);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}
.blog-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
    margin-top: 0;
    border: none;
}
.blog-cta-box p {
    color: var(--light-gray);
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.blog-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Author Card */
.blog-author-card {
    display: flex;
    gap: 24px;
    align-items: center;
    background: var(--dark);
    border-radius: 8px;
    padding: 32px;
    margin-top: 48px;
    border: 1px solid var(--border);
}
.blog-author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.blog-author-info { display: flex; flex-direction: column; gap: 2px; }
.blog-author-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    font-weight: 600;
}
.blog-author-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--white);
}
.blog-author-title {
    font-size: 14px;
    color: var(--red);
    font-weight: 600;
}
.blog-author-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
    margin-top: 8px;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-toc {
    background: var(--dark);
    border-radius: 8px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}
.blog-toc h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--white);
}
.blog-toc nav { display: flex; flex-direction: column; gap: 10px; }
.blog-toc a {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
    line-height: 1.4;
}
.blog-toc a:hover { color: var(--red); }
.blog-toc a.toc-sub { padding-left: 16px; font-size: 13px; }

.blog-sidebar-cta {
    background: var(--dark);
    border-radius: 8px;
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
}
.blog-sidebar-cta h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--white);
}
.blog-sidebar-cta p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* ============ BLOG RESPONSIVE ============ */
@media (max-width: 1024px) {
    .blog-post-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-post-header h1 { font-size: 28px; }
    .blog-post-body h2 { font-size: 22px; }
    .blog-post-body h3 { font-size: 18px; }
    .blog-sidebar { grid-template-columns: 1fr; }
    .blog-author-card { flex-direction: column; text-align: center; }
    .blog-cta-box { padding: 28px 20px; }
    .blog-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .blog-card-image { height: 200px; }
    .blog-post-header h1 { font-size: 24px; }
    .blog-cta-box h3 { font-size: 20px; }
}
