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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header-logo h1 {
    color: #ff6b35;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('img/Bg1.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ff0000; /* red */
    position: relative;
    overflow: hidden;
    padding: 120px 20px 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 107, 53, 0.3) 100%);
    z-index: 1;
}

/* Image-based animated layer (below content, above overlay) */
.hero-anim-images {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-anim-images img {
    position: absolute;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
    user-select: none;
}

/* Plane path across the top (awaiting plane image) */
.anim-plane-img {
    top: 14%;
    left: -20%;
    width: 360px; /* reduced one step */
    transform: rotate(6deg);
    animation: planeAcross 18s linear infinite;
}

/* Helicopter gentle hover mid-right */
.anim-chopper-img {
    top: 40%;
    right: 8%;
    width: 320px; /* reduced one step */
    animation: hoverFloat 3.6s ease-in-out infinite;
}

/* Train running along the bottom */
.anim-train-img {
    bottom: 2%; /* pin to bottom */
    left: 2%;  /* pin to left */
    width: 520px; /* set a stable size */
    animation: trainGlide 20s linear infinite; /* move across the bottom */
    will-change: transform;
}

@keyframes planeAcross {
    0% { left: -25%; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { left: 115%; opacity: 0; }
}

@keyframes hoverFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes trainRun {
    0% { left: -30%; }
    100% { left: 110%; }
}

/* Transform-based glide to keep layout stable */
@keyframes trainGlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(110vw); }
}

/* Responsive adjustment for very small screens */
@media (max-width: 600px) {
    .anim-train-img { width: 300px; bottom: 1.5%; left: 2%; }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-anim-images img {
        animation: none !important;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3; /* above animated images */
}

.company-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.company-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
    color: #ff0000; /* red */
}

.company-location {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff0000; /* red */
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

.company-address {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 1;
    line-height: 1.6;
    color: #ff0000; /* red */
}

.director-info {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(128, 0, 0, 0.12); /* maroon tint */
    border-radius: 10px;
    border-left: 4px solid #800000;
}

.director-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #ff0000; /* red */
}

.contact-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.85);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero .contact-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.hero .contact-item i {
    font-size: 1.2rem;
    color: #ff0000; /* red */
}

.hero .contact-item a {
    color: #ff0000; /* red */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: none;
}

.hero .contact-item a:visited,
.hero .contact-item a:active,
.hero .contact-item a:focus {
    color: #ff0000;
}

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

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

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Hero-specific: Make the home hero 'Book Now' button text red */
.hero .btn.btn-secondary {
    color: #ff0000; /* red text */
    border-color: #ff0000; /* red border */
}

.hero .btn.btn-secondary:hover {
    background: #ffffff; /* keep white background for clarity */
    color: #ff0000; /* keep red text on hover */
    border-color: #ff0000;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #e74c3c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    background: #f7f7f7;
}

.gallery-item img {
    max-width: 100%; /* don't overflow the column */
    width: auto;     /* don't stretch to column width */
    height: auto;    /* keep original aspect ratio */
    display: block;
    margin: 0 auto;  /* center smaller images */
}

.gallery-item:hover img { transform: none; }

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}


/* Packages Section */
.packages-section {
    padding: 80px 0;
}

.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 16px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.filters select {
    padding: 12px 44px 12px 14px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    min-width: 180px;
    background-color: #fff;
    color: #333;
    font-weight: 500;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.filters select:hover {
    border-color: #dfe3e6;
}

.filters select:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.filters .btn.btn-primary {
    padding: 12px 22px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ff6b35, #ff8c3a);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.filters .btn.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #e55a2b, #ff7a22);
    box-shadow: 0 14px 26px rgba(255, 107, 53, 0.35);
}

.search-bar {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 8px 10px;
    border-radius: 40px;
    border: 1px solid #eee;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.search-bar input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.search-bar button {
    padding: 12px 16px;
    background: linear-gradient(135deg, #ff6b35, #ff8c3a);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 18px rgba(255, 107, 53, 0.25);
}

.search-bar button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(255, 107, 53, 0.35);
}

/* Filters responsive tweaks */
@media (max-width: 768px) {
    .filters {
        padding: 14px;
        gap: 0.75rem;
    }
    .filters select {
        min-width: unset;
        flex: 1 1 100%;
        width: 100%;
    }
    .filters .btn.btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

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

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.package-image {
    height: 200px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-content {
    padding: 1.5rem;
}

.package-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.package-destinations {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.package-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.package-duration {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.package-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #666;
}

.package-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
    text-align: center;
}

.btn-outline:hover {
    background: #ff6b35;
    color: white;
}

/* Make only the Book Now button text red */
.package-actions .btn-outline[onclick*="contactForBooking"] {
    color: #ff0000; /* red */
    border-color: #ff0000; /* red border to match */
}

.package-actions .btn-outline[onclick*="contactForBooking"]:hover {
    background: #ffffff; /* keep white background on hover for contrast */
    color: #ff0000; /* keep font red on hover */
    border-color: #ff0000;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.about-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem 1rem;
    margin-top: 1.25rem;
}

.about-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.about-highlights .highlight-item i {
    color: #e74c3c;
}

.about-highlights .highlight-item span {
    color: #333;
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 120px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

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

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.about-hero-image img:hover {
    transform: scale(1.02);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #e74c3c;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.service-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c00 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.about-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #ff6b35;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f3f4f6; /* light neutral for contrast */
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.contact-section .contact-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 0.2rem;
}

.contact-section .contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: #222; /* higher contrast */
}

.contact-section .contact-item p {
    color: #2d3748; /* stronger contrast */
}

.contact-section .contact-item a {
    color: #b23a1e; /* darker brand tone for contrast on light bg */
    font-weight: 600;
    text-decoration: none;
}

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

.contact-section .contact-item a:focus {
    outline: 3px solid rgba(178, 58, 30, 0.3);
    outline-offset: 2px;
    border-radius: 4px;
}

.contact-form {
    background: #f7f7f7; /* higher-contrast background */
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

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

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-section i {
    margin-right: 8px;
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #ff6b35;
}

.modal-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.modal-header {
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: #666;
    font-size: 1.1rem;
}

.modal-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list i {
    color: #e74c3c;
    width: 16px;
}

.price-highlight {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
}

.price-highlight h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price-highlight p {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group select {
        min-width: auto;
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 2rem;
    }

    .about-cta h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .modal-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .package-card {
        margin: 0 10px;
    }
}

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

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

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}
