/* ================================================
   Lords Chimney - Main Stylesheet
   Mobile-First Responsive Design
   ================================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-navy: #1A204C;
    --color-gold: #F7C300;
    --color-gray-light: #E0E0E0;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-navy-light: #2A305C;
    
    /* Typography */
    --font-headline: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 10px rgba(26, 32, 76, 0.2);
    --shadow-lg: 0 8px 25px rgba(26, 32, 76, 0.25);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-top: -1rem;
    margin-bottom: var(--spacing-lg);
}

/* ================================================
   Header
   ================================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

/* Top Bar */
.top-bar {
    background: var(--color-navy);
    padding: 0.5rem 0;
    display: none;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.top-bar-phone {
    color: var(--color-white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color var(--transition-fast);
}

.top-bar-phone:hover {
    color: var(--color-gold);
}

.phone-label {
    font-weight: 500;
}

.btn-top-bar {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
}

/* Main Navigation */
.main-nav {
    background: var(--color-white);
    padding: 0.75rem 0;
}

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

.logo-link {
    display: block;
}

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

.nav-menu {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.btn-request-quote {
    display: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-navy);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-navy);
    z-index: 1001;
    transition: right var(--transition-normal);
    padding: var(--spacing-xl) var(--spacing-lg);
    overflow-y: auto;
}

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

.mobile-menu-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2.5rem;
    color: var(--color-white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-menu {
    margin-top: var(--spacing-xl);
}

.mobile-nav-link {
    display: block;
    color: var(--color-white);
    font-size: 1.5rem;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--color-gold);
}

.mobile-cta {
    color: var(--color-gold);
    font-weight: 500;
}

.mobile-menu-cta {
    display: inline-block;
    margin-top: var(--spacing-lg);
}

/* ================================================
   Buttons
   ================================================ */
.btn-primary {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-navy);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    text-align: center;
}

.btn-primary:hover {
    background: #e5b100;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-navy);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-navy);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    text-align: center;
}

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

.link-cta {
    color: var(--color-navy);
    font-weight: 500;
    border-bottom: 2px solid var(--color-gold);
    transition: all var(--transition-fast);
}

.link-cta:hover {
    color: var(--color-gold);
    border-color: var(--color-navy);
}

/* ================================================
   Hero Sections
   ================================================ */
.hero, .services-hero, .install-hero, .about-hero, .contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 76, 0.85) 0%, rgba(26, 32, 76, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg);
    max-width: 800px;
    color: var(--color-white);
}

.hero-headline {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subheadline {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-spanish {
    font-size: 1rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.btn-hero {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

/* ================================================
   Services Overview
   ================================================ */
.services-overview {
    background: var(--color-gray-light);
    padding: var(--spacing-xxl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.service-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid transparent;
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-icon svg {
    width: 50px;
    height: 50px;
}

.service-title {
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

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

/* ================================================
   Why Choose Us
   ================================================ */
.why-choose-us {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.split-image {
    order: 1;
}

.split-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.split-content {
    order: 2;
}

.split-layout .section-title {
    text-align: left;
}

.feature-list {
    margin: var(--spacing-lg) 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.division-tagline {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: var(--spacing-md);
}

/* ================================================
   Our Process
   ================================================ */
.our-process {
    background: var(--color-gray-light);
    padding: var(--spacing-xxl) 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.process-step {
    text-align: center;
    max-width: 200px;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.process-icon svg {
    width: 40px;
    height: 40px;
}

.process-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-description {
    font-size: 0.9rem;
    color: #666;
}

.process-connector {
    width: 2px;
    height: 30px;
    background: var(--color-navy);
}

/* ================================================
   Testimonials
   ================================================ */
.testimonials {
    background: var(--color-navy);
    padding: var(--spacing-xxl) 0;
    color: var(--color-white);
}

.testimonials .section-title {
    color: var(--color-white);
}

.testimonial-carousel {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: var(--spacing-lg);
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.quote-mark {
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 0;
    vertical-align: middle;
}

.testimonial-author {
    display: block;
    font-style: normal;
}

.author-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-gold);
}

.author-location {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.carousel-btn {
    font-size: 1.5rem;
    color: var(--color-white);
    width: 40px;
    height: 40px;
    transition: color var(--transition-fast);
}

.carousel-btn:hover {
    color: var(--color-gold);
}

.carousel-dots {
    display: flex;
    gap: var(--spacing-xs);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background var(--transition-fast);
}

.carousel-dot.active {
    background: var(--color-gold);
}

/* ================================================
   Community & Causes
   ================================================ */
.community-causes {
    padding: var(--spacing-xxl) 0;
    background: var(--color-gray-light);
}

.dog-image {
    text-align: center;
}

.dog-photo {
    max-width: 300px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
}

.community-text {
    margin-bottom: var(--spacing-md);
}

.community-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.heart-icon {
    color: #e74c3c;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ================================================
   CTA Banner
   ================================================ */
.cta-banner {
    background: var(--color-navy);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.cta-headline {
    color: var(--color-white);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: center;
}

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

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

.btn-pulse {
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-md); }
    50% { box-shadow: 0 0 20px rgba(247, 195, 0, 0.5); }
}

/* ================================================
   Service Areas
   ================================================ */
.service-areas {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.service-area-text {
    margin-bottom: var(--spacing-lg);
}

.service-phones {
    display: grid;
    gap: var(--spacing-md);
}

.phone-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
}

.map-image {
    order: 1;
}

.map-graphic {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* ================================================
   Contact Snippet
   ================================================ */
.contact-snippet {
    background: var(--color-navy);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.contact-snippet .section-title {
    color: var(--color-white);
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-white);
    transition: transform var(--transition-fast);
}

.contact-option:hover {
    transform: scale(1.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-label {
    font-weight: 500;
}

.business-hours {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background: var(--color-navy);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    height: 60px;
    margin-bottom: var(--spacing-md);
}

.footer-tagline {
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-heading {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-link-list li {
    margin-bottom: 0.5rem;
}

.footer-link-list a {
    color: rgba(255,255,255,0.8);
    transition: color var(--transition-fast);
}

.footer-link-list a:hover {
    color: var(--color-gold);
}

.footer-contact-item {
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.footer-contact-item a {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--color-white);
}

.social-link:hover svg {
    fill: var(--color-navy);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.badge {
    background: rgba(247, 195, 0, 0.2);
    color: var(--color-gold);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ================================================
   Sticky Mobile CTA
   ================================================ */
.sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--color-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: var(--spacing-sm);
    gap: var(--spacing-sm);
}

.sticky-cta-call {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.75rem;
}

.sticky-cta-quote {
    flex: 1;
    font-size: 0.9rem;
    padding: 0.75rem;
}

/* ================================================
   Service Detail Sections
   ================================================ */
.service-detail {
    padding: var(--spacing-xxl) 0;
    background: var(--color-gray-light);
}

.service-detail-alt {
    background: var(--color-white);
}

.service-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    color: #666;
}

.service-detail-text {
    margin-bottom: var(--spacing-md);
}

.benefit-list {
    margin: var(--spacing-lg) 0;
}

.benefit-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* ================================================
   All Services Grid
   ================================================ */
.all-services-grid {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

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

/* ================================================
   Product Categories
   ================================================ */
.product-categories {
    padding: var(--spacing-xxl) 0;
    background: var(--color-gray-light);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.product-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 120px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
}

.product-image svg {
    width: 80px;
    height: 80px;
}

.product-title {
    margin-bottom: var(--spacing-sm);
}

/* ================================================
   Product Detail
   ================================================ */
.product-detail {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.product-detail-alt {
    background: var(--color-gray-light);
}

.product-detail-text {
    margin-bottom: var(--spacing-md);
}

/* ================================================
   Installation Gallery
   ================================================ */
.installation-gallery {
    padding: var(--spacing-xxl) 0;
    background: var(--color-gray-light);
}

.gallery-subtitle {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

/* ================================================
   FAQ Accordion
   ================================================ */
.faq-section, .contact-faqs {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.faq-accordion, .repair-accordion, .product-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--color-gray-light);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.accordion-header:hover {
    color: var(--color-gold);
}

.accordion-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: var(--spacing-md);
}

.accordion-content p {
    color: #666;
}

.accordion-content-inner {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.accordion-image {
    width: 100px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
}

/* ================================================
   CTA Sections
   ================================================ */
.cta-contact, .cta-inquiry, .contact-cta {
    padding: var(--spacing-xxl) 0;
    background: var(--color-gray-light);
    text-align: center;
}

.cta-contact-info {
    margin-top: var(--spacing-lg);
}

.cta-contact-info p {
    font-size: 0.95rem;
}

.cta-contact-info a {
    color: var(--color-gold);
    font-weight: 600;
}

/* ================================================
   About Page Sections
   ================================================ */
.mission-values {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.mission-statement {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.1rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.value-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-title {
    margin-bottom: var(--spacing-sm);
}

.value-description {
    color: #666;
}

/* Timeline */
.our-story {
    padding: var(--spacing-xxl) 0;
    background: var(--color-navy);
    color: var(--color-white);
}

.our-story .section-title {
    color: var(--color-white);
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-gold);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: var(--spacing-xl);
}

.timeline-marker {
    position: absolute;
    left: 12px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--color-gold);
    border-radius: 50%;
    border: 3px solid var(--color-navy);
}

.timeline-date {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-navy);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* Meet Our Team */
.meet-our-team {
    padding: var(--spacing-xxl) 0;
    background: var(--color-gray-light);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.team-photo {
    height: 200px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .team-title {
    color: #666;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
}

.team-bio {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: #666;
    font-size: 0.9rem;
}

.team-extended {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-style: italic;
    color: #666;
}

/* Certifications */
.certifications-affiliations {
    padding: var(--spacing-xxl) 0;
    background: var(--color-navy);
}

.certifications-affiliations .section-title {
    color: var(--color-white);
}

.certifications-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.certification-item {
    text-align: center;
}

.certification-logo {
    height: 80px;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.certification-name {
    color: var(--color-white);
    font-size: 0.9rem;
}

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

.years-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-headline);
}

.years-label {
    color: var(--color-white);
    font-size: 0.9rem;
}

/* ================================================
   Contact Page
   ================================================ */
.contact-information {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.contact-column {
    text-align: center;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
}

.contact-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.contact-heading {
    margin-bottom: var(--spacing-md);
}

.contact-phone, .contact-email {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.contact-address {
    font-style: normal;
    line-height: 1.6;
}

.business-hours-display {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-gray-light);
    border-radius: var(--radius-lg);
    max-width: 400px;
    margin: 0 auto;
}

.business-hours-display h4 {
    margin-bottom: var(--spacing-sm);
}

.business-hours-display p {
    margin-bottom: 0.25rem;
    color: #666;
}

/* Contact Form */
.contact-form-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-gray-light);
}

.form-intro {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--color-navy);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.form-field {
    position: relative;
    margin-bottom: var(--spacing-md);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.form-field label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 1rem;
    color: #666;
    pointer-events: none;
    transition: all var(--transition-fast);
    background: var(--color-white);
    padding: 0 0.25rem;
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:valid + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--color-navy);
}

.form-field select {
    cursor: pointer;
    appearance: none;
}

.btn-submit {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* Location Map */
.location-map {
    padding: var(--spacing-xxl) 0;
    background: var(--color-white);
}

.map-container {
    margin-bottom: var(--spacing-lg);
}

.map-placeholder {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.directions-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Thank You */
.thank-you {
    padding: var(--spacing-xxl) 0;
    background: var(--color-gray-light);
    text-align: center;
}

.thank-you-text {
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   Scroll Animations
   ================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.curtain-reveal {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s ease;
}

.curtain-reveal.revealed {
    clip-path: inset(0 0 0 0);
}

/* ================================================
   Tablet Styles (min-width: 768px)
   ================================================ */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    /* Header Tablet */
    .top-bar {
        display: flex;
        justify-content: center;
    }
    
    .top-bar .container {
        justify-content: flex-end;
        gap: var(--spacing-lg);
    }
    
    .btn-top-bar {
        order: 3;
    }
    
    .main-nav {
        padding: 1rem 0;
    }
    
    .logo-img {
        height: 60px;
    }
    
    /* Services Grid */
    .services-grid,
    .product-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .process-step {
        flex: 1;
    }
    
    .process-connector {
        width: auto;
        height: 2px;
        flex: 0.5;
    }
    
    .split-layout {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .split-image {
        order: unset;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sticky-mobile-cta {
        display: none;
    }
}

/* ================================================
   Desktop Styles (min-width: 1024px)
   ================================================ */
@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    
    /* Header Desktop */
    .logo-img {
        height: 70px;
    }
    
    .nav-menu {
        display: flex;
        gap: var(--spacing-lg);
    }
    
    .nav-link {
        color: var(--color-navy);
        font-weight: 500;
        position: relative;
    }
    
    .nav-link::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-gold);
        transition: width var(--transition-fast);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
    
    .btn-request-quote {
        display: inline-block;
    }
    
    .hamburger {
        display: none;
    }
    
    /* Grid layouts */
    .services-grid,
    .product-grid,
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-step {
        flex: 0 0 auto;
        width: 180px;
    }
    
    .process-connector {
        flex: 0 0 60px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    /* CTA Banner */
    .cta-headline {
        font-size: 2.25rem;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Service Areas */
    .service-phones {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================================
   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;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
    
    .curtain-reveal {
        clip-path: inset(0);
    }
}
