/* Base styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background-color: #f9fafb;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Layout helpers */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Top Bar */
.top-bar {
    background: #111827;
    color: #e5e7eb;
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 0;
    gap: 0.75rem;
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar a {
    color: #e5e7eb;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #047857, #16a34a);
    color: #f9fafb;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    font-size: 1rem;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.95rem;
    color: #4b5563;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
    background: #e5e7eb;
    color: #111827;
}

.nav-cta {
    border: none;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: #047857;
    color: white;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.nav-cta:hover {
    background: #065f46;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 1.3rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    border: none;
    background: linear-gradient(135deg, #047857, #16a34a);
    color: #f9fafb;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 10px 20px rgba(4, 120, 87, 0.25);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.15s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(4, 120, 87, 0.3);
    background: linear-gradient(135deg, #065f46, #16a34a);
}

.btn-secondary {
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    border: 1px solid #d1d5db;
    background: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.07);
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-secondary:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.full-width {
    width: 100%;
}

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section-alt {
    padding: 4.5rem 0;
    background: #f3f4f6;
}

.section-accent {
    padding: 4.5rem 0;
    background: #ecfdf3;
    border-top: 1px solid #bbf7d0;
    border-bottom: 1px solid #bbf7d0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin: 0 0 0.5rem;
    font-size: 1.9rem;
    letter-spacing: -0.03em;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #6b7280;
}

/* Hero */
.hero {
    
    padding: 4.5rem 0 4rem;
    background: radial-gradient(circle at top left, #bbf7d0 0, transparent 55%),
                radial-gradient(circle at top right, #dbeafe 0, transparent 50%),
                #f9fafb;
    

}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.4rem;
    line-height: 1.1;
    margin: 0 0 0.75rem;
    letter-spacing: -0.04em;
}

.hero-text p {
    margin: 0 0 1.5rem;
    color: #4b5563;
    max-width: 32rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #065f46;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #dcfce7;
}

/* Hero card */
.hero-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.5rem 1.5rem 1.75rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
}

.hero-card h2 {
    margin-top: 0;
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
}

.hero-card p {
    margin-top: 0;
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
    color: #4b5563;
}

/* Forms */
.hero-form,
.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 0.7rem;
    border: 1px solid #d1d5db;
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 1px #0ea5e9;
    background: #f9fafb;
}

.form-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

/* Services */
.services {
    background-image: url("Background/Hero Section Background.png");
    background-size: cover;        /* fills the whole area */
    background-repeat: no-repeat;  /* prevents tiling */
    background-position: center;   /* centers the pickets */
    padding: 4.5rem 0 4rem;
}
#services {
    text-align: center;
}

.bubble-title {
    display: inline-block;
    background: #ffffff;          /* white bubble */
    padding: 0.6rem 1.4rem;       /* same spacing as Call Now */
    border-radius: 9999px;        /* pill shape */
    font-size: 2rem;              /* same size as your h2 */
    font-weight: 700;
    color: #316d58;               /* dark text */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* same shadow as Call Now */
}
.bubble-subtitle {
    background: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    font-size: 1rem;
    color: #000000 !important;
    margin-top: 0.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


#services.bubble-subtitle {
    background: #ffffff;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    font-size: 1rem;
    color: #000000; /* softer gray-blue text */
    margin-top: 0.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    
}

.service-card {
    display: block;                     /* make the whole card clickable */
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.4rem 1.3rem 1.35rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, 
                box-shadow 0.2s ease, 
                border-color 0.2s ease;
    cursor: pointer;
}



/* Keyboard focus (for accessibility) */
.service-card:focus-visible {
    outline: none;
    transform: translateY(-4px) scale(1.03);
    border-color: #22c55e;
    box-shadow:
        0 0 0 2px #22c55e,
        0 0 20px rgba(34, 197, 94, 0.7),
        0 12px 30px rgba(15, 23, 42, 0.15);
}



.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf3;
    color: #047857;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.service-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

.about-text p {
    color: #4b5563;
}

.about-text p + p {
    margin-top: 0.75rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1.1rem;
    font-size: 0.9rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #374151;
}

.about-list i {
    color: #16a34a;
}

/* About card */
.about-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.5rem 1.4rem 1.5rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
    font-size: 0.92rem;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid #bbf7d0;
    background: #ecfdf3;
    font-size: 0.75rem;
    color: #166534;
    margin-bottom: 0.75rem;
}

.about-card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.about-columns {
    display: flex;
    gap: 2rem;
    margin: 0.85rem 0;
}

.about-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-columns li {
    margin-bottom: 0.25rem;
}

.about-footer {
    margin-top: 0.75rem;
    color: #4b5563;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.3rem;
}

/* Gallery */
.gallery-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-track {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    background: #000; /* fallback while images load */
}

.gallery-slide {
    display: none;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255, 255, 255, 0.85);
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
    transition: background 0.15s ease, transform 0.1s ease;
    z-index: 2;
}

.gallery-arrow:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.gallery-arrow.prev {
    left: 0.75rem;
}

.gallery-arrow.next {
    right: 0.75rem;
}

/* Dots */
.gallery-dots {
    margin-top: 0.85rem;
    display: flex;
    justify-content: center;
    gap: 0.4rem;
}

.gallery-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.gallery-dots .dot.active {
    background: #16a34a;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 720px) {
    .gallery-slide img {
        height: 240px;
    }
}


.gallery-item {
    border-radius: 0.9rem;
    padding: 3.2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-item.placeholder {
    background: repeating-linear-gradient(
        45deg,
        #e5e7eb,
        #e5e7eb 8px,
        #f3f4f6 8px,
        #f3f4f6 16px
    );
    color: #374151;
}

.gallery-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.35rem 1.25rem 1.3rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
    font-size: 0.92rem;
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.review-card p {
    margin: 0 0 0.75rem;
    color: #4b5563;
}

.review-card h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #111827;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 2rem;
    align-items: flex-start;
}

.contact-text p {
    color: #374151;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0.5rem;
    font-size: 0.93rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    color: #065f46;
}

.contact-list i {
    width: 18px;
}

.contact-note {
    font-size: 0.85rem;
    color: #4b5563;
}

/* Contact card */
.contact-form-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.6rem 1.5rem 1.5rem;
    box-shadow: 0 20px 45px rgba(22, 163, 74, 0.18);
    border: 1px solid #bbf7d0;
}

.contact-form-card h3 {
    margin-top: 0;
    margin-bottom: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

/* Footer */
.site-footer {
    background: #111827;
    color: #9ca3af;
    padding: 1.8rem 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 1.5rem;
    align-items: center;
    font-size: 0.86rem;
}

.footer-left h4 {
    margin: 0 0 0.3rem;
    color: #f9fafb;
}

.footer-left p {
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.footer-links a {
    color: #e5e7eb;
    font-size: 0.86rem;
}

.footer-right p {
    margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .main-nav {
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: #ffffff;
        padding: 0.75rem 0.75rem 0.8rem;
        margin-top: 0.4rem;
        border-radius: 0.8rem;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
        min-width: 190px;
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .reviews-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;    /* Adjust to match header size  */
    width: auto;
    object-fit: contain;
    cursor: pointer;
}
.service-icon-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}
