/* Enhanced Reset and Performance Optimizations */
:root {
    --header-bg: #1a1a1a;
    --header-scrolled-bg: #0f0f0f;
    --accent-color: #FFD700;
    --transition-speed: 0.3s;
    --border-radius: 10px;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-heavy: 0 12px 40px rgba(0, 0, 0, 0.3);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #1a1a1a;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
}

h1 {
    font-size: 3.2rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #e0e0e0;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.2rem;
}

/* Animation helpers */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-ready.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.section-header p {
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.95) 50%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #FFD700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.05) 20%, 
        rgba(255, 215, 0, 0.1) 50%, 
        rgba(255, 215, 0, 0.05) 80%, 
        transparent 100%);
    animation: header-shine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes header-shine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(30, 30, 30, 0.98) 50%, rgba(15, 15, 15, 0.98) 100%);
    border-bottom: 3px solid #FFD700;
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.2), 0 8px 40px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    align-items: center;
    padding: 1rem 2rem 1rem 0.5rem;
    width: 100%;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}


.nav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.35rem 0.6rem;
    margin-left: 0;
    border-radius: 14px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.12);
}

.nav-brand:hover {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.24);
}

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.nav-brand:hover .logo {
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.5));
    transform: scale(1.05);
}


.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.nav-link:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 215, 0, 0.2);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(0, 0, 0, 0.6)), 
                url('../images/Auto -back ground.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Automatic Section */
.why-automatic {
    padding: 80px 20px;
    background: #2a2a2a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: #3a3a3a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
}

.benefit-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* About Section */
.about-new {
    padding: 80px 20px;
    background: #1a1a1a;
    text-align: center;
}

.about-new h2 {
    margin-bottom: 2rem;
    color: #fff;
}

.about-new p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-new .btn-primary {
    margin-top: 1rem;
}

/* Packages Section */
.packages {
    padding: 80px 20px;
    background: #2a2a2a;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto 3rem;
    max-width: 1200px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: promo-pulse 3s ease-in-out infinite;
}

@keyframes promo-pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 15px 50px rgba(255, 215, 0, 0.5); }
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: promo-shine 3s ease-in-out infinite;
}

@keyframes promo-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.promo-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    animation: promo-bounce 2s ease-in-out infinite;
}

@keyframes promo-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.promo-content h3 {
    color: #000;
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 800;
}

.promo-content p {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}

.promo-content strong {
    color: #000;
    font-weight: 800;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
}

.promo-timer i {
    animation: timer-tick 1s ease-in-out infinite;
}

@keyframes timer-tick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.promo-badge {
    background: #000;
    color: #FFD700;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.discount-text {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.discount-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.package-card {
    background: #3a3a3a;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* Discount Ribbon */
.discount-ribbon {
    position: absolute;
    top: 30px;
    right: -45px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    padding: 8px 45px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.5);
    z-index: 10;
    animation: ribbon-glow 2s ease-in-out infinite;
    white-space: nowrap;
    width: 200px;
    text-align: center;
}

.discount-ribbon.special {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

@keyframes ribbon-glow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(255, 68, 68, 0.5);
        transform: rotate(45deg) scale(1);
    }
    50% { 
        box-shadow: 0 4px 20px rgba(255, 68, 68, 0.7);
        transform: rotate(45deg) scale(1.02);
    }
}

/* Old Price Styling */
.old-price {
    display: block;
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.package-card.popular {
    border-color: #FFD700;
    transform: scale(1.02);
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.package-header h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.package-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    display: block;
}

.duration {
    color: #e0e0e0;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features i {
    color: #FFD700;
    font-size: 1rem;
}

.additional-services {
    margin-top: 4rem;
    text-align: center;
}

.additional-services h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: #3a3a3a;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    border: 2px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.service-icon-simple {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.service-item h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-price {
    color: #FFD700;
    font-weight: 800;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Booking Section */
.booking {
    padding: 80px 20px;
    background: #1a1a1a;
}

.booking-content {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-text {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-text h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.booking-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.booking-grid {
    display: grid;
    grid-template-columns: auto 400px;
    gap: 3rem;
    align-items: start;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: start;
}

.booking-image {
    text-align: left;
    margin-right: 2rem;
}

.success-image {
    width: 911px;
    height: 665px;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.success-image.is-updating {
    opacity: 0;
}

.success-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
}

.success-image:focus-visible {
    outline: 3px solid #FFD700;
    outline-offset: 4px;
}

.booking-form {
    background: #2a2a2a;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 400px;
    min-width: 400px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #555;
    border-radius: 8px;
    background: #3a3a3a;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group small {
    color: #ccc;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    text-align: left;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-submit-container {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #2a2a2a;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #3a3a3a;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    text-align: left;
}

.faq-question i {
    color: #FFD700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.6;
    padding: 1rem 0;
    margin: 0;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: #2a2a2a;
    margin: 0;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact .section-header h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.contact .section-header p {
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.contact-card {
    background: #3a3a3a;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
}

.contact-card i {
    color: #FFD700;
    font-size: 2.4rem;
}

.contact-card h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #e0e0e0;
    margin: 0;
    font-size: 1.05rem;
}

.contact-card a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover,
.contact-card a:focus {
    color: #FFD700;
}

.social-media {
    margin-top: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid #333;
    text-align: center;
}

.social-media h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    text-decoration: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 140px;
}

.social-link i {
    font-size: 2.4rem;
}

.social-link span {
    font-size: 1rem;
    font-weight: 600;
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: #fff;
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #166fe5, #1565c0);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #20b358, #0d7377);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #f56040, #ffdc80);
    color: #fff;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #d73449, #e84d35, #f5c842);
    color: #fff;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.notification-close:hover,
.notification-close:focus {
    opacity: 1;
}

.notification-success {
    background: linear-gradient(135deg, #10B981, #059669);
}

.notification-error {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.notification-info {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

@media (max-width: 600px) {
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* Floating WhatsApp button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    transform: scale(0);
    opacity: 0;
}

.floating-whatsapp.show {
    transform: scale(1);
    opacity: 1;
}

.floating-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp:active {
    transform: scale(0.95);
}

.floating-whatsapp i {
    animation: whatsapp-icon-bounce 1s ease-in-out infinite;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #FFD700;
    padding: 10px 15px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #1a1a1a;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.pulse-animation {
    animation: whatsapp-pulse 1s ease-out;
}

@keyframes whatsapp-icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.8),
                    0 0 0 15px rgba(37, 211, 102, 0.2);
    }
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4),
                    0 0 0 30px rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-top: 3px solid #FFD700;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(207, 112, 8, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    padding: 3rem 20px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4 i {
    font-size: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand-title {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.footer-logo {
    width: 50px;
    height: 30px;
    filter: brightness(1.2);
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 0.5rem;
}

.footer-links a i {
    width: 16px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-item:hover {
    transform: translateX(5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.social-item.facebook:hover {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.social-item.instagram:hover {
    background: linear-gradient(45deg, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.1), rgba(252, 176, 64, 0.1));
    color: #e4405f;
}

.social-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.social-item.phone:hover {
    background: rgba(12, 163, 208, 0.1);
    color: #0ca3d0;
}

.social-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-contact-info {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-info p {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-info i {
    width: 16px;
    color: #0ca3d0;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 20px;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #c0c0c0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #0ca3d0, #cf7008);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 4px 12px rgba(12, 163, 208, 0.3); }
}

/* Responsive footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 1.5rem;
    }
    
    .footer-section:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .promo-banner {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        text-align: center;
        gap: 1.5rem;
    }
    
    .promo-icon {
        margin: 0 auto;
    }
    
    .promo-badge {
        margin: 0 auto;
    }
    
    .promo-content h3 {
        font-size: 1.5rem;
    }
    
    .promo-content p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .footer-social {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Force all footer text to be white */
    .footer * {
        color: #fff !important;
    }
    
    .footer h4,
    .footer-brand span,
    .stat-number,
    .footer-links a i,
    .social-item i,
    .footer-contact-info i {
        color: #FFD700 !important;
    }
    
    .badge {
        background: linear-gradient(135deg, #FFD700, #FFA500) !important;
        color: #000 !important;
    }
    
    /* Navigation fixes */
    .nav {
        padding: 0.75rem 1rem;
    }
    
    .nav-brand {
        padding: 0.3rem 0.75rem;
        margin-left: 0;
    }
    
    .logo {
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 3px solid #FFD700;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        width: 100%;
        display: block;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        color: #fff;
        font-size: 1.1rem;
        text-align: left;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        background: rgba(255, 215, 0, 0.1);
        color: #FFD700;
        padding-left: 2rem;
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active {
        background: rgba(255, 215, 0, 0.2);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* Typography */
    h1 {
        font-size: 2.2rem !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    h3 {
        font-size: 1.4rem !important;
    }
    
    p {
        font-size: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Hero section */
    .hero {
        padding: 120px 20px 60px !important;
        min-height: 80vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* Benefits section */
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Packages section */
    .packages {
        padding: 60px 20px !important;
    }
    
    .promo-banner {
        grid-template-columns: 1fr !important;
        padding: 1.5rem;
        gap: 1rem;
        text-align: center;
    }
    
    .promo-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .promo-content h3 {
        font-size: 1.4rem !important;
    }
    
    .promo-content p {
        font-size: 0.95rem;
    }
    
    .promo-badge {
        margin: 0 auto;
        min-width: 80px;
    }
    
    .discount-text {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .package-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .package-card.popular {
        transform: none !important;
    }
    
    .discount-ribbon {
        padding: 6px 35px;
        font-size: 0.6rem;
        top: 25px;
        right: -40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.5rem 1rem;
    }
    
    /* Booking section */
    .booking {
        padding: 60px 20px !important;
    }
    
    .booking-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        max-width: 100%;
    }
    
    .booking-image {
        text-align: center;
        margin-right: 0;
        order: 2;
    }
    
    .success-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 911 / 665;
    }
    
    .booking-form {
        width: 100% !important;
        min-width: auto !important;
        max-width: 100% !important;
        margin: 0;
        padding: 1.5rem;
        order: 1;
    }
    
    /* FAQ section */
    .faq {
        padding: 60px 20px !important;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem !important;
    }
    
    /* Contact section */
    .contact {
        padding: 60px 20px !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.75rem 1.25rem;
    }
    
    .contact-card i {
        font-size: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .social-link {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    /* Footer - Complete Mobile Redesign */
    .footer {
        padding-bottom: 0;
        background: #1a1a1a !important;
        overflow: hidden;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem;
        padding: 3rem 20px 2rem;
        width: 100%;
    }
    
    .footer-section {
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .footer-section h4 {
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 1.75rem;
        color: #FFD700 !important;
        font-weight: 700;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        width: 70px;
        height: 42px;
    }
    
    .footer-brand span {
        font-size: 2rem;
        color: #FFD700 !important;
        font-weight: 800;
    }
    
    .footer-section > p {
        font-size: 1.05rem !important;
        text-align: center !important;
        color: #fff !important;
        line-height: 1.8 !important;
        font-weight: 400 !important;
    }
    
    .footer-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem;
        margin-top: 2rem;
        width: 100%;
    }
    
    .stat-item {
        padding: 1.75rem 1.25rem;
        background: rgba(255, 215, 0, 0.15) !important;
        border: 2px solid rgba(255, 215, 0, 0.3) !important;
        width: 100%;
        box-sizing: border-box;
        display: block;
    }
    
    .stat-number {
        font-size: 2.5rem;
        color: #FFD700 !important;
        font-weight: 800;
    }
    
    .stat-label {
        font-size: 1rem;
        color: #fff !important;
        font-weight: 500;
    }
    
    .footer-links {
        text-align: center;
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .footer-links a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
        color: #fff !important;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 10px;
        border: 1px solid rgba(255, 215, 0, 0.2);
        font-weight: 500;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-links a:hover {
        padding-left: 1.25rem;
        background: rgba(255, 215, 0, 0.2);
        color: #FFD700 !important;
        border-color: rgba(255, 215, 0, 0.4);
    }
    
    .footer-links a i {
        color: #FFD700;
        font-size: 1.2rem;
    }
    
    .footer-social {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
    }
    
    .social-item {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        font-size: 1.15rem;
        background: rgba(255, 215, 0, 0.12) !important;
        border: 2px solid rgba(255, 215, 0, 0.3) !important;
        color: #fff !important;
        font-weight: 600;
        width: 100%;
        box-sizing: border-box;
    }
    
    .social-item span {
        color: #fff !important;
        font-weight: 600;
    }
    
    .social-item i {
        font-size: 1.75rem;
        color: #FFD700 !important;
    }
    
    .footer-contact-info {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 2px solid rgba(255, 215, 0, 0.3);
        width: 100%;
    }
    
    .footer-contact-info p {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.05rem;
        color: #fff !important;
        margin-bottom: 1rem;
        font-weight: 500;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .footer-contact-info i {
        color: #FFD700;
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding: 2.5rem 20px;
        border-top: 2px solid rgba(255, 215, 0, 0.4);
        background: rgba(0, 0, 0, 0.3);
        width: 100%;
    }
    
    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        width: 100%;
        align-items: center;
    }
    
    .footer-bottom p {
        font-size: 1rem;
        text-align: center;
        color: #fff !important;
        line-height: 1.8;
        font-weight: 500;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-badges {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        align-items: stretch;
        width: 100%;
    }
    
    .badge {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        background: linear-gradient(135deg, #FFD700, #FFA500) !important;
        color: #000 !important;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 15px 50px !important;
    }
    
    .hero-text h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5;
    }
    
    h2 {
        font-size: 1.6rem !important;
    }
    
    .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .packages,
    .why-automatic,
    .booking,
    .faq,
    .contact {
        padding: 50px 15px !important;
    }
    
    .promo-banner {
        padding: 1rem;
    }
    
    .promo-content h3 {
        font-size: 1.2rem !important;
    }
    
    .promo-content p {
        font-size: 0.9rem;
    }
    
    .package-card {
        padding: 1.5rem 1rem;
    }
    
    .booking-form {
        padding: 1rem;
    }
    
    /* Prevent iOS zoom on input focus */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    /* Touch-friendly buttons */
    .btn-primary, .btn-secondary {
        padding: 16px 24px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* WhatsApp button smaller on mobile */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        padding: 2.5rem 15px 1.5rem;
        gap: 2.5rem;
        width: 100%;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-logo {
        width: 60px;
        height: 36px;
    }
    
    .footer-brand span {
        font-size: 1.8rem !important;
        color: #FFD700 !important;
    }
    
    .footer-section h4 {
        font-size: 1.3rem !important;
        margin-bottom: 1.5rem;
        color: #FFD700 !important;
    }
    
    .footer-section > p {
        font-size: 1rem !important;
        color: #fff !important;
    }
    
    .footer-stats {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
        width: 100%;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stat-number {
        font-size: 2.25rem;
        color: #FFD700 !important;
    }
    
    .stat-label {
        font-size: 0.95rem;
        color: #fff !important;
    }
    
    .footer-links {
        width: 100%;
    }
    
    .footer-links li {
        width: 100%;
    }
    
    .footer-links a {
        display: flex;
        padding: 0.9rem 1rem;
        font-size: 1.05rem;
        color: #fff !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-links a i {
        font-size: 1.1rem;
    }
    
    .footer-social {
        width: 100%;
    }
    
    .social-item {
        display: flex;
        padding: 1.25rem;
        font-size: 1.05rem;
        color: #fff !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .social-item span {
        color: #fff !important;
    }
    
    .social-item i {
        font-size: 1.6rem;
        color: #FFD700 !important;
    }
    
    .footer-contact-info p {
        font-size: 1rem;
        color: #fff !important;
    }
    
    .footer-contact-info i {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 2rem 15px;
        width: 100%;
    }
    
    .footer-bottom-content {
        width: 100%;
    }
    
    .footer-bottom p {
        font-size: 0.95rem;
        line-height: 1.7;
        color: #fff !important;
        width: 100%;
    }
    
    .footer-badges {
        width: 100%;
    }
    
    .badge {
        display: block;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        color: #000 !important;
        background: linear-gradient(135deg, #FFD700, #FFA500) !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Better spacing for small screens */
    .benefit-card,
    .package-card,
    .service-item {
        margin-bottom: 0;
    }
    
    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Landscape mobile phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 20px 40px !important;
    }
    
    .hero-text h1 {
        font-size: 2rem !important;
    }
}