:root {
    --green-dark: #14532d;
    --green: #22c55e;
    --black: #18181b;
    --gray-light: #f3f4f6;
    --white-off: #f9fafb;
    --font-title: 'Montserrat', sans-serif;
    --font-text: 'Roboto', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-text);
    background: var(--gray-light);
    color: var(--black);
    line-height: 1.6;
}

/* ------------------- Header ------------------- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--black);
    color: var(--white-off);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(20,83,45,0.08);
}
.logo {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
}
.nav a {
    color: var(--white-off);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    display: inline-block;
}
.nav a:hover {
    color: var(--green);
    background: rgba(34,197,94,0.08);
}

/* ------------------- Hero Section ------------------- */
.hero {
    height: 100vh;
    background: url('images/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,83,45,0.5);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-off);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease;
}
.hero-title {
    font-family: var(--font-title);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 1.5s ease;
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 2s ease;
}
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-family: var(--font-title);
    border: none;
    border-radius: 30px;
    background: var(--green);
    color: var(--white-off);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(20,83,45,0.15);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.btn:hover {
    background: var(--green-dark);
    transform: scale(1.05);
}

/* ------------------- About Section ------------------- */
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6rem 2rem 2rem 2rem;
    background: var(--white-off);
}
.about-content {
    flex: 1 1 350px;
    padding-right: 2rem;
}
.about-content h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}
.about-gallery {
    flex: 1 1 350px;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.about-gallery img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(20,83,45,0.12);
    transition: transform 0.3s;
}
.about-gallery img:hover {
    transform: scale(1.08);
}

/* ------------------- Gallery Section ------------------- */
.gallery {
    padding: 4rem 2rem;
    background: var(--gray-light);
}
.gallery h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 2rem;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.gallery-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(20,83,45,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.gallery-grid img:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 16px rgba(34,197,94,0.18);
}

/* ------------------- Reviews Section ------------------- */
.reviews {
    padding: 4rem 2rem;
    background: var(--white-off);
}
.reviews h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 2rem;
    text-align: center;
}
.reviews-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.review {
    background: var(--gray-light);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(20,83,45,0.10);
    padding: 1.5rem;
    max-width: 320px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.2s;
}
.review:hover {
    transform: translateY(-6px) scale(1.03);
}
.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(20,83,45,0.10);
}
.review-content {
    flex: 1;
}
.review-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.review-stars {
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.review-name {
    font-weight: 500;
    color: var(--green-dark);
}

/* ------------------- Appointment Section ------------------- */
.appointment {
    padding: 4rem 2rem;
    background: var(--gray-light);
    text-align: center;
}
.appointment h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 2rem;
}
.appointment-form {
    max-width: 400px;
    margin: 0 auto;
    background: var(--white-off);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(20,83,45,0.10);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.form-group label {
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--green-dark);
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-text);
    background: var(--gray-light);
    margin-bottom: 0.5rem;
    transition: border 0.2s;
}
.form-group input:focus,
.form-group select:focus {
    border: 1.5px solid var(--green);
    outline: none;
}
.confirmation-message {
    margin-top: 1rem;
    color: var(--green-dark);
    font-weight: 500;
    font-size: 1.1rem;
    display: none;
}

/* ------------------- Footer ------------------- */
.footer {
    background: var(--black);
    color: var(--white-off);
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    position: relative;
    gap: 0;
}
.logo h1 {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green);
    margin: 0;
}
.nav-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: auto;
}

.nav-link {
    color: var(--white-off);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-title);
    transition: color 0.2s, background 0.2s;
    padding: 0.3rem 0.7rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 48px;
    width: auto;
    margin-left: 0.5rem;
}

.nav-link:hover {
    color: var(--green);
    background: rgba(34,197,94,0.08);
}
.cta-btn {
    background: var(--green);
    color: var(--black);
    font-family: var(--font-title);
    font-weight: 700;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    margin-left: auto;
    margin-right: 0;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(34,197,94,0.15);
    display: inline-block;
    width: 100%;
    max-width: 180px;
}
.cta-btn:hover {
    background: var(--green-dark);
    color: var(--white-off);
    transform: scale(1.04);
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    cursor: pointer;
    margin-left: 1.2rem;
    z-index: 1200;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 28px;
    background: var(--white-off);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw !important;
    background: var(--black);
    box-shadow: 0 8px 24px rgba(20,83,45,0.12);
    padding: 0;
    gap: 1.5rem;
    z-index: 1100;
    align-items: stretch;
}
.nav-menu.active .nav-link {
    width: 100vw !important;
    max-width: none !important;
    justify-content: center;
    text-align: center;
    display: flex;
    margin: 0;
    border-radius: 0;
    height: 56px;
    font-size: 1.2rem;
    padding-left: 0;
    padding-right: 0;
}

.cta-btn.active {
    display: block;
    margin: 1.2rem 0 0 0;
    width: 100vw;
    max-width: none;
    width: 100vw !important;
    max-width: none !important;
    margin: 0;
    border-radius: 0;
    display: block;
}
.footer-info {
    flex: 1 1 200px;
    font-size: 1rem;
}
.footer-social {
    flex: 1 1 120px;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.footer-social img {
    width: 32px;
    height: 32px;
    filter: grayscale(1) brightness(1.2);
    transition: filter 0.2s, transform 0.2s;
}
.footer-social img:hover {
    filter: none;
    transform: scale(1.1);
}
.footer-legal {
    flex: 1 1 200px;
    font-size: 0.95rem;
}
.footer-legal a {
    color: var(--green);
    text-decoration: underline;
    margin-left: 0.5rem;
}

/* ------------------- Animations ------------------- */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ------------------- Responsive design ------------------- */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }
    .cta-btn {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-container {
        flex-wrap: wrap;
    }
    .about {
        flex-direction: column;
        padding: 4rem 1rem 2rem 1rem;
    }
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .cta-btn,
    .cta-btn.active,
    .btn,
    .btn.btn-primary {
        width: 100%;
        display: block;
        box-sizing: border-box;
        margin-left: 0 !important;
        margin-right: 0 !important;
        text-align: center;
    }
    }
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        padding: 0.5rem 1rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .nav a {
        margin: 0 0.5rem;
        font-size: 1rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .about-gallery img {
        width: 80px;
        height: 80px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    .gallery-grid img {
        height: 90px;
    }
    .reviews-list {
        flex-direction: column;
        gap: 1.2rem;
    }
    .review {
        max-width: 100%;
    }
    .appointment-form {
        padding: 1rem;
    }
}

:root {
    --green-dark: #14532d;
    --green: #22c55e;
    --black: #18181b;
    --gray-light: #f3f4f6;
    --white-off: #f9fafb;
    --font-title: 'Montserrat', sans-serif;
    --font-text: 'Roboto', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-text);
    background: var(--gray-light);
    color: var(--black);
    line-height: 1.6;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--black);
    color: var(--white-off);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(20,83,45,0.08);
}
.logo {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.nav a {
    color: var(--white-off);
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav a:hover {
    color: var(--green);
}

/* Hero section */
.hero {
    height: 100vh;
    background: url('images/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20,83,45,0.5);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white-off);
    max-width: none !important;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease;
}
.hero-title {
    font-family: var(--font-title);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: fadeInUp 1.5s ease;
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 2s ease;
}
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-family: var(--font-title);
    border: none;
    border-radius: 30px;
    background: var(--green);
    color: var(--white-off);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(20,83,45,0.15);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.btn:hover {
    background: var(--green-dark);
    transform: scale(1.05);
}

/* About section */
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 6rem 2rem 2rem 2rem;
    background: var(--white-off);
}
.about-content {
    flex: 1 1 350px;
    padding-right: 2rem;
}
.about-content h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--green-dark);
    margin-bottom: 1rem;
}
.about-gallery {
    flex: 1 1 350px;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.about-gallery img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(20,83,45,0.12);
    transition: transform 0.3s;
}
.about-gallery img:hover {
    transform: scale(1.08);
}

/* Gallery section */
.gallery {
    padding: 4rem 2rem;
    background: var(--gray-light);
}
.gallery h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 2rem;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.gallery-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(20,83,45,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.gallery-grid img:hover {
    transform: scale(1.07);
    box-shadow: 0 4px 16px rgba(34,197,94,0.18);
}

/* Reviews section */
.reviews {
    padding: 4rem 2rem;
    background: var(--white-off);
}
.reviews h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 2rem;
    text-align: center;
}
.reviews-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.review {
    background: var(--gray-light);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(20,83,45,0.10);
    padding: 1.5rem;
    max-width: 320px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.2s;
}
.review:hover {
    transform: translateY(-6px) scale(1.03);
}
.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(20,83,45,0.10);
}
.review-content {
    flex: 1;
}
.review-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.review-stars {
    color: var(--green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.review-name {
    font-weight: 500;
    color: var(--green-dark);
}

/* Appointment section */
.appointment {
    padding: 4rem 2rem;
    background: var(--gray-light);
    text-align: center;
}
.appointment h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--green-dark);
    margin-bottom: 2rem;
}
.appointment-form {
    max-width: 400px;
    margin: 0 auto;
    background: var(--white-off);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(20,83,45,0.10);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.form-group label {
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--green-dark);
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-text);
    background: var(--gray-light);
    margin-bottom: 0.5rem;
    transition: border 0.2s;
}
.form-group input:focus,
.form-group select:focus {
    border: 1.5px solid var(--green);
    outline: none;
}
.confirmation-message {
    margin-top: 1rem;
    color: var(--green-dark);
    font-weight: 500;
    font-size: 1.1rem;
    display: none;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white-off);
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.footer-info {
    flex: 1 1 200px;
    font-size: 1rem;
}
.footer-social {
    flex: 1 1 120px;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.footer-social img {
    width: 32px;
    height: 32px;
    filter: grayscale(1) brightness(1.2);
    transition: filter 0.2s, transform 0.2s;
}
.footer-social img:hover {
    filter: none;
    transform: scale(1.1);
}
.footer-legal {
    flex: 1 1 200px;
    font-size: 0.95rem;
}
.footer-legal a {
    color: var(--green);
    text-decoration: underline;
    margin-left: 0.5rem;
}

/* Responsive design */
@media (max-width: 900px) {
    .about {
        flex-direction: column;
        padding: 4rem 1rem 2rem 1rem;
    }
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .header {
        flex-direction: column;
        padding: 0.5rem 1rem;
    }
    .logo {
        font-size: 1.5rem;
    }
    .nav a {
        margin: 0 0.5rem;
        font-size: 1rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .about-gallery img {
        width: 80px;
        height: 80px;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    .gallery-grid img {
        height: 90px;
    }
    .reviews-list {
        flex-direction: column;
        gap: 1.2rem;
    }
    .review {
        max-width: 100%;
    }
    .appointment-form {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
