/* Mr. Garage Repairman Austin TX - Main Stylesheet */

/* CSS Variables */
:root {
    --primary-dark: #4A453F;
    --accent-beige: #D0BC9A;
    --white: #FFFFFF;
    --off-white: #E8E3DD;
    --emergency-red: #8B0000;
    
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Lato', sans-serif;
    
    --header-height: 80px;
    --header-height-scroll: 60px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-beige);
    color: var(--primary-dark);
    padding: 10px 20px;
    z-index: 10000;
    border-radius: 4px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 10px;
}

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

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #666;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-beige);
    color: var(--primary-dark);
    padding: 1em 2.5em;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(208, 188, 154, 0.4);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--accent-beige);
    color: var(--accent-beige);
    padding: 1em 2.2em;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--accent-beige);
    color: var(--primary-dark);
    transform: scale(1.01);
}

.btn-small {
    padding: 0.8em 1.5em;
    font-size: 0.9rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: height 0.3s ease;
}

.header.scrolled {
    height: var(--header-height-scroll);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: auto;
}

.header.scrolled .logo img {
    height: 45px;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-beige);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-beige);
}

.nav-link:hover::after {
    width: 100%;
}

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

.phone-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: color 0.3s;
}

.phone-number:hover {
    color: var(--accent-beige);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--off-white);
}

.mobile-logo img {
    height: 40px;
}

.mobile-menu-close {
    font-size: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary-dark);
}

.mobile-nav {
    flex: 1;
    padding: 20px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.mobile-menu-contact {
    padding: 20px;
    border-top: 1px solid var(--off-white);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.phone-icon, .call-icon {
    font-size: 1.5rem;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-beige);
    padding: 10px 20px;
    z-index: 999;
}

.mobile-sticky-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Main Content */
main {
    padding-top: var(--header-height);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
}

.hero-image-before {
    clip-path: inset(0 50% 0 0);
    animation: doorReveal 2s ease-out forwards;
}

.hero-image-after {
    animation: doorRevealAfter 2s ease-out forwards;
}

@keyframes doorReveal {
    0% { clip-path: inset(0 0 0 0); }
    100% { clip-path: inset(0 100% 0 0); }
}

@keyframes doorRevealAfter {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    max-width: 700px;
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    padding: 1.2em 3em;
    animation: fadeInUp 1s ease-out 1s both;
    box-shadow: 0 0 20px rgba(208, 188, 154, 0.5);
    animation: fadeInUp 1s ease-out 1s both, pulse 2s infinite;
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(208, 188, 154, 0.5); }
    50% { box-shadow: 0 0 30px rgba(208, 188, 154, 0.8); }
}

/* Problem Statement */
.problem-statement {
    padding: 80px 0;
    background: var(--white);
}

.problem-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--off-white);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateX(5px);
}

.problem-icon {
    color: var(--accent-beige);
    font-size: 1.2rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--off-white);
}

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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.feature-text {
    font-size: 0.95rem;
    color: #666;
}

.highlight-number {
    color: var(--accent-beige);
    font-size: 1.4rem;
}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--off-white);
}

.service-content {
    padding: 20px;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.service-desc {
    font-size: 0.95rem;
    color: #666;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

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

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--accent-beige);
    color: var(--primary-dark);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.step-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.step-desc {
    font-size: 0.9rem;
    color: #666;
}

.process-connector {
    flex: 0.2;
    height: 2px;
    background: var(--accent-beige);
    margin-top: 30px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--off-white);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    scroll-snap-align: center;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-beige);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent-beige);
    color: var(--primary-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--accent-beige);
}

/* Emergency Bar */
.emergency-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--accent-beige);
    padding: 15px 20px;
    z-index: 998;
    transition: bottom 0.4s ease;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

.emergency-bar.visible {
    bottom: 0;
}

.emergency-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.emergency-text {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.emergency-icon {
    font-size: 1.2rem;
}

/* Service Area */
.service-area {
    padding: 80px 0;
    background: var(--white);
}

.service-area-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.service-area-map {
    flex: 1;
    min-height: 300px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #999;
}

.map-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
}

.service-area-list {
    flex: 1;
}

.service-area-list h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-area-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-area-list li {
    padding: 10px;
    background: var(--off-white);
    border-radius: 6px;
    text-align: center;
}

/* About Snippet */
.about-snippet {
    padding: 80px 0;
    background: var(--off-white);
}

.about-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.about-text p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

.about-text .btn-secondary {
    margin-top: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: color 0.3s;
}

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

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--accent-beige);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: var(--accent-beige);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    opacity: 0.8;
}

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

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

.final-cta .btn-primary:hover {
    background: #5a554c;
}

.final-cta .btn-secondary {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

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

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-phone,
.footer-email,
.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.95rem;
}

.contact-icon {
    color: var(--accent-beige);
}

.footer-hours {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

.hours-badge {
    background: var(--emergency-red);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-links h3,
.footer-service-areas h3,
.footer-trust h3 {
    font-size: 1.1rem;
    color: var(--accent-beige);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-service-areas ul,
.trust-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--white);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-beige);
}

.footer-service-areas li,
.trust-list li {
    color: #ccc;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-beige);
    color: var(--primary-dark);
}

.review-count {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--accent-beige);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-image-before,
    .hero-image-after {
        animation: none;
    }
    
    .emergency-bar {
        transition: none;
    }
}

/* Responsive Styles */

/* Tablet */
@media (max-width: 1023px) {
    .nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-sticky-bar {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
    }
    
    .process-connector {
        display: none;
    }
    
    .process-step {
        flex: 0 0 45%;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --header-height: 70px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        font-size: 1rem;
        padding: 1em 2em;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .service-area-content {
        flex-direction: column;
    }
    
    .service-area-list ul {
        grid-template-columns: 1fr;
    }
    
    .about-split {
        flex-direction: column;
    }
    
    .about-image {
        min-height: 250px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Additional Page Styles */

/* About Page */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(74, 69, 63, 0.8), rgba(74, 69, 63, 0.8)), url('images/austin-skyline-day.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.our-story {
    padding: 80px 0;
}

.story-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.story-image {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.our-values {
    padding: 80px 0;
    background: var(--off-white);
}

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

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.value-desc {
    color: #666;
}

.meet-the-team {
    padding: 80px 0;
}

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

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.team-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: var(--off-white);
}

.team-info {
    padding: 20px;
}

.team-name {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team-title {
    font-size: 0.9rem;
    color: var(--accent-beige);
}

.why-austin {
    padding: 80px 0;
    background: linear-gradient(rgba(74, 69, 63, 0.7), rgba(74, 69, 63, 0.7)), url('images/austin-skyline-day.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.why-austin h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-austin p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.call-to-action-about {
    padding: 80px 0;
    background: var(--accent-beige);
    text-align: center;
}

.call-to-action-about h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.call-to-action-about .btn-primary {
    background: var(--primary-dark);
    color: var(--white);
}

/* Services Page */
.services-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(74, 69, 63, 0.7), rgba(74, 69, 63, 0.7)), url('images/new-installation-gallery.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-category-grid {
    padding: 80px 0;
}

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

.category-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.category-title {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.service-detail-section {
    padding: 80px 0;
}

.service-detail-section:nth-child(odd) {
    background: var(--off-white);
}

.detail-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.detail-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.detail-list {
    margin-bottom: 20px;
}

.detail-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
}

.detail-list li::before {
    content: '✓';
    color: var(--accent-beige);
    font-weight: bold;
}

.detail-image {
    flex: 1;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.emergency-service-section {
    padding: 80px 0;
    background: var(--emergency-red);
    text-align: center;
    color: var(--white);
}

.emergency-service-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.emergency-service-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.emergency-service-section .btn-primary {
    background: var(--white);
    color: var(--emergency-red);
}

.service-faq {
    padding: 80px 0;
    background: var(--white);
}

/* Gallery Page */
.gallery-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(74, 69, 63, 0.7), rgba(74, 69, 63, 0.7)), url('images/new-installation-gallery.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.gallery-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.gallery-hero p {
    font-size: 1.2rem;
}

.gallery-filters {
    padding: 40px 0;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--accent-beige);
    color: var(--accent-beige);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-beige);
    color: var(--primary-dark);
}

.gallery-grid {
    padding: 0 0 80px;
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(74, 69, 63, 0.8));
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-cta {
    padding: 80px 0;
    background: var(--accent-beige);
    text-align: center;
}

.gallery-cta h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

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

.gallery-cta .btn-secondary {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

/* Contact Page */
.contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(74, 69, 63, 0.7), rgba(74, 69, 63, 0.7)), url('images/contact-us-graphic.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
}

.contact-icon-large {
    width: 40px;
    height: 40px;
    background: var(--accent-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--off-white);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-container {
    height: 400px;
    background: var(--off-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-faq-section {
    padding: 80px 0;
    background: var(--off-white);
}

.social-media-section {
    padding: 60px 0;
    text-align: center;
}

.social-media-section h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

/* Mobile responsive for inner pages */
@media (max-width: 1023px) {
    .story-content {
        flex-direction: column;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-layout {
        flex-direction: column;
    }
    
    .detail-image {
        min-height: 280px;
    }
    
    .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-hero,
    .services-hero,
    .gallery-hero,
    .contact-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1,
    .services-hero h1,
    .gallery-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-images {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .gallery-cta-buttons {
        flex-direction: column;
    }
}