/* CSS Variables for consistent theming */
:root {
    --primary-color: #0B3D91;
    --primary-dark: #072a66;
    --secondary-color: #00B4D8;
    --secondary-dark: #0096c7;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --form-bg: #f0f9ff;
    --border-color: #ddd;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
    --accent-yellow: #FFD700;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --header-height: 70px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(24px, 5vw, 32px);
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: gray;
}

/* Header */
.main-header {
    background-color: #191970;
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
}

.main-nav a {
    color: white;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: gray;
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.user-actions {
    display: flex;
    gap: 10px;
}

.login-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.login-btn:hover {
    background-color: var(--secondary-dark);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    padding: 5px;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: #191970;
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    height: auto;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav ul {
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: white;
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: var(--header-height);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 30px);
    border-radius: 4px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
}

/* Search Section */
.search-section {
    padding: 50px 0;
    margin-top: -50px;
}

.search-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: clamp(20px, 4vw, 30px);
    box-shadow: var(--shadow);
}

.search-form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: clamp(20px, 4vw, 24px);
}

.search-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
}

.input-group select,
.input-group input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-group select:focus,
.input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
    height: 48px;
}

.search-btn:hover {
    background-color: var(--primary-dark);
}

/* Featured Packages */
.featured-packages {
    padding: clamp(40px, 8vw, 80px) 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(15px, 3vw, 30px);
}

.package-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.package-image {
    position: relative;
    height: 200px;
}

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

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

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.package-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: clamp(18px, 3vw, 20px);
    margin-bottom: 10px;
    color: var(--primary-color);
}

.package-location {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-features {
    margin-bottom: 20px;
}

.package-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.package-features li i {
    color: var(--secondary-color);
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.package-price {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: var(--primary-color);
}

.per-person {
    font-size: 14px;
    color: var(--text-light);
}

.view-details {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.view-details:hover {
    background-color: var(--primary-dark);
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.view-all-btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
}

/* Amenities Section */
.amenities-section {
    padding: clamp(40px, 8vw, 80px) 0;
    background-color: var(--form-bg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(15px, 3vw, 30px);
}

.amenity-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: clamp(20px, 4vw, 30px);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-10px);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background-color: #e6f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.amenity-icon i {
    font-size: 30px;
    color: var(--secondary-color);
}

.amenity-card h3 {
    font-size: clamp(16px, 3vw, 18px);
    margin-bottom: 15px;
    color: var(--primary-color);
}

.amenity-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
    padding: clamp(40px, 8vw, 80px) 0;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 10px;
    scroll-snap-align: start;
}

.testimonial-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: clamp(20px, 4vw, 30px);
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-dark);
}

/* Newsletter Section */
.newsletter-section {
    padding: clamp(40px, 6vw, 60px) 0;
    background-color: var(--primary-color);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: clamp(14px, 2vw, 16px);
}

.newsletter-form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.newsletter-form-group input:focus {
    outline: none;
}

.newsletter-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background-color: var(--secondary-dark);
}

/* Footer */
.main-footer {
    background-color: var(--primary-dark);
    color: white;
    padding: clamp(40px, 6vw, 60px) 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s, padding 0.3s;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.payment-methods {
    margin-top: 20px;
}

.payment-methods p {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Login/Register Form Styles */
.auth-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    margin: 40px auto;
}

.illustration {
    flex: 1;
    background: linear-gradient(135deg, #0047AB, #001F5C);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.illustration h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.illustration p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.illustration::before,
.illustration::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.illustration::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.illustration::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.logo-container {
    margin-bottom: 30px;
    width: 100%;
    max-width: 280px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    width: 100%;
    max-width: 330px;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.form-container {
    flex: 1;
    padding: clamp(20px, 4vw, 40px);
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    max-height: 700px;
}

.form-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--input-bg);
}

.form-tab {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    position: relative;
}

.form-tab.active {
    color: var(--primary-color);
}

.form-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.form-content {
    position: relative;
}

.form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: var(--transition);
}

.form.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.auth-input-group {
    margin-bottom: 20px;
    position: relative;
}

.auth-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.9rem;
}

.auth-input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--input-bg);
    border-radius: 8px;
    background: var(--input-bg);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    font-family: inherit;
}

.auth-input-group input:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 71, 171, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 40px;
    color: var(--text-light);
    cursor: pointer;
    user-select: none;
}

.password-requirements {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 5px;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    font-family: inherit;
}

.auth-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 71, 171, 0.2);
}

.auth-btn:active {
    transform: translateY(0);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.message {
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.message.error {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border-left: 3px solid #ff4757;
}

.message.success {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border-left: 3px solid #2ed573;
}

.message-icon {
    margin-right: 10px;
    font-size: 1.2rem;
}

.back-container {
    text-align: center;
    margin-top: 30px;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    padding: 8px 16px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
}

.back-link:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

.back-icon {
    margin-right: 8px;
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .testimonial-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 60px;
    }
    
    .container {
        max-width: 720px;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .search-inputs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .auth-container {
        flex-direction: column;
        max-width: 500px;
    }
    
    .illustration {
        padding: 30px;
    }
    
    .logo-container {
        max-width: 220px;
        margin-bottom: 20px;
    }
    
    .form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .hero-section {
        height: 50vh;
    }
    
    .search-inputs {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form-group {
        flex-direction: column;
    }
    
    .newsletter-form-group input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter-btn {
        border-radius: 4px;
        padding: 12px;
        width: 100%;
    }
    
    .package-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .testimonial-slide {
        flex: 0 0 100%;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    :root {
        --header-height: 50px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .user-actions {
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }
    
    .login-btn {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title::after {
        width: 60px;
    }
    
    .featured-packages, 
    .testimonials-section, 
    .newsletter-section,
    .amenities-section {
        padding: 30px 0;
    }
    
    .package-image {
        height: 180px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .social-links, .payment-icons {
        justify-content: center;
    }
    
    .illustration {
        padding: 20px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .form-tab {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .auth-input-group input {
        padding: 10px 12px;
    }
    
    .auth-btn {
        padding: 10px;
    }
}

@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .package-content {
        padding: 15px;
    }
    
    .testimonial-content {
        padding: 15px;
    }
    
    .logo-container {
        max-width: 180px;
    }
}

/* Accessibility Improvements */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Animation for form switching */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

.form.active {
    animation: fadeIn 0.5s forwards;
}

.form.inactive {
    animation: fadeOut 0.5s forwards;
}

/* Print Styles */
@media print {
    .main-header,
    .mobile-menu-toggle,
    .hero-section,
    .newsletter-section,
    .main-footer {
        display: none;
    }
    
    body {
        background-color: white;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .package-card,
    .testimonial-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .package-card:hover {
        transform: none;
    }
}   