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

:root {
    --primary-green: #2c5f41;
    --secondary-green: #4a7c59;
    --accent-green: #6aa979;
    --light-green: #8bc34a;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #2d3436;
    --text-dark: #2d3436;
    --text-medium: #636e72;
    --text-light: #b2bec3;
    --shadow: rgba(44, 95, 65, 0.1);
    --shadow-hover: rgba(44, 95, 65, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(44, 95, 65, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    max-width: 200px;
}

.nav-logo .logo-img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}



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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-whatsapp:hover {
    background: #20B954;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.nav-whatsapp i {
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--secondary-green);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Separation */
section {
    position: relative;
    z-index: 1;
}

section:not(.hero) {
    background-clip: padding-box;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.7) 0%, rgba(233, 236, 239, 0.7) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background/bg.jpg') center/cover;
    opacity: 0.3;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    animation: slideInLeft 1.2s ease;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    animation: slideInUp 1s ease 0.6s both;
}

/* Staff Section */
.staff-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
    margin-top: 0;
}

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

.staff-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.staff-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: var(--light-gray);
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

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

.staff-info {
    padding: 2rem;
    text-align: center;
}

.staff-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.staff-info p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #20B954;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-info p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Offers Section */
.offers-section {
    padding: 100px 0;
    background: var(--white);
}

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

.offer-card {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-10px);
    color: var(--white);
}

.offer-card > * {
    position: relative;
    z-index: 2;
}

.offer-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.offer-card:hover .offer-icon {
    color: var(--white);
}

.discount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.offer-card:hover .discount {
    color: var(--white);
}

.offer-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.offer-card:hover h3 {
    color: var(--white);
}

.offer-card p {
    transition: color 0.3s ease;
}

.offer-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 5rem;
    color: var(--primary-green);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    text-align: center;
}

.booking-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.booking-content .btn-primary {
    background: var(--white);
    color: var(--primary-green);
}

.booking-content .btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-5px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-medium);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
    padding: 1rem 0;
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-medium);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 95, 65, 0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 65, 0.3);
}

.contact-form {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 22px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(44, 95, 65, 0.1);
    background: #fafafa;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.contact-form button {
    border: none;
    font-family: inherit;
}

/* Contact Logo */
.contact-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer p {
    color: var(--text-light);
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-nav i {
    font-size: 1.2rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Base responsive utilities */
.section {
    padding: 80px 0;
}

@media (max-width: 968px) {
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-container {
        position: relative;
        flex-wrap: nowrap;
        padding: 1rem 1rem;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-logo {
        flex: none;
        order: 1;
    }

    .nav-logo {
        max-width: 150px;
    }

    .nav-logo .logo-img {
        height: 50px;
        max-width: 100%;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 998;
        order: 4;
        justify-content: flex-start;
        align-items: center;
    }

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

    .nav-menu li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 10px 20px;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--primary-green);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-menu li a:hover {
        background: rgba(34, 139, 34, 0.1);
        color: var(--primary-green);
    }

    .nav-whatsapp {
        position: fixed;
        right: 70px;
        top: 20px;
        z-index: 999;
        padding: 8px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
        order: 2;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
        position: relative;
        margin-left: auto;
        padding: 8px;
        order: 3;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .bar {
        width: 22px;
        height: 3px;
        background: var(--primary-green);
        margin: 2px 0;
        transition: 0.3s;
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero {
        min-height: 85vh;
        padding: 140px 0 40px;
        align-items: flex-start;
        padding-top: 140px;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 2rem 1.5rem;
        margin: 2rem auto 0;
        text-align: center;
        border-radius: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 12px;
        margin: 0;
    }

    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .contact-form form {
        gap: 1.4rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
        padding: 0.5rem 0;
    }

    .contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .contact-item p {
        font-size: 1rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .footer .container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-logo {
        max-width: 130px;
    }

    .nav-logo .logo-img {
        height: 45px;
        max-width: 100%;
    }

    .contact-logo-img {
        height: 100px;
    }





    .hero {
        text-align: center;
        padding: 130px 0 40px;
        min-height: 75vh;
        align-items: flex-start;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 1.5rem;
        margin: 1rem auto 0;
        border-radius: 12px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.8rem;
    }

    .hero-buttons {
        align-items: center;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .staff-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .staff-card,
    .service-card {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    .staff-image,
    .service-image {
        height: 0;
        padding-bottom: 75%; /* 4:3 aspect ratio */
        position: relative;
    }

    .staff-image img,
    .service-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .staff-info,
    .service-info {
        padding: 1.5rem;
    }

    .staff-info h3,
    .service-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .offer-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 400px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 1.8rem 1.5rem;
        margin: 0 auto;
        max-width: 400px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2.5rem 2rem;
        border-radius: 15px;
        margin: 0 auto;
        max-width: 100%;
    }

    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 1.8rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 16px 18px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .contact-form form {
        gap: 1.6rem;
    }

    .contact-item {
        margin-bottom: 2rem;
        text-align: center;
    }

    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
    }

    .social-links a {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-logo {
        max-width: 120px;
    }

    .nav-logo .logo-img {
        height: 40px;
        max-width: 100%;
    }

    .contact-logo-img {
        height: 90px;
    }





    .nav-whatsapp {
        padding: 6px 10px;
        font-size: 0.7rem;
        right: 75px;
        top: 12px;
    }

    .hamburger {
        width: 30px;
        height: 25px;
        padding: 5px;
    }

    .bar {
        width: 20px;
        height: 2px;
    }

    .hero {
        min-height: 65vh;
        padding: 120px 0 30px;
        align-items: flex-start;
    }

    .hero-container {
        padding: 0 0.5rem;
    }

    .hero-content {
        padding: 1.2rem 1rem;
        margin: 1rem auto 0;
        border-radius: 10px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .staff-card,
    .service-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .staff-card,
    .service-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .staff-image,
    .service-image {
        height: 0;
        padding-bottom: 100%; /* 1:1 aspect ratio */
        position: relative;
    }

    .staff-image img,
    .service-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .staff-info,
    .service-info {
        padding: 1.2rem;
    }

    .staff-info h3,
    .service-info h3 {
        font-size: 1.2rem;
    }

    .offer-card {
        padding: 1.5rem 1rem;
    }

    .testimonial-card {
        padding: 1.2rem;
    }

    .contact-form {
        padding: 1.8rem 1.2rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-nav {
        gap: 0.8rem;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .nav-container {
        padding: 0.8rem 0.5rem;
    }

    .nav-logo {
        max-width: 100px;
    }

    .nav-logo .logo-img {
        height: 35px;
        max-width: 100%;
    }

    .contact-logo-img {
        height: 80px;
    }

    .staff-card,
    .service-card {
        margin: 0 auto 1.5rem;
        max-width: 280px;
    }

    .staff-image,
    .service-image {
        height: 0;
        padding-bottom: 100%; /* 1:1 aspect ratio for very small screens */
        position: relative;
    }

    .staff-image img,
    .service-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .staff-info,
    .service-info {
        padding: 1rem;
    }

    .staff-info h3,
    .service-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }



    /* Remove the nested media query for very small screens */

    /* Remove the nested media query for very small screens */

    .nav-whatsapp {
        padding: 5px 8px;
        font-size: 0.65rem;
        right: 65px;
        top: 10px;
        min-width: auto;
    }

    .nav-whatsapp {
        padding: 8px;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        right: 70px;
        top: 12px;
    }

    .nav-whatsapp span {
        display: none;
    }

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

    .hero-content {
        padding: 1rem 0.8rem;
        margin: 0.5rem auto 0;
        border-radius: 8px;
    }

    .hero-content h1 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/backgrounds/hero-zen.svg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Terms & Policy Styles */
.terms-policy-section {
    background: var(--light-gray);
    padding: 80px 0;
}

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

.terms-block {
    background: var(--white);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    border-left: 5px solid var(--primary-green);
}

.terms-block h2 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.terms-block h2 i {
    font-size: 1.8rem;
}

.terms-block h3 {
    color: var(--secondary-green);
    font-size: 1.3rem;
    margin: 30px 0 15px;
    border-bottom: 2px solid var(--light-green);
    padding-bottom: 10px;
}

.terms-block ul {
    margin: 15px 0;
    padding-left: 25px;
}

.terms-block li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-block .contact-info {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.terms-block .contact-info p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-block .contact-info i {
    color: var(--primary-green);
    width: 20px;
}

/* Contact Page Styles */
.contact-page-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-expanded {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
}

.contact-info-expanded h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin: 20px 0;
}

.contact-details-grid {
    display: grid;
    gap: 25px;
    margin-top: 40px;
}

.contact-detail-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.contact-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-hover);
    border-color: var(--light-green);
}

.contact-icon {
    background: var(--primary-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.contact-detail-card h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-detail-card p {
    margin: 5px 0;
    line-height: 1.6;
}

.contact-detail-card small {
    color: var(--text-medium);
    font-style: italic;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-btn:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.contact-btn.whatsapp-btn {
    background: #25D366;
}

.contact-btn.whatsapp-btn:hover {
    background: #20BA5A;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    font-size: 0.9rem;
}

.features-list i {
    color: var(--light-green);
    font-size: 0.8rem;
}

.contact-form-expanded {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
}

.contact-form-expanded h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-form-main {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-green);
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(44, 95, 65, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.btn-large {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-note {
    margin-top: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
}

.form-note i {
    color: var(--primary-green);
    margin-right: 5px;
}

.form-note a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: var(--primary-green);
    color: var(--white);
    padding: 30px 0;
}

.quick-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-contact-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.quick-contact-text p {
    opacity: 0.9;
    margin: 0;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20BA5A;
}

.btn-call {
    background: var(--white);
    color: var(--primary-green);
}

.btn-call:hover {
    background: var(--light-gray);
}

/* Navigation Active State */
.nav-link.active {
    color: var(--light-green);
    font-weight: 600;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-page-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-details-grid {
        gap: 20px;
    }
    
    .contact-info-expanded,
    .contact-form-expanded {
        padding: 25px;
    }
    
    .terms-block {
        padding: 25px;
    }
    
    .quick-contact-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .quick-contact-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .terms-block h2 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-detail-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}