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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Warning Banner */
.warning-banner {
    background: linear-gradient(45deg, #ff4444, #ff6666);
    color: white;
    padding: 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
    animation: pulse 2s infinite;
    position: relative;
}

.warning-banner h1 {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.banner-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.banner-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 68, 68, 0.8); }
    100% { box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4); }
}

@media (max-width: 768px) {
    .warning-banner h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
}

/* Public Announcement */
.public-announcement {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 15px 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

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

.announcement-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.announcement-text {
    flex: 1;
    text-align: left;
}

.announcement-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.announcement-text p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .announcement-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .announcement-text {
        text-align: center;
    }
}

/* Header */
header {
    background: #2d5a4f url('attached_assets/IMG_3313_1749698908833.jpeg') center center;
    background-size: cover;
    background-blend-mode: overlay;
    color: white;
    text-align: center;
    padding: 20px 20px;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 90, 79, 0.75);
    z-index: 1;
}

/* Header Content Layout */
.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 10px;
}

.logo {
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.header-content h1 {
    font-size: 2.8rem;
    margin-bottom: 8px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    color: white;
    font-weight: 700;
}

.header-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: white;
    margin-bottom: 8px;
}

.team-intro {
    font-size: 1.1rem !important;
    font-style: italic;
    opacity: 0.9 !important;
    font-weight: 600;
}

/* Mobile responsive for header */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    .team-intro {
        font-size: 1rem !important;
    }
}

/* Header Navigation */
.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    gap: 10px;
}

.bottom-nav {
    margin-top: 5px;
    margin-bottom: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Main Content */
main {
    max-width: 700px;
    margin: 0 auto;
    padding: 25px 30px;
}

/* Services */
.services {
    margin-bottom: 35px;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c5282;
}

.service-list {
    display: grid;
    gap: 30px;
    width: 90vw;
    margin: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -45vw;
    margin-right: -45vw;
}

.service-button {
    display: flex;
    padding: 40px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 200px;
    height: 250px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.service-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    z-index: 1;
}

.service-button:hover::before {
    background: rgba(0, 0, 0, 0.7);
}

/* Stronger overlay for pressure washing with photo background */
.service-button[href="pressure-washing.html"]::before {
    background: rgba(0, 0, 0, 0.65);
}

.service-button[href="pressure-washing.html"]:hover::before {
    background: rgba(0, 0, 0, 0.8);
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.service-button h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
}

.service-button p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
}

/* Individual service button backgrounds */
.service-button[href="pressure-washing.html"] {
    background-image: url('attached_assets/IMG_0117_1749931887648.jpeg');
}

.service-button[href="deck-restoration.html"] {
    background-image: url('attached_assets/deck_1749949598752.jpeg');
}

.service-button[href="windows-gutters.html"] {
    background-image: url('attached_assets/IMG_0276_1749949341651.jpeg');
}

.service-button[href="hauling.html"] {
    background-image: url('attached_assets/hauling-truck.png');
}

/* Service Page Headers */
.service-header {
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 90, 79, 0.75);
    z-index: 1;
}

.service-header .header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-header .header-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    color: white;
    font-weight: 700;
}

.service-header .header-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    color: white;
    margin-bottom: 10px;
}

/* Individual service header backgrounds */
.pressure-washing-header {
    background: #2c5282 url('attached_assets/IMG_0117_1749931887648.jpeg') center center;
}

.deck-restoration-header {
    background: #2c5282 url('attached_assets/deck_1749949598752.jpeg') center center;
}

.windows-gutters-header {
    background: #2c5282 url('attached_assets/IMG_0276_1749949341651.jpeg') center center;
}

.hauling-header {
    background: #2c5282 url('attached_assets/hauling-truck.png') center center;
}

/* Before/After Image Slider */
.before-after-section {
    padding: 60px 20px;
    background: white;
}

.before-after-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c5282;
}

.before-after-section .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.before-after-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.before-after-slider:active {
    cursor: grabbing;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
    transition: clip-path 0.3s ease;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid #2c5282;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slider-handle::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2c5282;
    font-size: 18px;
    font-weight: bold;
    pointer-events: none;
}

.before-after-labels {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 5;
}

.label {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before-after-description {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}

.before-after-description h3 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.before-after-description p {
    color: #666;
    line-height: 1.6;
}

/* Mobile responsive for service headers */
@media (max-width: 768px) {
    .service-header .header-content h1 {
        font-size: 2.2rem;
    }
    
    .before-after-slider {
        height: 400px;
    }
    
    .before-after-labels {
        padding: 0 20px;
    }
    
    .label {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .service-header .header-content p {
        font-size: 1.1rem;
    }
    
    /* Adjust main content spacing for mobile */
    main {
        max-width: 100%;
        padding: 20px 20px;
    }
    
    .stories {
        padding: 40px 20px;
    }
    
    .stories-grid {
        max-width: 100%;
    }
    
    .contact-form-section {
        padding: 20px 20px 60px 20px;
    }
}

/* Form Thank You Message */
.form-thank-you-message {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    border-left: 4px solid #2d5a4f;
    text-align: center;
}

.form-thank-you-message p {
    margin: 0;
    font-size: 1.1rem;
    color: #2d5a4f;
    font-weight: 500;
    line-height: 1.6;
}

/* Junk Removal Showcase */
.junk-removal-showcase {
    margin: 40px 0;
    text-align: center;
}

.showcase-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin-bottom: 15px;
}

.image-caption {
    background: #2d5a4f;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

.image-caption h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Project Gallery Grid */
.project-gallery {
    margin: 40px 0;
    text-align: center;
}

.project-gallery h3 {
    font-size: 1.8rem;
    color: #2d5a4f;
    margin-bottom: 30px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-image {
        height: 250px;
    }
}

/* Inventory Page Styling */
.inventory-header {
    background: linear-gradient(135deg, #2d5a4f, #1e3d35);
}

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

.inventory-category {
    margin-bottom: 50px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 5px solid #2d5a4f;
}

.inventory-category h3 {
    font-size: 1.8rem;
    color: #2d5a4f;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.equipment-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.equipment-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-item h4 {
    font-size: 1.2rem;
    color: #2d5a4f;
    margin-bottom: 10px;
    font-weight: 600;
}

.equipment-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.inventory-commitment {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #2d5a4f, #1e3d35);
    border-radius: 15px;
    color: white;
    text-align: center;
}

.inventory-commitment h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.commitment-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

.commitment-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #a7f3d0;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .inventory-category {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .commitment-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .inventory-commitment {
        padding: 25px;
    }
}

/* Walkway Transformation Section */
.walkway-transformation {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.walkway-transformation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c5282;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.transformation-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* Founder Story Section */
.founder-story {
    background: linear-gradient(135deg, #2c5282, #3182ce);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.founder-story h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.founder-content p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.founder-content p:last-child {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .founder-story {
        padding: 60px 20px;
    }
    
    .founder-story h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .founder-content {
        font-size: 1rem;
    }
}

/* Equipment Button Special Styling */
.equipment-button {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: 2px solid #f59e0b;
}

.equipment-button:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    border-color: #d97706;
    transform: translateY(-3px);
}

/* Back to Services Button */
.back-to-services-button {
    display: inline-block;
    padding: 18px 35px;
    background: linear-gradient(135deg, #2c5282, #1e3a8a);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 25px;
    border: 3px solid #2c5282;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.back-to-services-button:hover {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-color: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.4);
    color: white;
}

/* Contact */
.contact {
    text-align: center;
    padding: 40px;
    background: #f1f5f9;
    border-radius: 8px;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c5282;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact a {
    color: #2c5282;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c5282;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Service Detail Pages */
.service-details {
    margin-bottom: 60px;
}

.service-details h2 {
    color: #2c5282;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.service-features, .service-process {
    background: #f8fafc;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-features h3, .service-process h3 {
    color: #2c5282;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-features ul, .service-process ol {
    margin-left: 20px;
}

.service-features li, .service-process li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

.back-button {
    display: inline-block;
    background: linear-gradient(135deg, #2c5282, #1e3a8a);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 12px;
    margin-top: 25px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.3rem;
    border: 3px solid #2c5282;
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.back-button:hover {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    border-color: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.4);
    color: white;
}

/* Stories Section */
.stories {
    padding: 50px 30px;
    background: #f8fafc;
}

.stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c5282;
}

.stories-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.stories-grid {
    display: grid;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.story-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

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

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.story-content {
    padding: 25px;
}

.story-date {
    background: #2c5282;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.story-card h3 {
    color: #2c5282;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.story-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
}

.read-more {
    color: #2c5282;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

/* Story Full Page Styles */
.story-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.story-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.story-category {
    background: #f1f5f9;
    color: #2c5282;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.story-image-large {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 40px;
}

.story-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-text {
    line-height: 1.7;
    color: #333;
}

.story-text h2 {
    color: #2c5282;
    font-size: 2rem;
    margin-bottom: 20px;
}

.story-text h3 {
    color: #2c5282;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-text ul, .story-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.story-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.story-text blockquote {
    background: #f8fafc;
    border-left: 4px solid #2c5282;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.featured-testimonial {
    background: #f8fafc;
    border-left: 4px solid #2c5282;
    padding: 30px;
    margin: 30px 0;
    font-size: 1.2rem;
    line-height: 1.6;
    border-radius: 0 12px 12px 0;
}

.featured-testimonial cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #2c5282;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8fafc;
    padding: 30px 20px 80px 20px;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c5282;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: 1fr 2fr;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h3 {
    color: #2c5282;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.checkbox-group {
    display: grid;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
    padding: 8px 0;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #2c5282;
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
    background: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2c5282;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn {
    background: #2c5282;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

/* Mobile responsive for contact form */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .contact-form-section h2 {
        font-size: 2rem;
    }
}

/* Mobile responsive */
@media (min-width: 768px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .service-button {
        height: 280px;
        padding: 45px;
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0;
        width: 90vw;
        margin-left: -45vw;
        margin-right: -45vw;
        left: 50%;
        right: 50%;
        position: relative;
    }
    
    .service-button {
        height: 300px;
        padding: 35px;
        border-radius: 0;
        border: none;
    }
    
    .service-button h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .service-button p {
        font-size: 1.1rem;
    }
    
    .stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .service-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        padding: 0;
        width: 90vw;
        margin-left: -45vw;
        margin-right: -45vw;
        left: 50%;
        right: 50%;
        position: relative;
    }
    
    .service-button {
        height: 350px;
        padding: 40px;
        border-radius: 0;
        border: none;
    }
    
    .service-button h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .service-button p {
        font-size: 1.3rem;
    }
}

@media (min-width: 1400px) {
    .service-button {
        height: 400px;
        padding: 50px;
    }
    
    .service-button h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .service-button p {
        font-size: 1.4rem;
    }
}

/* Story modal styles */
.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 2rem;
    box-sizing: border-box;
}

.story-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.story-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    z-index: 1001;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.story-modal-close:hover {
    color: #2c5282;
    background: #f8f9fa;
}

.story-modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.story-modal-header .story-date {
    background: #2c5282;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.story-modal-header h2 {
    margin: 0;
    font-size: 2rem;
    color: #333;
}

.story-modal-image {
    text-align: center;
    padding: 0 2rem;
    background: #f8f9fa;
}

.story-modal-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-modal-body {
    padding: 2rem;
}

.story-modal-body p {
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
    white-space: pre-line;
}

/* Error and empty states */
.no-stories, .error-message {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    font-style: italic;
}

.error-message {
    color: #e74c3c;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .story-modal {
        padding: 1rem;
    }
    
    .story-modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .story-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .story-modal-image {
        padding: 0 1rem;
    }
    
    .story-modal-body {
        padding: 1.5rem;
    }
    
    .story-modal-body p {
        font-size: 1rem;
    }
}

/* Footer and Admin Access */
footer {
    background: #2c5282;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

.admin-access {
    margin-top: 10px;
}

.admin-link {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.admin-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Admin Login Modal */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.admin-modal-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
}

.admin-modal-close:hover {
    color: #333;
}

.admin-modal-content h3 {
    color: #2c5282;
    margin-bottom: 20px;
    text-align: center;
}

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

.admin-modal-content label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.admin-modal-content input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.admin-modal-content input:focus {
    outline: none;
    border-color: #2c5282;
}

.admin-modal-content button {
    width: 100%;
    background: #2c5282;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.admin-modal-content button:hover {
    background: #1a365d;
}