/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --secondary-color: #0080ff;
    --accent-color: #003d80;
    --texas-red: #BF0A30;
    --texas-red-light: rgba(220, 38, 38, 0.9);
    --dark-bg: #1a2332;
    --dark-gray: #2d3748;
    --medium-gray: #6b7280;
    --light-gray: #f7f9fc;
    --white: #ffffff;
    --text-dark: #1a2332;
    --text-light: #4b5563;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-hover: 0 6px 16px rgba(0,0,0,0.1);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 16px;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sticky Phone Bar */
.sticky-phone-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 1001;
    padding: 0.75rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.phone-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.phone-bar-text {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
}

.phone-bar-number {
    color: var(--white);
    font-weight: 700;
    font-size: 1.35rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.phone-bar-number:hover {
    opacity: 0.85;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 48px;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-contact {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.btn-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.25);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 138px;
    padding: 5rem 0;
    min-height: 580px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.92) 0%, rgba(0, 61, 128, 0.88) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    background: var(--texas-red);
    color: var(--white);
    padding: 0.55rem 1.5rem;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 2px solid var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.75rem;
    opacity: 1;
    line-height: 1.5;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 3px solid var(--white);
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Trust Bar Section */
.trust-bar {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.trust-icon {
    font-size: 2.25rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, #e8f1fa 0%, #d6e8f7 100%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,102,204,0.1);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.trust-text span {
    color: var(--text-light);
    font-size: 13px;
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.95;
    font-weight: 500;
}

/* Certifications Section */
.certifications {
    background: var(--white);
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cert-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cert-text h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cert-text p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

.cert-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--light-gray);
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    transform: translateY(-2px);
}

.cert-badge:first-child:hover {
    border-color: var(--texas-red);
    box-shadow: 0 4px 12px rgba(191, 10, 48, 0.15);
}

.cert-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cert-badge span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    position: relative;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--texas-red) 0%, var(--primary-color) 100%);
    margin: 1.25rem auto 0;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
    border-top: 3px solid var(--texas-red);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.85rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.service-footer {
    text-align: center;
    margin-top: 3rem;
}

.service-tagline {
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 12px rgba(30, 115, 190, 0.3);
}

.process-step h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Guarantees Section */
.guarantees {
    background: var(--light-gray);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.guarantee-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.guarantee-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Customers Section */
.customers {
    background: var(--white);
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.customer-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.customer-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.customer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.customer-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.customer-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Service Areas Section */
.service-areas {
    background: var(--white);
    color: var(--text-dark);
}

.service-areas .section-header h2,
.service-areas .section-header p {
    color: var(--text-dark);
}

.service-areas .section-header h2::after {
    background: var(--primary-color);
}

.service-areas .section-header p {
    color: var(--text-light);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.areas-map {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.areas-map h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.areas-list li {
    padding: 0.65rem;
    background: var(--white);
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-dark);
}

.areas-list li:last-child {
    grid-column: 1 / -1;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.areas-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.areas-info h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
}

.benefit {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

.benefit strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit p {
    color: var(--text-light);
}

.service-area-cta {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.service-area-cta p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-area-cta .btn {
    margin-top: 1rem;
    background: var(--primary-color);
    color: var(--white);
}

.service-area-cta .btn:hover {
    background: var(--primary-dark);
}

/* Dust-Free Benefits Comparison Section */
.dust-free-benefits {
    background: var(--white);
    padding: 5rem 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.comparison-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.comparison-card.traditional {
    border-top: 4px solid #dc2626;
}

.comparison-card.dustfree {
    border-top: 4px solid #16a34a;
}

.comparison-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #e8eef5 0%, #c5d3e3 100%);
}

.comparison-label {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.65rem 1.5rem;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-transform: uppercase;
}

.label-bad {
    background: #dc2626;
    color: var(--white);
}

.label-good {
    background: #16a34a;
    color: var(--white);
}

.comparison-content {
    padding: 2.5rem 2rem;
}

.comparison-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    padding: 0.85rem 0;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.icon-bad {
    color: #dc2626;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.icon-good {
    color: #16a34a;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.comparison-list.bad li {
    color: var(--text-light);
}

.comparison-list.good li {
    color: var(--text-dark);
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-6px);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    background: linear-gradient(135deg, #e8eef5 0%, #c5d3e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.06);
}

/* Why Choose Us Section */
.why-choose {
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
}

.benefit-card:nth-child(2n) {
    border-top: 3px solid var(--texas-red);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.benefit-card h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f7f9fc 0%, #e8f1fa 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0,102,204,0.15);
    transform: translateY(-6px);
    border-color: var(--primary-color);
}

.stars {
    color: var(--texas-red);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 2px solid var(--border-color);
    font-size: 14px;
}

.testimonial-author::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    color: var(--text-dark);
    display: block;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.testimonial-author span {
    display: flex;
    flex-direction: column;
}

.testimonial-author .author-role {
    color: var(--text-light);
    font-size: 13px;
}

/* CTA Bar Section */
.cta-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 4rem 0;
    color: var(--white);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.cta-text h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.65rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.cta-text p {
    color: var(--white);
    opacity: 0.95;
    font-size: 1.15rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.1rem 2.25rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    border-radius: 6px;
}

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 1rem 2rem;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--text-dark);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-form {
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.contact-form h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

.contact-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge:first-child {
    background: var(--texas-red);
}

/* Contact Form */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-block {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 1.1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.contact-form .btn-block:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3.5rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
}

.footer-contact strong {
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.65rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(30, 115, 190, 0.3);
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(30, 115, 190, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-wrapper {
        padding: 1rem 0;
    }

    .logo {
        height: 40px;
    }

    .nav-links {
        position: fixed;
        top: 128px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 0.75rem 0;
        width: 100%;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .phone-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.65rem 0;
    }

    .phone-bar-number {
        font-size: 1.2rem;
    }

    .hero {
        margin-top: 128px;
        min-height: 480px;
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .cta-content {
        text-align: center;
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
        width: 100%;
    }

    .areas-content {
        grid-template-columns: 1fr;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .sticky-phone-bar {
        padding: 0.6rem 0;
    }

    .phone-bar-text {
        font-size: 13px;
    }

    .phone-bar-number {
        font-size: 1.15rem;
    }

    .nav-wrapper {
        padding: 1rem 0;
    }

    .logo {
        height: 38px;
    }

    .hero {
        min-height: 450px;
        padding: 3.5rem 0;
        margin-top: 120px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .comparison-image-wrapper {
        height: 220px;
    }

    .comparison-content {
        padding: 2rem 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .feature-badge {
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .cta-text h3 {
        font-size: 1.4rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .services-grid,
    .customers-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 0;
    }

    .trust-bar {
        padding: 2rem 0;
    }

    .statistics {
        padding: 2.5rem 0;
    }

    .cta-bar {
        padding: 2.5rem 0;
    }

    .contact-form {
        padding: 2rem;
    }

    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.65rem; }
    h3 { font-size: 1.25rem; }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--texas-red) 0%, var(--primary-color) 100%);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 8px rgba(191, 10, 48, 0.4);
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--texas-red) 0%, #d32f2f 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(191, 10, 48, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 15px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: floatIn 0.6s ease forwards 1s, pulse 2s ease infinite 2s;
}

.floating-call-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(191, 10, 48, 0.5);
    background: linear-gradient(135deg, #d32f2f 0%, var(--texas-red) 100%);
}

.floating-call-btn svg {
    width: 20px;
    height: 20px;
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(191, 10, 48, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(191, 10, 48, 0.6);
    }
}

/* Before/After Slider */
.before-after-slider {
    margin: 3rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.after-image {
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0.05s ease;
}

.image-label {
    position: absolute;
    bottom: 20px;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 6px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.label-before {
    left: 20px;
    background: rgba(220, 38, 38, 0.9);
    color: var(--white);
}

.label-after {
    right: 20px;
    background: rgba(22, 163, 74, 0.9);
    color: var(--white);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--white);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 3;
    cursor: ew-resize;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    pointer-events: none;
}

.slider-button svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-track {
    position: relative;
    width: 100%;
    min-height: 300px;
}

.testimonials-carousel .testimonial-card {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.testimonials-carousel .testimonial-card.active {
    display: block;
    opacity: 1;
    transform: scale(1);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Enhanced Card Hover Effects */
.service-card,
.customer-card,
.benefit-card,
.guarantee-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.customer-card::before,
.benefit-card::before,
.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before,
.customer-card:hover::before,
.benefit-card:hover::before,
.guarantee-card:hover::before {
    left: 100%;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7f9fc 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    margin-bottom: 1.5rem;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.loading-text {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--texas-red) 0%, var(--primary-color) 100%);
    animation: loadingFill 2s ease-in-out infinite;
}

@keyframes loadingFill {
    0% { width: 0%; }
    50% { width: 80%; }
    100% { width: 100%; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Sticky Mini CTA Bar */
.sticky-mini-cta {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: 1002;
    padding: 0.75rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: top 0.3s ease;
}

.sticky-mini-cta.visible {
    top: 48px;
}

.mini-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mini-cta-text {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
}

.mini-cta-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mini-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Parallax Hero */
.parallax-hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
}

/* Gradient Text - Solid color for readability */
.gradient-text {
    color: #FFD700 !important;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 1),
        0 4px 8px rgba(0, 0, 0, 0.9),
        0 8px 16px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6) !important;
    -webkit-text-fill-color: #FFD700;
    background: none;
}

/* Service Badges */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--texas-red);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.pulse-badge {
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(191, 10, 48, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(191, 10, 48, 0);
    }
}

/* Animated SVG Icons */
.service-icon-svg {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-icon {
    filter: drop-shadow(0 2px 8px rgba(0, 102, 204, 0.2));
}

/* 3D Card Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale(1.02);
}

/* Service Hover Details */
.service-hover-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    margin-top: 0;
}

.service-card:hover .service-hover-details {
    max-height: 200px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.service-hover-details p {
    font-size: 14px;
    margin: 0.5rem 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Gallery Image Zoom */
.gallery-item .gallery-placeholder {
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.15);
}

/* Responsive Adjustments for New Features */
@media (max-width: 968px) {
    .before-after-container {
        height: 400px;
    }

    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.85rem 1.25rem;
        font-size: 14px;
    }

    .floating-call-btn span {
        display: none;
    }

    .sticky-mini-cta.visible {
        top: 48px;
    }

    .mini-cta-content {
        flex-direction: column;
        gap: 0.75rem;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .tilt-card:hover {
        transform: none;
    }
}

@media (max-width: 640px) {
    .before-after-container {
        height: 300px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .floating-call-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .floating-call-btn svg {
        margin: 0;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 80px;
    }

    .gradient-text {
        font-size: 2rem;
    }

    .service-badge {
        font-size: 10px;
        padding: 0.3rem 0.75rem;
    }
}