/* Apple-inspired Design System */
:root {
    --primary-color: #1B4B75;  /* Rich, trustworthy blue */
    --secondary-color: #E67E22; /* Warm, inviting orange */
    --accent-color: #2ECC71;   /* Success green for trust signals */
    --text-color: #2C3E50;     /* Deep blue-gray for text */
    --light-text: #7F8C8D;     /* Softer gray for secondary text */
    --background-white: #ffffff;
    --light-bg: #F9FAFB;
    --section-spacing: 100px;
    --content-width: 1200px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --side-padding: 20px;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -0.005em;
}

h2 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.003em;
    margin-bottom: 20px;
}

h3 {
    font-size: 32px;
    line-height: 1.3;
}

p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--light-text);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 10px 5%;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 8px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--content-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 90px;
    width: 90px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    padding: 5px;
    background: white;
    transition: transform 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-contact {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: white !important;
    padding: 12px !important;
    border-radius: 25px;
    border: none !important;
    font-size: 0.9rem;
}

.mobile-cta:last-child {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    header {
        padding: 10px 20px;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .comparison-slider {
        height: 400px;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .comparison-slider {
        height: 300px;
    }
}

/* Bible Verse Banner */
.bible-verse-banner {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%,
        #2980b9 20%,
        var(--secondary-color) 40%,
        #d35400 60%,
        var(--primary-color) 80%,
        #2c3e50 100%
    );
    background-size: 200% 200%;
    animation: gradientFlow 15s ease infinite;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.bible-verse-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: skewY(-3deg);
}

.bible-verse-content {
    max-width: var(--content-width);
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.5s ease;
    position: relative;
    z-index: 1;
}

.bible-verse-content.fade {
    opacity: 0;
}

.verse-text {
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
}

.verse-reference {
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    color: white;
}

/* Hero Section */
.hero {
    padding-top: 80px;
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(27, 75, 117, 0.8), rgba(27, 75, 117, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(230, 126, 34, 0.3);
}

/* Mission Statement */
#mission {
    padding: var(--section-spacing) 24px;
    background: var(--light-bg);
    text-align: center;
}

.mission-content {
    max-width: var(--content-width);
    margin: 0 auto;
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: var(--section-spacing) 24px;
}

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

.section-header h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card:last-child:nth-child(5) {
    grid-column: 2;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 87, 163, 0.1);
    aspect-ratio: 3/4;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 87, 163, 0.15);
    border-color: rgba(0, 87, 163, 0.2);
}

.service-symbol {
    background: linear-gradient(135deg, rgba(0, 87, 163, 0.15), rgba(231, 111, 0, 0.1));
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 87, 163, 0.1);
}

.service-symbol::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.service-symbol i {
    font-size: 3.2rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 2px 2px 8px rgba(0, 87, 163, 0.2);
}

.service-card:hover .service-symbol {
    background: linear-gradient(135deg, rgba(231, 111, 0, 0.15), rgba(0, 87, 163, 0.1));
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 87, 163, 0.2);
}

.service-card:hover .service-symbol::before {
    opacity: 1;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.service-card:hover .service-symbol i {
    color: var(--accent-color);
    transform: scale(1.1);
    text-shadow: 2px 2px 8px rgba(231, 111, 0, 0.3);
}

/* Specific icon colors */
.service-card:nth-child(1) .service-symbol i { /* Seamless Gutters */
    color: #0057A3;
}
.service-card:nth-child(2) .service-symbol i { /* Gutter Cleaning */
    color: #E76F00;
}
.service-card:nth-child(3) .service-symbol i { /* Home Remodeling */
    color: #0057A3;
}
.service-card:nth-child(4) .service-symbol i { /* Gutter Guards */
    color: #E76F00;
}
.service-card:nth-child(5) .service-symbol i { /* Gutter Repair */
    color: #0057A3;
}

.service-card:hover:nth-child(1) .service-symbol i {
    color: #E76F00;
}
.service-card:hover:nth-child(2) .service-symbol i {
    color: #0057A3;
}
.service-card:hover:nth-child(3) .service-symbol i {
    color: #E76F00;
}
.service-card:hover:nth-child(4) .service-symbol i {
    color: #0057A3;
}
.service-card:hover:nth-child(5) .service-symbol i {
    color: #E76F00;
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 0 0 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: left;
    width: 100%;
}

.service-features li {
    margin: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-features li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
    opacity: 0.8;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
    color: var(--text-dark);
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-card:last-child:nth-child(5) {
        grid-column: auto;
    }
    
    .service-card {
        aspect-ratio: auto;
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-symbol {
        width: 80px;
        height: 80px;
    }
    
    .service-symbol i {
        font-size: 2.2rem;
    }
}

/* Gallery Section */
#gallery {
    padding: var(--section-spacing) 24px;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: var(--content-width);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery-item {
        aspect-ratio: 16/9;
    }
}

/* Before & After Section */
#before-after {
    padding: var(--section-spacing) 24px;
    background: var(--background-white);
}

.before-after-container {
    max-width: var(--content-width);
    margin: 0 auto;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.before-image {
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-handle {
    position: absolute;
    width: 2px;
    height: 100%;
    background: white;
    left: 50%;
    z-index: 2;
    cursor: ew-resize;
}

.slider-handle::before {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.slider-handle::after {
    content: '↔';
    color: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
}

.label {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    top: 20px;
    backdrop-filter: blur(10px);
}

.before-image .label {
    left: 20px;
}

.after-image .label {
    right: 20px;
}

.transformation-caption {
    text-align: center;
    margin-top: 24px;
    font-size: 21px;
    color: var(--text-color);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-spacing) 24px;
    background: var(--light-bg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-container {
    max-width: var(--content-width);
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 1rem;
    position: relative;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
}

.author-rating {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-text);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background: var(--secondary-color);
}

/* Contact Section */
#contact {
    padding: var(--section-spacing) 24px;
    background: var(--light-bg);
}

.contact-container {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-right: 40px;
}

.contact-form {
    background: var(--background-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-top: 4px solid var(--secondary-color);
}

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

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.text-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.text-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
    background: #d35400;
}

.text-cta i {
    font-size: 1.2em;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2em;
}

/* Security-related styles */
.g-recaptcha {
    margin: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Hide honeypot field */
.honeypot-field {
    display: none !important;
    position: absolute;
    left: -9999px;
}

/* Form security feedback */
.form-error {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-success {
    color: #2ecc71;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.form-success.visible {
    display: block;
}

/* Mobile responsiveness for security elements */
@media screen and (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
        margin: 15px 0;
    }
}

@media screen and (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.8);
        transform-origin: left;
    }
}

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

.footer-content {
    max-width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    padding: 0 20px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-section p, 
.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section a {
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.social-links a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --side-padding: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    header {
        padding: 10px 20px;
    }

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

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .service-card {
        padding: 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }

    .contact-container {
        flex-direction: column;
        padding: 20px;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }

    .bible-verse-banner {
        padding: 2rem 1rem;
    }

    .verse-text {
        font-size: 20px;
    }

    .verse-reference {
        font-size: 16px;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .comparison-slider {
        height: 300px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .service-card:hover {
        transform: none;
    }

    .nav-links a:hover::after {
        width: 0;
    }

    .mobile-cta:active {
        opacity: 0.8;
    }
}
