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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --accent-color: #06b6d4;
    --accent-dark: #0891b2;
    --dark-color: #0f172a;
    --dark-secondary: #1e293b;
    --light-color: #f8fafc;
    --light-secondary: #f1f5f9;
    --text-color: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
}

.nav-brand h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
    padding: 0;
}

.dropdown-icon {
    font-size: 0.75rem;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 12px 0;
    min-width: 220px;
    display: none;
    z-index: 1002;
}

.dropdown.open .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--light-secondary);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(245, 158, 11, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.yahya-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
    filter: brightness(1.05) contrast(1.05);
}

.yahya-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1) contrast(1.1);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.feature-item {
    text-align: center;
    padding: 30px 25px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Services Section */
.services {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: var(--transition);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Tours Section */
.tours {
    background: var(--white);
}

.tour-groups {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.tour-group {
    padding: 40px 0;
    border-top: 2px solid rgba(15, 23, 42, 0.1);
}

.tour-group:first-of-type {
    padding-top: 0;
    border-top: none;
}

.tour-group-header {
    margin-bottom: 35px;
    text-align: center;
}

.tour-group-title {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    padding-left: 0;
    text-align: center;
}

.tour-group-title::before {
    display: none;
}

.tour-group-subtitle {
    color: var(--text-light);
    max-width: 800px;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0 auto;
    text-align: center;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tour-card {
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tour-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
}

.tour-image-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.tour-image .image-placeholder {
    display: none;
}

.tour-card {
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tour-title {
    font-size: 1.1rem;
    margin: 0;
    padding: 20px 20px 15px;
    color: #333;
    line-height: 1.5;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', serif;
    text-align: center;
    background: #f5f5f5;
    order: -1;
}

.tour-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    text-align: center;
}

.tour-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.tour-description-short {
    display: none;
}

.tour-more-info {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out, margin 0.3s ease-out, padding 0.3s ease-out;
    opacity: 0;
    margin-top: 0;
    padding: 0;
    background: #f5f5f5;
}

.tour-more-info.expanded {
    max-height: 2000px;
    opacity: 1;
    margin-top: 20px;
    padding: 20px;
    transition: max-height 0.5s ease-in, opacity 0.4s ease-in 0.1s, margin 0.3s ease-in, padding 0.3s ease-in;
}

.tour-more-info p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: left;
    padding-left: 0;
}

.tour-more-info p::before {
    display: none;
}

.tour-more-info p:last-of-type {
    margin-bottom: 20px;
}

.tour-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left;
}

.tour-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
    border: none;
    background: transparent;
    box-shadow: none;
}

.tour-features li:hover {
    background: transparent;
    transform: none;
    border: none;
    box-shadow: none;
}

.tour-details {
    background: #e8e8e8;
    padding: 18px;
    border-radius: 6px;
    margin-top: 20px;
    border-left: 3px solid #999;
    box-shadow: none;
    position: relative;
    overflow: visible;
    text-align: left;
}

.tour-details::before {
    display: none;
}

.tour-details p {
    margin-bottom: 10px;
    color: #555;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    display: block;
    padding-left: 0;
}

.tour-details p::before {
    display: none;
}

.tour-details p:last-child {
    margin-bottom: 0;
}

.tour-details strong {
    color: #333;
    font-weight: 600;
    min-width: auto;
    display: inline;
}

.tour-read-more-btn {
    background: #ffffff;
    color: #333;
    border: 1px solid #d0d0d0;
    padding: 10px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px auto 0;
    position: relative;
    width: auto;
    text-align: center;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: none;
}

.tour-read-more-btn:hover {
    border-color: #999;
    background: #fafafa;
}

.tour-read-more-btn:active {
    background: #f0f0f0;
}

.tour-read-more-btn.expanded {
    background: #ffffff;
    border-color: #d0d0d0;
}

.tour-read-more-btn.expanded:hover {
    border-color: #999;
    background: #fafafa;
}

/* Contact Section */
.contact {
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--text-light);
}

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

.social-link {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-form:hover {
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
}

.form-group textarea {
    resize: vertical;
}

/* Transfer Section */
.transfer {
    background: var(--light-color);
    padding: 100px 0;
}

.transfer-content {
    max-width: 900px;
    margin: 0 auto;
}

.transfer-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.transfer-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.transfer-service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.transfer-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.transfer-service-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.transfer-service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.transfer-booking {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.transfer-booking h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.transfer-booking > p {
    color: var(--text-light);
    margin-bottom: 35px;
    font-size: 1rem;
}

.transfer-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.transfer-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--light-secondary);
    padding: 25px;
    border-radius: 12px;
    text-align: left;
}

.transfer-contact-item .contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.transfer-contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
    font-weight: 600;
}

.transfer-contact-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.transfer-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    color: var(--white);
    padding: 60px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

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

.footer-social a {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
}

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

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    aspect-ratio: 1;
    transition: var(--transition);
    border: 2px solid transparent;
}

.gallery-item:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: scale(1.02);
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.1) contrast(1.05);
}

.gallery-image .image-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(6, 182, 212, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-image .image-placeholder {
    transform: scale(1.1);
}

.gallery-icon {
    font-size: 2rem;
    color: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.filter-btn.active::before,
.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--white);
    margin-top: 20px;
    font-size: 1.2rem;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.2);
}

/* Reviews Section */
.reviews {
    background: var(--light-color);
}

.reviews-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

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

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-height: 800px;
    overflow-y: auto;
    padding-right: 15px;
}

.reviews-list::-webkit-scrollbar {
    width: 8px;
}

.reviews-list::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.reviews-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.reviews-toggle {
    display: none;
    text-align: center;
    margin-top: 25px;
}

.reviews-toggle-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.reviews-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

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

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.5s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: var(--transition);
}

.review-card:hover::before {
    transform: scaleY(1);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, 0.2);
}

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

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

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-author h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating .star {
    font-size: 1rem;
    color: #ffd700;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.review-form-container {
    background: var(--white);
    padding: 35px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.review-form-container:hover {
    box-shadow: var(--shadow-lg);
}

.review-form-container h3 {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked + .star-label,
.rating-input:hover .star-label {
    color: #ffd700;
}

.rating-input .star-label:hover,
.rating-input .star-label:hover ~ .star-label {
    color: #ffd700;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

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

    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .tour-group-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0;
    }

    .dropdown-link {
        padding: 10px 0;
    }

    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        min-height: 500px;
        padding: 0 20px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

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

    .service-card {
        padding: 35px 25px;
    }

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

    .tour-groups {
        gap: 40px;
    }

    .tour-group {
        padding: 20px 0;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

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

    .reviews-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .review-form-container {
        position: static;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 15px;
    }

    .lightbox-close {
        top: 20px;
        right: 30px;
        font-size: 2.5rem;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-brand h2 {
        font-size: 1.4rem;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

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

    .service-card {
        padding: 30px 20px;
    }

    .service-icon {
        font-size: 3rem;
    }

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

    .tour-content {
        padding: 18px;
    }

    .tour-content h3 {
        font-size: 1.1rem;
        min-height: auto;
    }

    .tour-image {
        height: 150px;
    }

    .tour-description-short {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    .tour-read-more-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .tour-more-info.expanded {
        padding: 20px;
        margin-top: 20px;
    }

    .tour-features li {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .tour-details {
        padding: 18px;
    }

    .tour-group-title {
        font-size: 1.4rem;
    }

    .tour-group-subtitle {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .transfer {
        padding: 60px 0;
    }

    .transfer-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .transfer-services {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .transfer-service-card {
        padding: 30px 20px;
    }

    .transfer-booking {
        padding: 35px 25px;
    }

    .transfer-booking h3 {
        font-size: 1.5rem;
    }

    .transfer-contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-filters {
        gap: 10px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .review-card {
        padding: 25px 20px;
    }

    .review-form-container {
        padding: 30px 20px;
    }

    .footer-content {
        gap: 25px;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 450px;
        padding: 0 15px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

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

    .about-image {
        padding: 15px;
        margin-bottom: 20px;
    }

    .yahya-photo {
        height: 400px;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tour-image {
        height: 200px;
    }

    .tour-content h3 {
        font-size: 1.15rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
        font-size: 1.5rem;
        padding: 10px;
    }

    .lightbox-next {
        right: 10px;
        font-size: 1.5rem;
        padding: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }

    .btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    section {
        padding: 50px 0;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 15px;
    }

    .nav-brand h2 {
        font-size: 1.2rem;
    }

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

    .service-card,
    .tour-content,
    .contact-form,
    .review-card,
    .review-form-container {
        padding: 20px 15px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

