/* ===== CSS VARIABLES & RESET ===== */
:root {
    /* Colors */
    --primary: #1e3a5f;
    --primary-dark: #152a44;
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --accent: #0ea5e9;
    --light: #f8fafc;
    --gray: #64748b;
    --dark: #1e293b;
    --white: #ffffff;
    --success: #10b981;
    --whatsapp: #25D366;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --line-height: 1.6;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    
    /* Borders & Shadows */
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-main);
    line-height: var(--line-height);
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-lg) 0;
}

.bg-light {
    background-color: var(--light);
}

.bg-dark {
    background-color: var(--primary);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.bg-dark .section-header h2 {
    color: var(--white);
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto var(--space-sm);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.bg-dark .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.bg-dark .btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-nav {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius);
}

.btn-nav:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    color: var(--secondary);
    font-size: 1.75rem;
}

.logo span {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    padding: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    margin-top: 70px;
}

.hero-overlay {
    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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,208C960,235,1056,245,1152,229.3C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-content p {
    margin-bottom: var(--space-sm);
}

.about-list {
    margin-top: var(--space-sm);
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.about-list i {
    color: var(--success);
    font-size: 1.25rem;
}

.about-image .image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 500;
}

.about-image i {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    opacity: 0.9;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.service-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--secondary);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

/* ===== PRICING SECTION ===== */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius);
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.pricing-tab {
    display: none;
}

.pricing-tab.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.price-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.price-card.featured {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.07);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    font-size: 1.25rem;
    margin: var(--space-sm) 0;
    color: var(--primary);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: var(--space-sm) 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

.price .save {
    display: block;
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 500;
    margin-top: 0.25rem;
}

.price-card ul {
    margin: var(--space-sm) 0;
    text-align: left;
}

.price-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.price-card i {
    color: var(--success);
}

.packages-list {
    background: var(--light);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    margin-top: var(--space-md);
}

.packages-list h4 {
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

.packages-list ul li {
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.packages-list .highlight {
    color: var(--secondary);
    font-weight: 600;
}

/* ===== FEATURES / WHY US ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.feature {
    text-align: center;
    padding: var(--space-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--secondary);
    font-size: 1.75rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--primary);
}

/* ===== REVIEWS & TESTIMONIALS ===== */
.reviews-preview,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.review-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.review-card.full {
    grid-column: 1 / -1;
}

.stars {
    color: var(--secondary);
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.review-card p {
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.reviewer strong {
    display: block;
    color: var(--primary);
}

.reviewer span {
    font-size: 0.85rem;
    color: var(--gray);
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-xs);
    font-size: 0.85rem;
    color: var(--gray);
}

.review-source i {
    color: #DB4437;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.testimonial-image {
    margin-bottom: var(--space-sm);
}

.testimonial-image .image-placeholder.small {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.testimonial-card p {
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.testimonial-card strong {
    display: block;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.testimonial-date {
    font-size: 0.85rem;
    color: var(--gray);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 500;
}

.image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    opacity: 0.9;
}

.image-placeholder.small i {
    font-size: 1.5rem;
}

.image-placeholder span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== BOOKING SECTION ===== */
.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-lg);
}

.booking-form {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-note {
    margin-top: var(--space-sm);
    color: var(--gray);
    font-size: 0.9rem;
}

.booking-info {
    background: var(--light);
    padding: var(--space-md);
    border-radius: var(--border-radius-lg);
    align-self: start;
    position: sticky;
    top: 100px;
}

.booking-info h3 {
    color: var(--primary);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.hours-list {
    margin-bottom: var(--space-md);
}

.hours-list li {
    padding: 0.25rem 0;
    font-size: 0.95rem;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.contact-link:hover {
    background: var(--white);
    transform: translateX(5px);
}

.contact-link.whatsapp {
    color: var(--whatsapp);
}

.service-area {
    padding-top: var(--space-sm);
    border-top: 1px solid #e2e8f0;
}

.service-area p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.contact-info p {
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 1.25rem;
    color: var(--secondary);
    min-width: 24px;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--white);
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
}

.contact-cta h3 {
    margin-bottom: var(--space-xs);
}

.contact-cta p {
    margin-bottom: var(--space-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.footer-brand p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--secondary);
    min-width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom .small {
    margin-top: 0.25rem;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: var(--space-xl) var(--space-sm) var(--space-lg);
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.25rem;
    margin-bottom: var(--space-xs);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-sm);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    text-align: left;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question i {
    transition: var(--transition);
    color: var(--secondary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--space-md);
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: var(--space-sm) var(--space-md) var(--space-md);
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    margin-bottom: var(--space-xs);
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.25rem;
}

.faq-cta {
    text-align: center;
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--light);
    border-radius: var(--border-radius-lg);
}

.faq-cta p {
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-sm);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .about-grid,
    .booking-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 2.5rem;
        --space-xl: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-md);
        gap: var(--space-xs);
        box-shadow: var(--box-shadow);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-xl) var(--space-sm) var(--space-lg);
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: var(--space-md);
    }
    
    .stat strong {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .booking-info {
        position: static;
    }
    
    .contact-grid {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact ul {
        align-items: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    .page-header {
        padding: var(--space-lg) var(--space-sm) var(--space-md);
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 2rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: var(--space-sm);
        font-size: 0.95rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}