/* Packages Page Styles */
:root {
    --primary: #ff6b00;
    --secondary: #222;
    --light: #f8f9fa;
    --dark: #111;
    --gray: #6c757d;
    --gradient-primary: linear-gradient(135deg, #ff6b00 0%, #ff9100 100%);
    --gradient-dark: linear-gradient(135deg, #111 0%, #333 100%);
    --card-bg: #1a1a1a;
    --card-border: #2a2a2a;
    --card-hover: #252525;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--light);
    margin-top: 0;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

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

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.7;
}

/* Packages Section */
.packages-section {
    background-color: #111;
    position: relative;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Package Card */
.package-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
    background-color: var(--card-hover);
}

.package-header {
    padding: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.package-badge.premium {
    background: linear-gradient(135deg, #d4af37 0%, #f9d172 100%);
}

.package-badge.coming {
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 100%);
}

.package-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.package-rating {
    color: var(--primary);
    font-size: 14px;
}

.package-image {
    position: relative;
    overflow: hidden;
}

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

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

.package-image.blurred img {
    filter: blur(3px);
}
.logo, .logo-img, .logo-text {
    background-color: transparent;
}

.package-logo {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--dark);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 2px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.package-logo img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.package-body {
    padding: 25px 20px;
    flex: 1;
}

.package-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.option-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    background-color: rgba(255, 107, 0, 0.1);
}

.option-item.active {
    background-color: rgba(255, 107, 0, 0.2);
    border-color: var(--primary);
    color: var(--primary);
}

.option-icon {
    font-size: 14px;
}

.option-text {
    font-size: 14px;
    font-weight: 500;
}

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

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

.features-list li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.features-list li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 14px;
}

.package-requirements {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
}

.package-requirements h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.package-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.package-requirements li {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-requirements li i {
    color: var(--primary);
}

.package-payment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icons span {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.terms {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.package-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
}

.package-footer .btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.call-btn {
    background-color: var(--primary);
    color: white;
}

.call-btn:hover {
    background-color: #e25a00;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #20bd5a;
}

.notify-btn {
    background-color: #4B5563;
    color: white;
}

.notify-btn:hover {
    background-color: #374151;
}

.coming-soon-content {
    text-align: center;
    padding: 30px 20px;
}

.coming-soon-content i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.coming-soon-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.coming-soon-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg') center/cover no-repeat fixed;
    padding: 100px 0;
    position: relative;
}

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

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-alt {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-alt a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-alt a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    background-color: #0c0c0c;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--card-border);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.faq-icon {
    background-color: rgba(255, 107, 0, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 0px solid rgba(255, 255, 255, 0.05);
}

.faq-question.active + .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 15px 0 0;
}

/* Contact CTA Section */
.contact-cta {
    background-color: var(--dark);
    padding: 80px 0;
}

.contact-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 50px 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-cta-icon {
    width: 80px;
    height: 80px;
    background-color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    border: 3px solid var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-cta-icon img {
    width: 50px;
    height: auto;
}

.contact-cta-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.contact-cta-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .packages-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .packages-container {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .contact-cta-content {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .package-footer {
        flex-direction: column;
    }
    
    .contact-cta-content {
        padding: 30px 15px;
    }
}

/* new fix */

/* Mobile spacing fix - Add to your packages.css file */

@media screen and (max-width: 768px) {
    /* Fix the hero section spacing */
    .hero {
        padding-top: 80px; /* Add padding to the top of hero to prevent overlap */
        margin-top: 0 !important;
        min-height: 500px; /* Ensure minimum height */
    }
    
    /* Ensure header has proper positioning */
    #header {
        background-color: transparent !important;
        position: absolute;
        width: 100%;
        z-index: 1000;
        top: 0;
    }
    
    /* Adjust the hero content positioning */
    .hero-content {
        padding-top: 20px; /* Add some extra space at the top */
    }
    
    /* If you have a fixed height for hero, you might need to increase it */
    .hero {
        height: auto; /* Allow it to expand based on content */
        min-height: 500px; /* Set minimum height */
    }
    
    /* Make sure overlay covers the full area including padding */
    .hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    /* Ensure the navbar container has appropriate padding */
    .navbar-container {
        padding: 15px 20px;
    }
    
    /* Adjust logo size if needed for better mobile display */
    .logo-img {
        max-height: 40px;
        width: auto;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text span {
        font-size: 12px;
    }
}

/* For very small screens, additional adjustments */
@media screen and (max-width: 480px) {
    .hero {
        padding-top: 70px; /* Slightly less padding for very small screens */
    }
    
    .hero-content h1 {
        font-size: 24px; /* Smaller headline for very small screens */
    }
    
    .hero-content p {
        font-size: 14px;
    }
}

/* Tour Packages Section Styles */
.tour-packages-section {
    background-color: #0a0a0a;
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.tour-packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.tour-packages-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Tour Card specific styles */
.package-card.tour-card {
    background-color: #191919;
    border: 1px solid #2a2a2a;
    transition: all 0.4s ease;
    position: relative;
}

.package-card.tour-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
    border-color: var(--primary);
}

.package-card.tour-card .package-image {
    overflow: hidden;
}

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

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

/* Tour Types Styles */
.tour-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.tour-type {
    background-color: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 30px;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tour-type:hover {
    background-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
}

.tour-type i {
    font-size: 12px;
}

/* Tour Highlights Styles */
.tour-highlights {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tour-highlights h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.highlight-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background-color: rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

.highlight-item i {
    color: var(--primary);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.highlight-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive styles for tour packages */
@media screen and (max-width: 991px) {
    .tour-packages-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .tour-packages-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    
    .tour-types {
        justify-content: center;
    }
    
    .package-card.tour-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .tour-type {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .highlight-item {
        padding: 8px;
    }
    
    .highlight-item i {
        font-size: 14px;
    }
    
    .highlight-item span {
        font-size: 13px;
    }
}