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

body {
    font-family: 'Inter', sans-serif;
    background: #050505;
    color: #ffffff;
}

.navbar {
    width: 100%;
    padding: 24px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050505;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
}

.logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.logo span {
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: #d7d7d7;
    text-decoration: none;
    font-size: 15px;
}

.nav-links a:hover {
    color: #2ecc71;
}

.book-btn,
.primary-btn {
    background: #2ecc71;
    color: #050505;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

.secondary-btn {
    color: #ffffff;
    padding: 12px 22px;
    border: 1px solid #2ecc71;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.hero {
    min-height: 85vh;
    padding: 0 8%;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(46, 204, 113, 0.18), transparent 35%),
        #050505;
}

.hero-content {
    max-width: 760px;
}

.hero-subtitle {
    color: #2ecc71;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #cfcfcf;
    max-width: 560px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 6%;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 0 6%;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-description {
        font-size: 17px;
    }

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

.hero {
    justify-content: space-between;
    gap: 60px;
}

.hero-card {
    width: 380px;
    min-height: 420px;
    border: 1px solid rgba(46, 204, 113, 0.35);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)), #080808;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 36px;
    text-align: center;
}

.hero-card img {
    width: 180px;
    margin-bottom: 24px;
}

.hero-card h3 {
    font-size: 24px;
    margin-bottom: 22px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hero-features span {
    border: 1px solid rgba(46, 204, 113, 0.45);
    color: #2ecc71;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.book-section {
    padding: 110px 8%;
    background: radial-gradient(circle at bottom left, rgba(46, 204, 113, 0.12), transparent 35%), #050505;
}

.book-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px;
    border: 1px solid rgba(46, 204, 113, 0.28);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.section-subtitle {
    color: #2ecc71;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.book-container h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.book-description {
    color: #cfcfcf;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.booking-form {
    display: grid;
    gap: 16px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(46, 204, 113, 0.28);
    background: #0b0b0b;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #2ecc71;
}

.booking-form textarea {
    resize: vertical;
}

.postal-message {
    font-size: 14px;
    font-weight: 600;
    margin-top: -8px;
    margin-bottom: 4px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

.booking-form .date-container {
    position: relative;
    width: 100%;
}

.booking-form .date-container label {
    position: absolute;
    top: -10px;
    left: 16px;
    background: #111111; /* Slightly match the card gradient or solid color */
    padding: 0 4px;
    font-size: 13px;
    color: #2ecc71;
    font-weight: 600;
}

/* Adjust date input text color for placeholder-like behavior */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.booking-form button {
    margin-top: 10px;
    padding: 16px;
    border: none;
    border-radius: 999px;
    background: #2ecc71;
    color: #050505;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.booking-form button:hover {
    transform: translateY(-2px);
}

html {
    scroll-behavior: smooth;
}

/* Scroll Indicator */
.scroll-indicator {
    margin-top: 40px;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: inline-block;
    padding: 10px;
    transition: transform 0.3s;
    text-decoration: none;
}

.scroll-indicator a:hover {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* Environment Section */
.env-section {
    padding: 140px 8%;
    background: linear-gradient(to bottom, #050505 0%, rgba(5, 5, 5, 0.3) 20%, rgba(5, 5, 5, 0.4) 100%), url('assets/eco-bg.png') center/cover no-repeat fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.env-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
}

.env-content h2 {
    font-size: 46px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.env-description {
    color: #ffffff;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 32px;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-card {
        width: 100%;
    }

    .env-section {
        padding: 80px 6%;
    }
    
    .env-content h2 {
        font-size: 34px;
    }

    .service-grid,
.pricing-grid {
    grid-template-columns: 1fr;
}

.services-hero h1 {
    font-size: 42px;
}

.services-section h2,
.services-cta h2 {
    font-size: 34px;
}
}


/* SERVICES PAGE */
.services-hero {
    min-height: 65vh;
    padding: 120px 8% 80px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(46, 204, 113, 0.16), transparent 35%),
        #050505;
}

.services-hero-content {
    max-width: 760px;
}

.services-hero h1 {
    font-size: 58px;
    line-height: 1.08;
    margin-bottom: 24px;
}

.services-hero p {
    color: #cfcfcf;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.services-section {
    padding: 90px 8%;
    background: #050505;
    text-align: center;
}

.services-section h2 {
    font-size: 42px;
    margin-bottom: 38px;
}

.service-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card,
.pricing-card {
    border: 1px solid rgba(46, 204, 113, 0.28);
    border-radius: 24px;
    padding: 34px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.service-card i {
    color: #2ecc71;
    font-size: 30px;
    margin-bottom: 18px;
}

.service-card h3,
.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.service-card p,
.pricing-note {
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.7;
}

.price {
    color: #2ecc71;
    font-size: 44px;
    font-weight: 800;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.areas-list span {
    border: 1px solid rgba(46, 204, 113, 0.45);
    color: #2ecc71;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
}

.services-cta {
    padding: 100px 8%;
    text-align: center;
    background:
        radial-gradient(circle at bottom, rgba(46, 204, 113, 0.14), transparent 35%),
        #050505;
}

.services-cta h2 {
    font-size: 46px;
    margin-bottom: 16px;
}

.services-cta p {
    color: #cfcfcf;
    font-size: 18px;
    margin-bottom: 32px;
}

/* Contact Footer */
.contact-footer {
    background: #000000;
    padding: 32px 8%;
    border-top: 1px solid rgba(46, 204, 113, 0.2);
    text-align: center;
}

.contact-footer .footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-footer .contact-info p {
    color: #cfcfcf;
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-footer .contact-info strong {
    color: #2ecc71;
    font-weight: 600;
}

.contact-footer .fa-instagram {
    color: #2ecc71;
    margin-right: 6px;
}

.contact-footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 650px) {
    .booking-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Booking Success Message */
#successMessage {
    text-align: center;
    padding: 60px 30px;
    max-width: 700px;
    margin: 0 auto;
}

#successMessage h3 {
    color: #2ecc71;
    font-size: 34px;
    margin-bottom: 20px;
}

#successMessage p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto;
}

}
