/* Middle Fork Exteriors - Main Stylesheet */

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* ========================================
   BRAND COLORS
   Navy Blue: #0a2540
   Light Blue: #6ba3d4
   White: #ffffff
   Light Gray: #f5f5f5
   ======================================== */

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #0a2540;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #6ba3d4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0a2540;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */

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

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #6ba3d4;
    color: #fff;
}

.btn-primary:hover {
    background: #5891c2;
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: #0a2540;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline {
    background: transparent;
    color: #6ba3d4;
    border: 2px solid #6ba3d4;
}

.btn-outline:hover {
    background: #6ba3d4;
    color: #fff;
}

.btn-phone {
    background: #fff;
    color: #0a2540;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
    border: 2px solid #0a2540;
}

.btn-phone:hover {
    background: #0a2540;
    color: #fff;
}

.btn-quote {
    background: #fff;
    color: #0a2540;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
    font-size: 1rem;
    border: 2px solid #0a2540;
}

.btn-quote:hover {
    background: #0a2540;
    color: #fff;
}

/* ========================================
   HEADER
   ======================================== */

.site-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0a2540;
    line-height: 1.2;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #6ba3d4;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SERVICES OVERVIEW
   ======================================== */

.services-overview {
    padding: 5rem 0;
    background: #fff;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    color: #0a2540;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6ba3d4;
    margin: 1.5rem 0 1rem;
}

.link-arrow {
    color: #6ba3d4;
    font-weight: 600;
}

.link-arrow:hover {
    color: #0a2540;
}

/* ========================================
   TRUST SECTION
   ======================================== */

.trust-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    font-size: 3rem;
    color: #6ba3d4;
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ========================================
   GALLERY PREVIEW
   ======================================== */

.gallery-preview {
    padding: 5rem 0;
    background: #fff;
}

.gallery-preview h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
}

/* ========================================
   ABOUT PREVIEW
   ======================================== */

.about-preview {
    padding: 5rem 0;
    background: #f5f5f5;
    text-align: center;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* ========================================
   FINAL CTA
   ======================================== */

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: #0a2540;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #6ba3d4;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #e0e0e0;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #6ba3d4;
}

.footer-col p {
    color: #e0e0e0;
    font-size: 0.95rem;
}

.tagline {
    font-style: italic;
    color: #6ba3d4;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 1024px) {
    .main-nav ul {
        gap: 1.5rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .main-nav a {
        font-size: 0.875rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid,
    .trust-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.page-header {
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
}

.services-intro {
    padding: 4rem 0;
    background: #fff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-detail {
    padding: 5rem 0;
    background: #fff;
}

.service-detail.alt {
    background: #f5f5f5;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.125rem;
    color: #6ba3d4;
    font-weight: 600;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #0a2540;
}

.service-detail-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    margin: 2rem 0;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.service-detail.alt .service-features {
    background: #fff;
}

.feature-item {
    margin-bottom: 1.5rem;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item strong {
    display: block;
    color: #0a2540;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6ba3d4;
    margin: 2rem 0 1.5rem;
}

.service-detail-image {
    position: sticky;
    top: 100px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-detail-image .placeholder-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 600;
    border-radius: 8px;
}

.process-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #6ba3d4;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
}

.service-area-section {
    padding: 5rem 0;
    background: #fff;
}

.service-area-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 2rem;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 0.5rem 0;
    color: #333;
    font-size: 1.05rem;
}

.service-area-note {
    text-align: center;
    color: #666;
    font-style: italic;
    max-width: 600px;
    margin: 2rem auto 0;
}

/* Responsive - Services Page */
@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-image {
        position: static;
        order: -1;
    }

    .service-areas {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.about-story {
    padding: 5rem 0;
    background: #fff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-team {
    padding: 5rem 0;
    background: #f5f5f5;
    text-align: center;
}

.about-team h2 {
    margin-bottom: 2rem;
}

.team-photo {
    max-width: 700px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.team-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.team-content {
    max-width: 700px;
    margin: 0 auto;
}

.team-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-values {
    padding: 5rem 0;
    background: #fff;
}

.about-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

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

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0a2540;
}

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.about-credentials {
    padding: 5rem 0;
    background: #f5f5f5;
}

.credentials-content {
    max-width: 800px;
    margin: 0 auto;
}

.credentials-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.credentials-content > p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.credentials-content ul {
    list-style: none;
    margin: 2rem 0;
}

.credentials-content li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.credentials-content li strong {
    color: #0a2540;
    display: block;
    margin-bottom: 0.25rem;
}

.about-service-area {
    padding: 5rem 0;
    background: #fff;
}

.about-service-area h2 {
    text-align: center;
    margin-bottom: 1rem;
}

/* Responsive - About Page */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   QUOTE PAGE STYLES
   ======================================== */

.quote-redirect {
    padding: 5rem 0;
    background: #fff;
    min-height: 60vh;
}

.redirect-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.redirect-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.redirect-content > p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1rem;
}

.redirect-link {
    color: #6ba3d4;
    font-weight: 600;
    text-decoration: underline;
}

.redirect-link:hover {
    color: #0a2540;
}

.quote-info {
    margin-top: 3rem;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: left;
}

.quote-info h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.quote-info ul {
    list-style: none;
    margin: 1.5rem 0;
}

.quote-info li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #666;
    font-size: 1.05rem;
}

.quote-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6ba3d4;
    font-weight: 700;
    font-size: 1.25rem;
}

.alt-contact {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.125rem;
    color: #666;
}

.alt-contact a {
    color: #6ba3d4;
    font-weight: 600;
}

.alt-contact a:hover {
    color: #0a2540;
}

/* ========================================
   RESOURCES PAGE STYLES
   ======================================== */

.resources-intro {
    padding: 3rem 0;
    background: #fff;
}

.resources-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.resources-intro p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
}

.featured-guide {
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
    color: #fff;
}

.featured-badge {
    display: inline-block;
    background: rgba(107, 163, 212, 0.3);
    color: #6ba3d4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.featured-guide h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-guide p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.featured-guide .btn {
    background: #fff;
    color: #0a2540;
    border: 2px solid #fff;
}

.featured-guide .btn:hover {
    background: transparent;
    color: #fff;
}

.resources-articles {
    padding: 3rem 0 5rem;
    background: #f5f5f5;
}

.resource-article {
    background: #fff;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.resource-article:last-child {
    margin-bottom: 0;
}

.resource-article h2 {
    font-size: 1.75rem;
    color: #0a2540;
    margin-bottom: 0.5rem;
}

.article-meta {
    color: #6ba3d4;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.article-content h3 {
    font-size: 1.25rem;
    color: #0a2540;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.25rem;
}

.article-content p strong {
    color: #0a2540;
    display: block;
    margin-bottom: 0.25rem;
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.6;
}

.article-content em {
    color: #999;
}

/* Responsive - Resources Page */
@media (max-width: 768px) {
    .resource-article {
        padding: 2rem 1.5rem;
    }
    
    .resource-article h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   GALLERY PAGE STYLES
   ======================================== */

.gallery-intro {
    padding: 2rem 0 3rem;
    background: #fff;
    text-align: center;
}

.gallery-intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
}

.gallery-section {
    padding: 3rem 0 5rem;
    background: #f5f5f5;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #6ba3d4;
    color: #6ba3d4;
}

.filter-btn.active {
    background: #6ba3d4;
    border-color: #6ba3d4;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

.gallery-caption {
    padding: 1.5rem;
}

.gallery-caption h3 {
    font-size: 1.125rem;
    color: #0a2540;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.gallery-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a2540 0%, #1a3a5a 100%);
    color: #fff;
    text-align: center;
}

.gallery-cta h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.gallery-cta p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

/* Responsive - Gallery Page */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* ========================================
   THANK YOU PAGE STYLES
   ======================================== */

.thank-you-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.checkmark {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    animation: checkmarkPop 0.5s ease-out;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #0a2540;
    margin-bottom: 0.5rem;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.thank-you-message {
    text-align: left;
    margin-bottom: 2.5rem;
}

.thank-you-message p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1rem;
}

.thank-you-message ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.thank-you-message ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333;
    font-size: 1.0625rem;
}

.thank-you-message ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6ba3d4;
    font-weight: bold;
}

.contact-info {
    background: #f5f5f5;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid #6ba3d4;
    margin-top: 1.5rem !important;
}

.contact-info a {
    color: #0a2540;
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    color: #6ba3d4;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #0a2540;
    border: 2px solid #0a2540;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #0a2540;
    color: white;
}

/* Responsive - Thank You Page */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 3rem 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .thank-you-actions .btn,
    .thank-you-actions .btn-outline {
        width: 100%;
    }
}

