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

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d5a3d;
    --accent-color: #d4af37;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
}

.phone-link:hover {
    opacity: 0.8;
}

.certifications {
    display: flex;
    gap: 10px;
}

.cert-badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

/* ============================================
   MULTI-LEVEL DROPDOWN MENU - PURE CSS FIX
   ============================================ */

/* Base: All <li> elements must be position: relative */
.dropdown,
.dropdown-menu li,
.dropdown-menu li.dropdown {
    position: relative;
}

/* First-level dropdown menu (opens below parent) */
.dropdown > .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    list-style: none;
    min-width: 240px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 4px;
    z-index: 1000;
    white-space: nowrap;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* All <li> elements in dropdown menus */
.dropdown-menu li {
    padding: 0;
    position: relative;
    white-space: nowrap;
}

/* Dropdown menu links */
.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Nested dropdown indicator (chevron icon) */
.dropdown-menu li.dropdown > a {
    padding-right: 35px;
    position: relative;
}

.dropdown-menu li.dropdown > a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-menu li.dropdown:hover > a::after {
    transform: translateY(-50%) translateX(3px);
}

/* Second-level and deeper dropdowns (open to the right) */
.dropdown-menu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0;
    margin-top: 0;
    min-width: 240px;
    padding: 10px 0;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    white-space: nowrap;
    list-style: none;
}

/* Third-level dropdown */
.dropdown-menu .dropdown-menu .dropdown-menu {
    z-index: 1002;
}

/* Fourth-level dropdown */
.dropdown-menu .dropdown-menu .dropdown-menu .dropdown-menu {
    z-index: 1003;
}

/* Hover state: Show nested dropdown */
.dropdown-menu li.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Keep nested dropdown visible when hovering over it */
.dropdown-menu li.dropdown .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Highlight parent item when submenu is visible */
.dropdown-menu li.dropdown:hover > a {
    background: var(--primary-color);
    color: var(--white);
}

/* Bridge area to prevent menu closing when moving mouse */
.dropdown-menu li.dropdown::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    width: 10px;
    height: 100%;
    z-index: 1002;
    background: transparent;
    pointer-events: auto;
}

/* Ensure proper stacking context */
.nav-menu {
    position: relative;
    z-index: 1000;
}

/* Prevent overflow issues */
.dropdown-menu {
    overflow: visible;
}

.dropdown-menu .dropdown-menu {
    overflow: visible;
}

/* Ensure consistent width to prevent overlap */
.dropdown-menu,
.dropdown-menu .dropdown-menu,
.dropdown-menu .dropdown-menu .dropdown-menu {
    min-width: 240px;
    width: max-content;
    max-width: 350px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: background 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 71, 42, 0.7);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

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

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
}

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

.btn-primary:hover {
    background: #c9a028;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Quick Booking Section */
.quick-booking {
    background: var(--bg-light);
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.booking-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--text-dark);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.booking-forms {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-form {
    display: none;
}

.booking-form.active {
    display: block;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.review-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-badge {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.review-badge:hover {
    opacity: 1;
}

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

.package-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.bg-light {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.package-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.package-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.package-header h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.rating-stars {
    color: #ffc107;
}

.package-price {
    padding: 20px;
    text-align: center;
    background: var(--bg-light);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-currency {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.price-amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
}

.package-details {
    padding: 20px;
}

.package-details h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.inclusion-items,
.distance-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.inclusion-item,
.distance-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-light);
}

.inclusion-item i,
.distance-item i {
    color: var(--primary-color);
}

.package-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.package-type {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

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

.package-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.trust-features-left,
.trust-features-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-center-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.kaaba-illustration {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: var(--shadow);
}

.kaaba-illustration svg {
    width: 100%;
    height: 100%;
}

.feature-image-small {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    margin-top: 15px;
}

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

.section-subtitle {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    color: var(--text-light);
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-feature {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform 0.3s;
    position: relative;
}

.trust-feature:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.trust-feature h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-feature p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.8;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--accent-color);
}

.subscribe-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.subscribe-form .btn {
    padding: 12px 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 14px;
}

.footer-certifications {
    display: flex;
    gap: 10px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 71, 42, 0.7);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Packages Filter */
.packages-filter {
    background: var(--bg-light);
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--text-dark);
    font-size: 16px;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    max-width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo span {
    font-size: 14px;
    text-align: center;
    display: none;
    font-weight: bold;
    color: var(--primary-color);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}

.city-item {
    background: var(--bg-light);
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s;
}

.city-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Reviews Detailed Section */
.reviews-detailed-section {
    padding: 80px 0;
    background: var(--white);
}

.reviews-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.review-tab-btn {
    padding: 12px 30px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--text-dark);
    font-size: 16px;
}

.review-tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.review-tab-content {
    display: none;
}

.review-tab-content.active {
    display: block;
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-rating {
    color: #ffc107;
    font-size: 20px;
}

.review-author {
    font-weight: bold;
    color: var(--primary-color);
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    /* Mobile: Stack all dropdowns vertically */
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        margin-top: 0 !important;
        padding-left: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        top: auto !important;
        left: auto !important;
        border-left: none !important;
        border-right: none !important;
    }

    .dropdown-menu .dropdown-menu {
        position: static !important;
        margin-left: 0 !important;
        transform: none !important;
        border-left: none !important;
        border-right: none !important;
        padding-left: 30px !important;
        margin-top: 0 !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .dropdown-menu .dropdown-menu .dropdown-menu {
        padding-left: 40px !important;
        position: static !important;
    }

    .dropdown-menu .dropdown-menu .dropdown-menu .dropdown-menu {
        padding-left: 50px !important;
        position: static !important;
    }

    .dropdown-menu li.dropdown::after {
        display: none !important;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .package-actions {
        flex-direction: column;
    }

    .package-actions .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .booking-forms {
        padding: 20px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .review-badges {
        gap: 15px;
    }

    .review-badge {
        max-width: 120px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .partner-logo {
        max-width: 140px;
        height: 60px;
    }

    .trust-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-center-image {
        order: 2;
    }

    .trust-features-left {
        order: 1;
    }

    .trust-features-right {
        order: 3;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-card {
        padding: 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .reviews-tabs {
        flex-direction: column;
    }

    .review-tab-btn {
        width: 100%;
    }
}

