/* ============================================
   Relentless Construction - Main Styles
   Dark Theme Design
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #2d8a5e;
    --primary-light: #359e6d;
    --primary-dark: #1e6b45;
    --dark-bg: #1a1a1a;
    --dark-bg-secondary: #242424;
    --dark-bg-card: #1e1e1e;
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.65);
    --border-dark: rgba(255, 255, 255, 0.15);
    --font-primary: 'Bricolage Grotesque', sans-serif;
    --font-secondary: 'Host Grotesk', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons - Sharp angular style with cut corner */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: scale(1.02);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

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

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

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
    overflow: visible;
}

.top-bar {
    background-color: var(--dark-bg);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-dark);
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left a,
.top-bar-left span {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    color: var(--primary-color);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: var(--text-light);
    font-size: 14px;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.header-main {
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list a {
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.nav-list .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--dark-bg-secondary);
    min-width: 200px;
    padding: 15px 0;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--border-dark);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.nav-list .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-list .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
}

.nav-list .dropdown-menu a:hover {
    background-color: rgba(45, 138, 94, 0.2);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
}

.header-phone i {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 60px;
    align-items: start;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(45, 138, 94, 0.3);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    border-radius: 0;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text h1 .highlight {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
}

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

.hero-stat .number {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-stat .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Hero Form */
.hero-form {
    background-color: var(--white);
    padding: 35px;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.hero-form h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.hero-form .form-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-bg);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-secondary);
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #f8f8f8;
    transition: var(--transition);
    color: var(--dark-bg);
}

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

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

.form-disclaimer {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

/* Hero Gallery */
.hero-gallery {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.hero-gallery img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-gallery img:hover,
.hero-gallery img.active {
    border-color: var(--primary-color);
}

/* ============================================
   Reviews Section (Green Banner)
   ============================================ */
.reviews-section {
    background-color: var(--primary-color);
    padding: 30px 0;
}

.reviews-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.reviews-text h2 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.reviews-badges {
    display: flex;
    gap: 40px;
    align-items: center;
}

.review-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.review-badge img {
    height: 50px;
    width: auto;
}

.review-badge-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.review-badge-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.review-badge-text {
    text-align: center;
}

.review-badge-text .rating {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.review-badge-text .source {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background-color: rgba(45, 138, 94, 0.2);
    border: 1px solid var(--primary-color);
    padding: 6px 16px;
    border-radius: 0;
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.section-header h2 .highlight {
    color: var(--primary-color);
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.service-card {
    background-color: var(--dark-bg-secondary);
    padding: 35px 25px;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services with Images (2-column layout) */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-overview-card {
    background-color: var(--dark-bg-secondary);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.service-overview-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-overview-image {
    height: 250px;
    overflow: hidden;
}

.service-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-overview-content {
    padding: 30px;
}

.service-overview-content h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

.service-overview-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-overview-content .btn {
    width: 100%;
}

/* ============================================
   Redefining Section (Side by Side)
   ============================================ */
.redefining-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

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

.redefining-text .section-badge {
    margin-bottom: 15px;
}

.redefining-text h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
}

.redefining-text h2 .highlight {
    color: var(--primary-color);
}

.redefining-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--white);
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 16px;
}

.redefining-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.icon-card {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 0;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.icon-card i {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 12px;
}

.icon-card span {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}

/* ============================================
   Process Section
   ============================================ */
.process-section {
    padding: 100px 0;
    background-color: var(--dark-bg-secondary);
}

.process-section .section-header h2 {
    font-size: 38px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    font-family: var(--font-primary);
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.step-icon i {
    font-size: 28px;
    color: var(--white);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--white);
    text-transform: uppercase;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Service Areas Section
   ============================================ */
.areas-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

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

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.area-card {
    background-color: var(--dark-bg-secondary);
    padding: 40px;
    border-radius: 0;
    border: 1px solid var(--border-dark);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.area-card h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-card h3 i {
    color: var(--primary-color);
}

.area-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.area-card ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.area-card li {
    font-size: 15px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.area-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* ============================================
   Testimonials / Reviews Section
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--dark-bg-secondary);
}

.google-reviews-widget {
    background-color: var(--white);
    border-radius: 0;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.google-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-logo img {
    height: 30px;
}

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

.google-rating .stars {
    color: #ffc107;
}

.google-rating span {
    color: #333;
    font-weight: 600;
}

.write-review-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 500;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

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

.review-card {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 2px;
}

.review-author .stars {
    color: #ffc107;
    font-size: 13px;
}

.review-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.verified-badge {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.verified-badge a {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0;
    font-size: 13px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-dark);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

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

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 25px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background-color: var(--dark-bg-secondary);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info-card {
    background-color: var(--dark-bg-secondary);
    padding: 40px 30px;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--border-dark);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.footer-info-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-info-card h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-info-card p,
.footer-info-card a {
    font-size: 15px;
    color: var(--text-light);
}

.footer-info-card a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background-color: var(--dark-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

/* ============================================
   Page Hero (Internal Pages)
   ============================================ */
.page-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.page-hero-text {
    max-width: 600px;
}

.page-hero-text .hero-badge {
    margin-bottom: 20px;
}

.page-hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-hero-text h1 .highlight {
    color: var(--primary-color);
}

.page-hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ============================================
   Services Built to Last (About Page style)
   ============================================ */
.services-built-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.services-built-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.services-built-image img {
    width: 100%;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.services-built-text .section-badge {
    margin-bottom: 15px;
}

.services-built-text h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 25px;
}

.services-built-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Services Built Grid Layout (Services Page) */
.services-built-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-built-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--dark-bg-secondary);
    border: 1px solid var(--border-dark);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.service-built-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

a.service-built-card h3,
a.service-built-card p {
    color: inherit;
}

.service-built-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.service-built-icon i {
    font-size: 22px;
    color: var(--white);
}

.service-built-info h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.service-built-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Services Built Content - Grid with Text side by side */
.services-built-section .services-built-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* 3-step process layout */
.process-steps-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   Core Values Section
   ============================================ */
.values-section {
    padding: 100px 0;
    background-color: var(--dark-bg-secondary);
}

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

.value-card {
    text-align: center;
    padding: 40px 30px;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(45, 138, 94, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Team / Leadership Section
   ============================================ */
.team-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.team-card {
    background-color: var(--primary-color);
    border-radius: 0;
    overflow: hidden;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card-content {
    padding: 20px;
}

.team-card h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
}

.team-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.team-row-small {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.team-row-small .team-card {
    width: 200px;
}

/* Flip Card Styles for Team */
.team-card-flip {
    perspective: 1000px;
    background: transparent;
    clip-path: none;
}

.team-card-flip .team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.team-card-flip:hover .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-flip .team-card-front,
.team-card-flip .team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.team-card-flip .team-card-front {
    background-color: var(--primary-color);
}

.team-card-flip .team-card-back {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    border: 1px solid var(--border-dark);
}

.team-card-flip .team-card-back h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card-flip .team-card-back p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.team-row-small .team-card-flip {
    width: 250px;
}

.team-row-small .team-card-flip .team-card-inner {
    min-height: 320px;
}

/* ============================================
   Credentials Section (Licensed, Bonded, etc)
   ============================================ */
.credentials-section {
    padding: 80px 0;
    background-color: var(--dark-bg-secondary);
}

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

.credential-card {
    text-align: center;
    padding: 30px 20px;
}

.credential-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.credential-icon i {
    font-size: 28px;
    color: var(--white);
}

.credential-card h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.credential-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   Difference Section (Numbered List)
   ============================================ */
.difference-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.difference-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.difference-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.difference-item {
    display: flex;
    gap: 20px;
}

.difference-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.difference-item h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.difference-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.difference-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ============================================
   ROI / Stats Section
   ============================================ */
.roi-section {
    padding: 80px 0;
    background-color: var(--dark-bg-secondary);
}

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

.roi-card {
    background-color: var(--dark-bg);
    padding: 35px;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--border-dark);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.roi-card h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.roi-card .stat {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.roi-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   Recent Projects Section
   ============================================ */
.projects-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.projects-placeholder {
    text-align: center;
    padding: 60px;
    border: 2px dashed var(--border-dark);
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.projects-placeholder p {
    color: var(--text-muted);
    font-size: 16px;
}

/* ============================================
   What We Build Section (6 cards)
   ============================================ */
.what-we-build-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

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

.build-card {
    background-color: var(--dark-bg-secondary);
    padding: 35px;
    border-radius: 0;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.build-card:hover {
    border-color: var(--primary-color);
}

.build-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(45, 138, 94, 0.2);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.build-card-icon i {
    font-size: 26px;
    color: var(--primary-color);
}

.build-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.build-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Built For Living Section
   ============================================ */
.built-for-section {
    padding: 80px 0;
    background-color: var(--dark-bg-secondary);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.built-for-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.built-for-text h2 {
    font-size: 38px;
    color: var(--white);
    margin-bottom: 25px;
}

.built-for-text h2 .highlight {
    color: var(--primary-color);
}

.built-for-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.built-for-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.built-for-feature i {
    color: var(--primary-color);
}

/* ============================================
   Video Section
   ============================================ */
.video-section {
    margin: -80px 0 0;
    position: relative;
    z-index: 2;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

/* ============================================
   Outdoor Living Solutions (Hardscapes)
   ============================================ */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background-color: var(--dark-bg-secondary);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.solution-card:hover {
    border-color: var(--primary-color);
}

.solution-card-image {
    height: 200px;
    overflow: hidden;
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card-content {
    padding: 25px;
}

.solution-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.solution-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Comprehensive Roofing Solutions
   ============================================ */
.roofing-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.roofing-card {
    text-align: center;
    padding: 30px;
}

.roofing-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(45, 138, 94, 0.15);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.roofing-card-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.roofing-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.roofing-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.contact-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-details h3 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-details a,
.contact-details p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-social h3 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--dark-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form-box {
    background-color: var(--dark-bg-secondary);
    padding: 35px;
    border: 1px solid var(--border-dark);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.contact-form-box h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-secondary);
    font-size: 14px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-dark);
    color: var(--white);
    transition: var(--transition);
}

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

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 6px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

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

/* Why Contact / Expect Section */
.why-contact {
    padding: 80px 0;
    background-color: var(--dark-bg-secondary);
}

.why-contact h2 {
    font-size: 32px;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

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

.expect-item {
    text-align: center;
    padding: 30px 20px;
}

.expect-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.expect-item h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.expect-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Areas Page
   ============================================ */
.areas-intro {
    padding: 60px 0;
    background-color: var(--dark-bg);
    text-align: center;
}

.areas-intro h2 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 15px;
}

.areas-intro p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.state-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.state-section.alt-bg {
    background-color: var(--dark-bg-secondary);
}

.state-header {
    text-align: center;
    margin-bottom: 40px;
}

.state-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.state-icon i {
    font-size: 28px;
    color: var(--white);
}

.state-header h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 10px;
}

.state-header p {
    font-size: 16px;
    color: var(--text-light);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.city-card {
    background-color: var(--dark-bg-secondary);
    padding: 25px;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.state-section.alt-bg .city-card {
    background-color: var(--dark-bg);
}

.city-card:hover {
    border-color: var(--primary-color);
}

.city-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.city-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.additional-areas {
    text-align: center;
    padding: 25px;
    border: 1px dashed var(--border-dark);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.additional-areas h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
}

.additional-areas p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-form {
        max-width: 450px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .redefining-content {
        grid-template-columns: 1fr;
    }

    .page-hero-content {
        grid-template-columns: 1fr;
    }

    .services-built-content,
    .services-built-section .services-built-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-built-grid {
        grid-template-columns: 1fr;
    }

    .services-built-text {
        text-align: center;
    }

    .process-steps-3 {
        grid-template-columns: 1fr;
    }

    .difference-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .build-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Menu Overlay - created by JS, appended to body */
#mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0d0d0d;
    z-index: 99999;
    padding: 20px;
    overflow-y: auto;
    flex-direction: column;
}

#mobile-menu.active {
    display: flex;
}

#mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mobile-menu ul li a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 500;
}

#mobile-menu ul li a:hover {
    color: var(--primary-color);
}

#mobile-menu .mobile-menu-cta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#mobile-menu .mobile-menu-cta .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-main {
        padding: 10px 0;
    }

    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat .number {
        font-size: 32px;
    }

    .reviews-section {
        padding: 20px 0;
    }

    .reviews-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .reviews-text h2 {
        font-size: 22px;
    }

    .reviews-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 25px 20px;
        clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .services-overview-grid {
        grid-template-columns: 1fr;
    }

    .service-overview-image {
        height: 200px;
    }

    .service-overview-content {
        padding: 20px;
    }

    .service-overview-content h3 {
        font-size: 20px;
    }

    .process-section {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-step {
        padding: 20px 15px;
    }

    .step-number {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .areas-section {
        padding: 60px 0;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .area-card {
        padding: 25px 20px;
        clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    }

    .area-card h3 {
        font-size: 22px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }

    .page-hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .page-hero-text h1 {
        font-size: 32px;
    }

    .page-hero-text p {
        font-size: 16px;
    }

    .redefining-section {
        padding: 60px 0;
    }

    .redefining-text h2 {
        font-size: 32px;
    }

    .redefining-text p {
        font-size: 15px;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .redefining-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .icon-card {
        padding: 20px 15px;
    }

    .icon-card i {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .roi-grid {
        grid-template-columns: 1fr;
    }

    .roi-card {
        padding: 25px;
    }

    .roi-card .stat {
        font-size: 36px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .roofing-solutions-grid {
        grid-template-columns: 1fr;
    }

    .built-for-content {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        font-size: 15px;
        padding: 20px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-top {
        gap: 16px;
        margin-bottom: 30px;
    }

    .footer-info-card {
        padding: 25px 20px;
        clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    }

    .footer-info-card i {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .values-section {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-card {
        padding: 25px 20px;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-row-small {
        flex-direction: column;
        align-items: center;
    }

    .team-row-small .team-card-flip {
        width: 100%;
        max-width: 300px;
    }

    .credentials-section {
        padding: 50px 0;
    }

    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .difference-section {
        padding: 60px 0;
    }

    .what-we-build-section {
        padding: 60px 0;
    }

    .build-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .build-card {
        padding: 25px 20px;
    }

    .built-for-section {
        padding: 50px 0;
    }

    .video-section {
        padding: 50px 0 !important;
        margin: 0;
    }

    .services-built-section {
        padding: 60px 0;
    }

    .services-built-text h2 {
        font-size: 28px;
    }

    .services-built-grid {
        gap: 12px;
    }

    .service-built-card {
        padding: 18px;
        gap: 14px;
    }

    /* Contact page mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 26px;
    }

    .contact-form-box {
        padding: 25px 20px;
        clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .why-contact {
        padding: 60px 0;
    }

    .why-contact h2 {
        font-size: 26px;
    }

    .expect-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Areas page mobile */
    .state-section {
        padding: 50px 0;
    }

    .state-header h2 {
        font-size: 28px;
    }

    .cities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .city-card {
        padding: 20px;
    }

    .areas-intro {
        padding: 40px 0;
    }

    .areas-intro h2 {
        font-size: 26px;
    }

    /* Difference section mobile */
    .difference-number {
        font-size: 36px;
    }

    .difference-item h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-form {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 14px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stat {
        min-width: 80px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .area-card ul {
        grid-template-columns: 1fr;
    }

    .area-card h3 {
        font-size: 20px;
    }

    .area-subtitle {
        font-size: 13px;
    }

    .team-row-small {
        flex-direction: column;
        align-items: center;
    }

    .built-for-features {
        grid-template-columns: 1fr;
    }

    .redefining-icons {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .icon-card {
        padding: 16px 12px;
    }

    .icon-card i {
        font-size: 24px;
    }

    .icon-card span {
        font-size: 12px;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .footer-info-card h4 {
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .process-section .section-header h2 {
        font-size: 24px;
    }

    .redefining-text h2 {
        font-size: 28px;
    }
}

/* Mobile nav CTA buttons */
.mobile-nav-cta {
    display: none;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid var(--border-dark);
}

.nav.active .mobile-nav-cta {
    display: block;
}

/* Mobile menu button X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ============================================
   Centered Hero Section
   ============================================ */
.header-simple {
    border-bottom: none;
}

.header-simple .top-bar {
    display: none;
}

.hero-centered {
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge-centered {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(45, 138, 94, 0.3);
    border: 1px solid var(--primary-color);
    padding: 12px 24px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-badge-centered i {
    color: var(--primary-color);
}

.hero-title-large {
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-title-large .highlight {
    color: var(--primary-color);
    font-style: italic;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons-centered {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats-centered {
    display: flex;
    gap: 60px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-dark);
}

.hero-stats-centered .hero-stat {
    text-align: center;
}

.hero-stats-centered .hero-stat .number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.hero-stats-centered .hero-stat .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Form Popup Modal
   ============================================ */
.form-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.form-popup-overlay.active {
    display: flex;
}

.form-popup-content {
    background-color: var(--dark-bg-secondary);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 20px;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 25px, 100% 100%, 25px 100%, 0 calc(100% - 25px));
}

.form-popup-close {
    position: absolute;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .form-popup-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .form-popup-content {
        max-height: 85vh;
        padding: 15px;
        clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    }

    .form-popup-content iframe {
        height: 600px !important;
    }

    .form-popup-close {
        top: 8px;
        right: 18px;
        font-size: 28px;
    }
}

/* Responsive for centered hero */
@media (max-width: 768px) {
    .hero-centered {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-title-large {
        font-size: 36px;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .hero-buttons-centered {
        margin-bottom: 40px;
    }

    .hero-stats-centered {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding-top: 30px;
    }

    .hero-stats-centered .hero-stat .number {
        font-size: 32px;
    }

    .hero-stats-centered .hero-stat .label {
        font-size: 11px;
    }

    .hero-badge-centered {
        font-size: 11px;
        padding: 10px 16px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .hero-centered {
        padding: 90px 0 40px;
    }

    .hero-title-large {
        font-size: 28px;
    }

    .hero-badge-centered {
        font-size: 10px;
        padding: 8px 14px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons-centered {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons-centered .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats-centered {
        gap: 16px;
    }

    .hero-stats-centered .hero-stat .number {
        font-size: 28px;
    }
}

/* ============================================
   Subtle Background Images
   ============================================ */

/* Base class for sections with background images */
.section-with-bg {
    position: relative;
    overflow: hidden;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

.section-with-bg > .container {
    position: relative;
    z-index: 1;
}

/* Individual background variations */
.bg-construction-1::before {
    background-image: url('../images/bg-construction-1.jpg');
}

.bg-construction-2::before {
    background-image: url('../images/bg-construction-2.jpg');
}

.bg-construction-3::before {
    background-image: url('../images/bg-construction-3.jpg');
}

.bg-construction-4::before {
    background-image: url('../images/bg-construction-4.jpg');
}

.bg-construction-5::before {
    background-image: url('../images/bg-construction-5.jpg');
}

/* Slightly higher opacity variants */
.section-with-bg.bg-opacity-6::before {
    opacity: 0.09;
}

.section-with-bg.bg-opacity-8::before {
    opacity: 0.12;
}

/* Position variants */
.section-with-bg.bg-pos-top::before {
    background-position: center top;
}

.section-with-bg.bg-pos-bottom::before {
    background-position: center bottom;
}

/* Footer with subtle background */
.footer.section-with-bg::before {
    opacity: 0.05;
}

/* ============================================
   Portfolio Gallery with Filters
   ============================================ */

.portfolio-gallery-section {
    padding: 80px 0;
    background: var(--dark-bg-secondary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.filter-btn:hover {
    background: rgba(45, 138, 94, 0.2);
    border-color: var(--primary-color);
    color: var(--white);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--dark-bg-card);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

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

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--primary-light);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--primary-light);
}

.lightbox-prev {
    left: -70px;
    clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
}

.lightbox-next {
    right: -70px;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.lightbox-caption {
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 14px;
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: -50px;
    }

    .lightbox-next {
        right: -50px;
    }
}

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

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .lightbox-content {
        padding: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
}
