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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1f2933;
    background-color: #f4f7fb;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(15, 118, 110, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #047857;
    white-space: nowrap;
}

.logo-link {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(16, 185, 129, 0.08);
    color: #047857;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.hamburger:hover {
    background-color: rgba(55, 65, 81, 0.06);
}

.bar {
    width: 24px;
    height: 3px;
    background-color: #047857;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-landscaping {
    background: radial-gradient(circle at top left, #bbf7d0 0%, transparent 55%),
                radial-gradient(circle at bottom right, #a5f3fc 0%, transparent 55%),
                linear-gradient(135deg, #022c22 0%, #064e3b 40%, #16a34a 100%);
    color: #ecfdf5;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(132, 204, 22, 0.2) 0, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.22) 0, transparent 60%);
    opacity: 0.9;
    pointer-events: none;
}

.floating-element-1,
.floating-element-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2), transparent 65%);
    filter: blur(1px);
    animation: float 9s ease-in-out infinite;
}

.floating-element-1 {
    width: 80px;
    height: 80px;
    top: 18%;
    left: 6%;
}

.floating-element-2 {
    width: 100px;
    height: 100px;
    bottom: 18%;
    right: 12%;
    animation-duration: 11s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.25);
    border: 1px solid rgba(110, 231, 183, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    color: #bbf7d0;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.hero-badge i {
    color: #fbbf24;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
}

.hero p {
    font-size: 1.1rem;
    color: #e0f2f1;
    max-width: 620px;
}

.service-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-icon,
.service-badge {
    padding: 0.9rem 1.1rem;
    border-radius: 1rem;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(226, 232, 240, 0.16);
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.75), rgba(20, 184, 166, 0.8));
    color: #ecfdf5;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 16px 35px rgba(15, 118, 110, 0.6);
}

.service-icon i,
.service-badge i {
    color: #facc15;
}

.service-badge {
    background: linear-gradient(135deg, rgba(21, 128, 61, 0.85), rgba(52, 211, 153, 0.9));
    border-color: rgba(187, 247, 208, 0.8);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    transition: all 0.25s ease;
    min-height: 46px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ecfdf5;
    box-shadow: 0 14px 40px rgba(22, 163, 74, 0.75);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 16px 45px rgba(21, 128, 61, 0.9);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.15);
    color: #e0f2f1;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.25);
    transform: translateY(-1px);
}

.btn i {
    font-size: 0.95rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #d1fae5;
}

.trust-item i {
    color: #bbf7d0;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-visual {
    width: 100%;
    max-width: 420px;
    border-radius: 1.5rem;
    padding: 2.2rem 2rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.85);
}

.installation-showcase {
    display: grid;
    gap: 1.1rem;
}

.showcase-item {
    border-radius: 1.1rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.5);
    padding: 0.9rem;
    text-align: center;
}

.showcase-item h3 {
    margin-top: 0.6rem;
    font-size: 1.05rem;
    color: #e5e7eb;
}

.showcase-item p {
    font-size: 0.9rem;
    color: #cbd5f5;
}

.hero-photo {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #e0f2f1;
    opacity: 0.9;
}

.scroll-arrow {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #022c22;
    margin-bottom: 0.6rem;
}

.section-header p {
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
}

.services-overview {
    padding: 80px 0;
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.7rem;
}

.service-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
    border: 1px solid rgba(209, 213, 219, 0.9);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.45);
}

.service-card h3 {
    font-size: 1.2rem;
    color: #064e3b;
}

.service-card p {
    color: #4b5563;
    font-size: 0.96rem;
}

.service-card .service-features {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: #4b5563;
}

.service-card .service-features i {
    color: #16a34a;
    margin-right: 0.4rem;
}

.service-price {
    font-weight: 600;
    color: #047857;
    font-size: 0.95rem;
}

/* Gallery */
.service-gallery {
    padding: 80px 0;
    background: #ecfdf5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.3rem;
}

.gallery-item {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.14);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Service detail pages */
.page-hero {
    padding: 120px 0 70px;
    background: linear-gradient(135deg, #022c22 0%, #064e3b 40%, #16a34a 100%);
    color: #ecfdf5;
}

.page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.page-hero .breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    opacity: 0.85;
}

.page-hero .breadcrumb a {
    color: #a7f3d0;
    text-decoration: none;
}

.page-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.page-hero p {
    max-width: 640px;
    color: #ccfbf1;
}

.page-hero-actions {
    margin-top: 1.2rem;
}

.page-hero-media {
    position: relative;
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.7);
}

.page-hero-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.service-main {
    padding: 60px 0 80px;
    background: #f9fafb;
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.service-copy h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #022c22;
}

.service-copy p {
    margin-bottom: 0.8rem;
    color: #4b5563;
}

.service-points {
    list-style: none;
    margin-top: 0.6rem;
    display: grid;
    gap: 0.5rem;
}

.service-points li {
    font-size: 0.95rem;
    color: #374151;
}

.service-points i {
    color: #16a34a;
    margin-right: 0.4rem;
}

.service-sidebar {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem 1.3rem;
    border: 1px solid rgba(209, 213, 219, 0.95);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.service-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: #022c22;
}

.service-sidebar ul {
    list-style: none;
    font-size: 0.92rem;
    color: #4b5563;
}

.service-sidebar li {
    margin-bottom: 0.45rem;
}

.service-sidebar li i {
    color: #16a34a;
    margin-right: 0.4rem;
}

/* About / Areas */
.about-section {
    padding: 80px 0;
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: flex-start;
}

.about-text h2 {
    font-size: 2rem;
    color: #022c22;
    margin-bottom: 1rem;
}

.about-text p {
    color: #4b5563;
    margin-bottom: 0.9rem;
}

.trust-signals {
    display: grid;
    gap: 1.1rem;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.trust-item i {
    font-size: 1.3rem;
    color: #047857;
    margin-top: 0.1rem;
}

.trust-item h3 {
    font-size: 1rem;
    color: #022c22;
}

.trust-item p {
    font-size: 0.92rem;
    color: #4b5563;
}

.about-stats {
    display: grid;
    gap: 1.2rem;
}

.stat {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.4rem 1.1rem;
    text-align: center;
    border: 1px solid rgba(209, 213, 219, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.stat h3 {
    font-size: 1.4rem;
    color: #065f46;
    margin-bottom: 0.3rem;
}

.stat p {
    font-size: 0.88rem;
    color: #6b7280;
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background: #022c22;
    color: #ecfdf5;
}

.contact-section .section-header h2 {
    color: #ecfdf5;
}

.contact-section .section-header p {
    color: #a7f3d0;
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-item i {
    font-size: 1.3rem;
    color: #6ee7b7;
    margin-top: 0.1rem;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-item p {
    font-size: 0.95rem;
    color: #d1fae5;
}

.contact-item a {
    color: #a7f3d0;
    text-decoration: none;
}

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

.contact-form-container {
    background: rgba(15, 23, 42, 0.85);
    border-radius: 1.2rem;
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(45, 212, 191, 0.6);
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.9);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0.9rem;
    border-radius: 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.5);
}

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

.form-note {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #a7f3d0;
}

.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 2px solid rgba(226, 232, 240, 0.7);
    border-top-color: #22c55e;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
.footer {
    background: #010f0b;
    color: #d1fae5;
    padding: 2.8rem 0 1.4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.2rem;
    margin-bottom: 1.6rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.7rem;
}

.footer-section p {
    font-size: 0.9rem;
    color: #a7f3d0;
}

.footer-section ul {
    list-style: none;
    font-size: 0.9rem;
    color: #a7f3d0;
}

.footer-section li {
    margin-bottom: 0.4rem;
}

.footer-section li i {
    margin-right: 0.4rem;
    color: #22c55e;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #6ee7b7;
    border-top: 1px solid rgba(15, 118, 110, 0.6);
    padding-top: 0.8rem;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 110px;
    }

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

    .hero-text p {
        max-width: none;
    }

    .hero-image {
        margin-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 1.5rem;
        gap: 0.3rem;
        transition: left 0.3s ease;
        z-index: 900;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 110px 18px 70px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-content,
    .contact-content {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .nav-container {
        padding: 0 14px;
    }

    .hero {
        padding: 105px 16px 60px;
    }

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

    .hero-photo {
        height: 180px;
    }

    .gallery-item img {
        height: 180px;
    }
}


