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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    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;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    color: #8FBC8F;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8FBC8F;
}

.btn-cita {
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cita:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 188, 143, 0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Compact Design */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 50%, #f0f8f0 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(143, 188, 143, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(95, 138, 95, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a3d20;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a5c51;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5530, #5F8A5F);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.4);
}

.btn-secondary {
    background: white;
    color: #2c5530;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    border: 2px solid rgba(44, 85, 48, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(143, 188, 143, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.btn-secondary:hover {
    border-color: #8FBC8F;
    background: #f8fffe;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(143, 188, 143, 0.3);
    color: #1e3d20;
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: scale(1.1);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
}

.hero-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(143, 188, 143, 0.1);
    max-width: 300px;
    width: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(143, 188, 143, 0.1);
}

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.card-info h3 {
    color: #2c5530;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
}

.card-info p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.stat {
    text-align: center;
    padding: 0.8rem 0.4rem;
    background: #f8fffe;
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

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

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

/* Submit button spinner and email confirmation helper (moved from inline styles in view) */
.btn-spinner {
    display: none !important;
    font-size: 1rem;
    width: 20px;
    height: 20px;
}

#submitBtn.loading .btn-spinner {
    display: block !important;
}

#submitBtn.loading .btn-icon {
    display: none !important;
}

#emailConfirmError {
    display: none;
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
        min-height: 100vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto 1.5rem auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        flex: 1 1 auto;
        justify-content: center;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c5530;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-details {
    text-align: left;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fffe;
}

.service-details h4 {
    color: #2c5530;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 0.2rem 0;
    color: #555;
    font-size: 0.9rem;
}

.service-details li::before {
    content: '✓';
    color: #8FBC8F;
    font-weight: bold;
    margin-right: 0.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8FBC8F;
    margin-top: 1rem;
}

/* Compact Services Styles */
.services-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card.compact {
    padding: 1.5rem;
    min-height: auto;
}

.service-card.compact:hover {
    transform: translateY(-5px);
}

.service-card.compact .service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.service-card.compact .service-icon i {
    font-size: 1.4rem;
}

.service-card.compact h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.service-description.compact {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-features.compact {
    text-align: left;
    margin: 2rem 0;
    padding: 0;
    background: none;
}

.service-features.compact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features.compact li {
    color: #555;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features.compact li::before {
    content: '•';
    color: #8FBC8F;
    font-weight: bold;
    font-size: 1rem;
}

.service-card.compact .price {
    font-size: 1.2rem;
    margin-top: 0.8rem;
}

/* Booking Section */
.booking {
    padding: 140px 0 50px 0; /* 90px extra para compensar el header fijo */
    background: white;
}

.booking h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form.compact {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e8f5e8;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #8FBC8F;
    box-shadow: 0 2px 8px rgba(44, 85, 48, 0.05);
}

.form-section:last-of-type {
    margin-bottom: 1.5rem;
}

.form-section h3 {
    color: #2c5530;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.form-section h3 i {
    color: #8FBC8F;
    font-size: 1rem;
}

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

.form-row.single {
    display: block;
}

.form-row.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row.triple {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #2c5530;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 2px solid #e8f5e8;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8FBC8F;
    box-shadow: 0 0 0 2px rgba(143, 188, 143, 0.1);
}

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

.terms-section {
    background: linear-gradient(135deg, #f8fdf8, #e8f5e8) !important;
    border-left-color: #5F8A5F !important;
}

.checkbox-row {
    margin-bottom: 0.8rem;
}

.checkbox-row:last-child {
    margin-bottom: 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 4px 0;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    opacity: 0.8;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid #8FBC8F;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-container:hover .checkmark {
    border-color: #5F8A5F;
    box-shadow: 0 0 0 2px rgba(143, 188, 143, 0.1);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    border-color: #5F8A5F;
    transform: scale(1.05);
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 2px;
    left: 6px;
}

.checkbox-container input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(143, 188, 143, 0.2);
}

.checkbox-text {
    color: #666;
    flex: 1;
    user-select: none;
}

.checkbox-text a {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dotted #2c5530;
}

.checkbox-text a:hover {
    text-decoration: none;
    border-bottom: 1px solid #2c5530;
    color: #1a3d1d;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 188, 143, 0.4);
}

.booking-info.compact {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.booking-info.compact h3 {
    color: #2c5530;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-info.compact h3 i {
    color: #8FBC8F;
}

.info-grid {
    display: grid;
    gap: 1.2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8fdf8;
    border-radius: 8px;
    border: 1px solid #e8f5e8;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #eef7ee;
    border-color: #d0e7d0;
}

.info-item i {
    font-size: 1.1rem;
    color: #8FBC8F;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: #2c5530;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.info-item p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0;
}

.info-item a {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
}

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

/* Responsive Design for Booking */
@media (max-width: 968px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row.triple {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row.double {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .booking {
        padding: 40px 0;
    }
    
    .booking-form.compact {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1rem;
    }
    
    .booking-info.compact {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 1rem;
    }
    
    .checkbox-container {
        font-size: 0.85rem;
    }
    
    .submit-btn {
        font-size: 1rem;
        padding: 0.9rem;
    }
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e8 100%);
}

.contact h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 10px;
}

.contact .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info-enhanced {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #8FBC8F;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.15);
    border-left-color: #2c5530;
}

.contact-icon {
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #2c5530;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.phone-number {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #2c5530 !important;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.contact-features i {
    color: #8FBC8F;
    font-size: 0.8rem;
    width: 12px;
}

.contact-map-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.map-placeholder {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.1);
    min-height: 280px;
    position: relative;
}

.map-content {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8fdf8, #e8f5e8);
}

.map-content i {
    font-size: 3rem;
    color: #8FBC8F;
    margin-bottom: 20px;
}

.map-content h3 {
    color: #2c5530;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.map-content p {
    color: #666;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.map-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.map-btn {
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 188, 143, 0.4);
}

.map-btn.secondary {
    background: linear-gradient(135deg, #2c5530, #1a3d1d);
}

.map-btn.secondary:hover {
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.4);
}

.quick-contact {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.1);
}

.quick-contact h4 {
    color: #2c5530;
    margin: 0 0 20px 0;
    text-align: center;
    font-size: 1.2rem;
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.call-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.email-btn {
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    color: white;
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 188, 143, 0.3);
}

.emergency-contact {
    background: linear-gradient(135deg, #fff3e0, #ffe0b3);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #ff9800;
}

.emergency-contact p {
    margin: 5px 0;
    color: #e65100;
    font-size: 0.9rem;
    line-height: 1.4;
}

.emergency-contact strong {
    color: #bf360c;
}

.emergency-contact i {
    color: #ff9800;
}

/* Responsive Design for Contact */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-icon {
        margin-bottom: 10px;
    }
    
    .map-content {
        padding: 30px 20px;
    }
    
    .quick-contact {
        padding: 20px;
    }
    
    .quick-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-features {
        align-items: center;
    }
    
    .map-content i {
        font-size: 2.5rem;
    }
    
    .map-content h3 {
        font-size: 1.1rem;
    }
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 40px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.footer-section h4 {
    margin-bottom: 0.8rem;
    color: #8FBC8F;
    font-weight: 600;
    font-size: 1rem;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #8FBC8F;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    background: #8FBC8F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: #5F8A5F;
    transform: translateY(-2px);
}

.schedule p {
    margin-bottom: 0.3rem;
    color: #e0e0e0;
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #8FBC8F;
    color: #e0e0e0;
    font-weight: 400;
    font-size: 0.85rem;
}

/* Modal Styles */
.modal {
    display: none !important; /* Force hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.modal.show {
    display: block !important; /* Only show when class is added */
}

.modal-content {
    background-color: white;
    margin: 0 auto;
    border-radius: 20px;
    width: 100%;
    max-width: 550px;
    position: relative;
    animation: modalSlideIn 0.4s ease;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    margin-top: 5vh;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    z-index: 10;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
}

.close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    color: white;
    position: relative;
}

.modal-icon {
    margin-bottom: 1rem;
}

.modal-icon i {
    font-size: 4rem;
    color: white;
    animation: checkBounce 0.6s ease 0.2s both;
}

@keyframes checkBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header h3 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.modal-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
    font-weight: 300;
}

.modal-body {
    padding: 2rem;
}

.modal-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.booking-summary {
    background: linear-gradient(135deg, #f8fffe, #e8f5e8);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid #e8f5e8;
}

.booking-summary h4 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 2px solid #8FBC8F;
    padding-bottom: 0.5rem;
}

.booking-summary p {
    margin-bottom: 0.8rem;
    text-align: left;
    color: #333;
    font-size: 0.95rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(143, 188, 143, 0.2);
}

.booking-summary p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.booking-summary strong {
    color: #2c5530;
    display: inline-block;
    min-width: 80px;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
}

.modal-btn {
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 188, 143, 0.4);
}

.secondary-btn {
    background: linear-gradient(135deg, #6c757d, #495057) !important;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #495057, #6c757d) !important;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4) !important;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366) !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-card {
        padding: 1.5rem;
    }
    
    .equipment-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .equipment-icon i {
        font-size: 1.5rem;
    }
    
    .packages-section .section-title {
        font-size: 2rem;
    }
    
    .packages-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-card {
        min-height: auto;
    }
    
    .package-card.featured {
        transform: scale(1);
        margin-bottom: 1rem;
    }
    
    .package-icon i {
        font-size: 2.5rem;
    }
    
    .package-card h3 {
        font-size: 1.4rem;
    }
    
    .discount-price {
        font-size: 2rem;
    }
    
    .packages-benefits h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .packages-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    /* Modal responsive for tablets */
    .modal {
        padding: 15px;
    }
    
    .modal-content {
        max-width: 90%;
        margin-top: 3vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 2.5rem 1.5rem 2rem;
    }
    
    .modal-header h3 {
        font-size: 1.6rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .booking-summary {
        padding: 1.5rem;
    }
    
    .modal-buttons {
        gap: 0.8rem;
    }
}

@media (max-width: 600px) {
    /* Modal responsive for small tablets */
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        max-width: 95%;
        margin-top: 2vh;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 2rem 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.4rem;
    }
    
    .modal-icon i {
        font-size: 3rem;
    }
    
    .close {
        right: 15px;
        top: 15px;
        font-size: 20px;
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services,
    .about,
    .booking,
    .contact {
        padding: 60px 0;
    }
    
    .booking-form,
    .booking-info {
        padding: 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    /* WhatsApp button adjustments for mobile */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        right: 65px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    /* Modal responsive for mobile phones */
    .modal {
        padding: 10px;
        align-items: center;
        display: flex;
    }
    
    .modal-content {
        width: 100%;
        max-width: none;
        margin: 0;
        max-height: 95vh;
        border-radius: 15px;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 2rem 1rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.4rem;
        margin: 0.5rem 0 0.3rem 0;
    }
    
    .modal-header p {
        font-size: 0.9rem;
    }
    
    .modal-icon i {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    .close {
        right: 15px;
        top: 15px;
        font-size: 20px;
        width: 28px;
        height: 28px;
    }
    
    .modal-body {
        padding: 1.5rem 1rem;
    }
    
    .modal-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .booking-summary {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .booking-summary h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .booking-summary p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        padding: 0.3rem 0;
    }
    
    .modal-btn {
        padding: 1rem;
        font-size: 0.95rem;
        min-height: 48px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .modal {
        padding: 5px;
    }
    
    .modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        max-height: 100vh;
        margin: 0;
    }
    
    .modal-header {
        padding: 1.5rem 1rem 1rem;
        border-radius: 0;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-header p {
        font-size: 0.85rem;
    }
    
    .modal-icon i {
        font-size: 2.5rem;
    }
    
    .close {
        right: 10px;
        top: 10px;
        font-size: 18px;
        width: 25px;
        height: 25px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .booking-summary {
        padding: 1rem;
    }
    
    .booking-summary h4 {
        font-size: 1rem;
    }
    
    .booking-summary p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .modal-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-content {
        margin-top: 2vh;
        max-height: 96vh;
    }
    
    .modal-header {
        padding: 1.5rem 2rem 1rem;
    }
    
    .modal-icon i {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #8FBC8F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Enhanced Service Cards */
.service-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    text-align: left;
    margin-bottom: 20px;
}

.service-features h4 {
    color: #2c5530;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #666;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8FBC8F;
    font-weight: bold;
}

/* Equipment Section */
.section {
    padding-bottom: 50px;
}

#equipment {
    scroll-margin-top: 80px; /* Only for equipment section */
}

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

.equipment-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #5F8A5F 0%, #8FBC8F 100%);
}

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.equipment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5F8A5F 0%, #8FBC8F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.equipment-card:hover .equipment-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(95, 138, 95, 0.3);
}

.equipment-icon i {
    font-size: 1.8rem;
    color: white;
}

.equipment-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.equipment-function {
    color: #666;
    line-height: 1.6;
    text-align: left;
    font-size: 0.95rem;
    background: #f8fffe;
    padding: 1rem;
    margin-top: 1rem;
}

/* Compact Equipment Styles */
.equipment-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.equipment-card.compact {
    padding: 1.5rem;
    min-height: auto;
}

.equipment-card.compact:hover {
    transform: translateY(-5px);
}

.equipment-card.compact .equipment-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.equipment-card.compact .equipment-icon i {
    font-size: 1.4rem;
}

.equipment-card.compact h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.equipment-function.compact {
    background: none;
    padding: 0;
    margin-top: 0;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Packages Section */
.packages-section {
    background: linear-gradient(135deg, #8FBC8F 0%, #5F8A5F 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="g" cx="20" cy="20" r="20"><stop stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="1" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23g)"/></svg>') repeat;
    opacity: 0.1;
}

.packages-section .container {
    position: relative;
    z-index: 2;
}

.packages-section .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.packages-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.package-card {
    background: white;
    color: #333;
    border-radius: 20px;
    padding: 0;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-card.featured {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(143, 188, 143, 0.3);
}

.package-card.featured::before {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    height: 5px;
}

.package-card.special::before {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.package-card.wellness::before {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.package-card.luxury::before {
    background: linear-gradient(135deg, #8FBC8F, #2c5530);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #333;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid white;
    z-index: 10;
}

.package-icon {
    text-align: center;
    margin: 1.5rem 0 1rem;
    padding: 0 1.5rem;
}

.package-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(143, 188, 143, 0.3));
}

.package-card h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    color: #2c5530;
    font-weight: 700;
    padding: 0 1.5rem;
}

.package-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.package-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #f8fffe, #e8f5e8);
    border-radius: 10px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    position: relative;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
    margin-right: 10px;
    display: block;
}

.discount-price {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin: 0.5rem 0;
}

.discount-percent {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 0.5rem;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.3);
}

.savings {
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.package-includes {
    flex-grow: 1;
    padding: 0 1.5rem;
}

.package-includes h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-includes h4 i {
    color: #27ae60;
}

.package-includes ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-includes li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    /* display: flex; */
    align-items: center;
    gap: 0.75rem;
    transition: all 0.2s ease;
}

.package-includes li:hover {
    color: #2c3e50;
    transform: translateX(5px);
}

.package-includes li i {
    color: #8FBC8F;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.package-features {
    padding: 0.75rem 1.5rem;
    background: #f8fffe;
    margin: 0 1.5rem 1rem;
    border-radius: 8px;
    border-left: 3px solid #8FBC8F;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: #555;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: #8FBC8F;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.package-btn {
    margin: 1.5rem;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.primary-btn {
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    color: white;
}

.secondary-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.romantic-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
}

.express-btn {
    background: linear-gradient(135deg, #8FBC8F, #2c5530);
    color: white;
}

.luxury-btn {
    background: linear-gradient(135deg, #2c5530, #1a331d);
    color: white;
}

.packages-benefits {
    margin: 3rem 0 2rem;
    text-align: center;
}

/* Compact packages styles */
.packages-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.packages-grid.compact .package-card {
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.1);
    border: 1px solid #e8f5e8;
    min-height: auto;
    background: white;
    color: #333;
    overflow: visible;
    position: relative;
}

.packages-grid.compact .package-card::before {
    display: none;
}

.packages-grid.compact .package-card:hover {
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.15);
}

.packages-grid.compact .package-icon {
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin: 0 auto 1rem auto;
}

.packages-grid.compact .package-icon i {
    color: white !important;
    font-size: 1.3rem;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    filter: none !important;
}

.packages-grid.compact .package-card h3 {
    font-size: 1.3rem;
    color: #2c5530;
    margin: 0 0 0.5rem 0;
    text-align: center;
    font-weight: 600;
}

.packages-grid.compact .package-subtitle {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.packages-grid.compact .package-price {
    text-align: center;
    margin: 0 0 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fdf8, #e8f5e8);
    border-radius: 10px;
}

.packages-grid.compact .discount-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5530;
    display: block;
    line-height: 1;
}

.packages-grid.compact .original-price {
    font-size:  1rem;
    color: #888;
    text-decoration: line-through;
    display: inline-block;
    margin: 0 0.5rem 0 0;
}

.packages-grid.compact .discount-percent {
    background: linear-gradient(135deg, #8FBC8F, #5F8A5F);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 0.5rem;
}

.packages-grid.compact .package-includes.compact {
    margin: 0 0 1rem 0;
}

.packages-grid.compact .package-includes.compact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.packages-grid.compact .package-includes.compact li {
    /* use flex so icon+label sit left and the nested box can sit to the right */
    /* display: flex; */
    align-items: flex-start;
    gap: 0.75rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0 0.6rem 0;
    border-bottom: 1px solid rgba(95, 138, 95, 0.06);
}

/* Icon at the left (fixed width) */
.packages-grid.compact .package-includes.compact li > i:first-child {
    flex: 0 0 20px;
    margin-top: 0.15rem;
    color: #8FBC8F;
}

.packages-grid.compact .package-includes.compact li > strong {
    flex: 0 0 auto;
    display: inline-block;
    margin-bottom: 0.1rem;
    color: #2c5530;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.packages-grid.compact .package-includes.compact li .service-description {
    flex: 1;
}

/* Nested lists for services and equipment within packages (use flex auto margin to push right)
   The nested box will sit to the right of the label on wide screens */
.package-servicio-list,
.package-equipo-list {
    margin: 0.15rem 0 0 0;
    padding: 0.6rem 0.9rem;
    list-style: none;
    background: #f8fdf8;
    border-radius: 6px;
    border-left: 3px solid #8FBC8F;
    min-width: 160px;
    max-width: 48%;
    box-shadow: 0 4px 10px rgba(95,138,95,0.04);
    margin-left: auto; /* push the box to the right within the li */
}

.package-servicio-item,
.package-equipo-item {
    margin: 0.25rem 0;
    padding-left: 0.6rem;
    color: #4f7050;
    line-height: 1.4;
    font-size: 0.92rem;
}

.package-servicio-item::before,
.package-equipo-item::before {
    content: '\2022'; /* bullet */
    color: #8FBC8F;
    display: inline-block;
    width: 0.9rem;
    margin-left: -0.9rem;
    margin-right: 0.45rem;
    font-size: 1.1rem;
    line-height: 1;
    vertical-align: middle;
}

/* Responsive: on small screens stack everything */
@media (max-width: 768px) {
    .packages-grid.compact .package-includes.compact li {
        display: block;
    }

    .packages-grid.compact .package-includes.compact li > i:first-child {
        margin-right: 0.5rem;
        margin-top: 0;
        display: inline-block;
    }

    .package-servicio-list,
    .package-equipo-list {
        margin-left: 1.6rem;
        max-width: none;
        width: auto;
        display: block;
    }
}

.packages-grid.compact .package-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: #2c5530;
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: auto;
}

.packages-grid.compact .package-duration i {
    font-size: 0.8rem;
}

.packages-benefits.compact {
    margin: 2rem 0 1.5rem;
}

.packages-benefits.compact .benefits-grid {
    gap: 1rem;
    margin-bottom: 1rem;
}

.packages-benefits.compact .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    text-align: left;
}

.packages-benefits.compact .benefit-item i {
    font-size: 1.5rem;
    color: #8FBC8F;
    flex-shrink: 0;
}

.packages-benefits.compact .benefit-item div h4 {
    color: white;
    font-size: 1rem;
    margin: 0 0 0.3rem 0;
}

.packages-benefits.compact .benefit-item div p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

.packages-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #ffd700;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.packages-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: white;
}

.cta-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #333;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.discount-percent {
    background: #ff4757;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-includes h4 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.package-includes ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #666;
}

.package-duration {
    text-align: center;
    font-style: italic;
    color: #888;
    font-size: 0.95rem;
}

.packages-cta {
    text-align: center;
    margin-top: 40px;
}

.packages-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.package-contact {
    background: white;
    color: #8FBC8F;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-contact:hover {
    background: #f8fffe;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* Enhanced Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    font-size: 0.85rem;
}

.contact-info i {
    color: #8FBC8F;
    width: 16px;
    font-size: 0.8rem;
}

.social-media {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.8rem;
}

.social-link:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.social-link i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    border-color: #bc1888;
}

.social-link.tiktok:hover {
    background: #000;
    color: white;
    border-color: #000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8FBC8F;
}

/* Enhanced Form Styles */
.form-error {
    background: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #c62828;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .social-media {
        grid-template-columns: 1fr;
    }
}

/* Logo sizing: keep logo responsive and avoid extremely large images */
.logo-image {
	max-height: 56px; /* default header logo height */
	width: auto;
	max-width: 100%;
	display: block;
	object-fit: contain;
}

@media (max-width: 576px) {
	.logo-image {
		max-height: 42px;
	}
}

@media (min-width: 1200px) {
	.logo-image {
		max-height: 64px;
	}
}