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

:root {
    --baby-blue: #89CFF0;
    --baby-blue-dark: #6AB5D6;
    --silver: #C0C0C0;
    --silver-dark: #A8A8A8;
    --off-white: #FAF9F6;
    --charcoal: #333333;
    --light-gray: #F5F5F5;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--off-white);
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--off-white) 0%, #E8F4F8 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--baby-blue);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--baby-blue-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--baby-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.header-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.phone-link {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--baby-blue-dark);
}

.cta-button {
    background: var(--baby-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--silver);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: var(--baby-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(137, 207, 240, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(137, 207, 240, 0.15) 0%, rgba(250, 249, 246, 0.9) 100%);
    padding: 4rem 1.5rem;
    text-align: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-highlight {
    color: var(--baby-blue-dark);
}

.hero p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-primary {
    background: var(--baby-blue);
    color: white;
    padding: 1rem 2rem;
    border: 2px solid var(--silver);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--baby-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(137, 207, 240, 0.4);
}

.cta-secondary {
    background: white;
    color: var(--charcoal);
    padding: 1rem 2rem;
    border: 2px solid var(--silver);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--light-gray);
    border-color: var(--baby-blue);
}

/* Services Section */
.services {
    padding: 4rem 1.5rem;
    background: white;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: var(--off-white);
    border: 2px solid var(--silver);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(137, 207, 240, 0.3);
    border-color: var(--baby-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--baby-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, rgba(137, 207, 240, 0.1) 0%, rgba(250, 249, 246, 1) 100%);
}

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

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--baby-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 4rem 1.5rem;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}
.form-status { margin: 10px 0; padding: 10px; border-radius: 6px; }
.form-status.success { background: #e9f7ef; }
.form-status.error { background: #fdecea; }

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

.contact-info {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--silver);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--baby-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.contact-details p,
.contact-details a {
    color: #666;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--baby-blue-dark);
}

.contact-form {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--silver);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--silver);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

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

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

.submit-button {
    width: 100%;
    background: var(--baby-blue);
    color: white;
    padding: 1rem;
    border: 2px solid var(--silver);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--baby-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(137, 207, 240, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: var(--off-white);
    padding: 3rem 1.5rem 1.5rem;
}

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

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

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--baby-blue);
}

.footer-section p,
.footer-section a {
    color: var(--off-white);
    line-height: 1.8;
    text-decoration: none;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tag {
    background: rgba(137, 207, 240, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid var(--baby-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--silver);
    font-size: 0.9rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    background: white;
    padding: .5rem 1rem;
    border-radius: 8px;
    border: 2px solid var(--silver);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.85rem;
}

.badge-icon {
    color: var(--baby-blue);
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .header-container {
        justify-content: center;
        text-align: center;
    }

    .header-contact {
        width: 100%;
        justify-content: center;
    }

    .services-grid,
    .features-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }

    .services,
    .features,
    .contact {
        padding: 2rem 1rem;
    }

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

    .section-title {
        font-size: 1.75rem;
    }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* gallery section */
/* Gallery Section */
.gallery {
    padding: 4rem 1.5rem;
    background: white;
}

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

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

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    background: var(--off-white);
    border: 2px solid var(--silver);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(137, 207, 240, 0.3);
    border-color: var(--baby-blue);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(137, 207, 240, 0.95) 0%, rgba(137, 207, 240, 0.7) 100%);
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.5;
}

.gallery-card:hover .gallery-overlay h3,
.gallery-card:hover .gallery-overlay p {
    color: white;
}

.gallery-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--baby-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}
/* Turnstile Widget Styling - UPDATED */
.turnstile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    min-height: 80px;
    padding: 1rem;
    border-radius: 8px;
}

/* Ensure the turnstile div itself is visible */
.turnstile-container > div {
    min-width: 300px;
    min-height: 65px;
}

.cf-turnstile {
    display: inline-block !important;
    visibility: visible !important;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Make sure submit button has space above it */
.submit-button {
    margin-top: .75rem;
}
