/* ===================================
   TAHA TAXI TOUR - Complete Styles
   =================================== */

/* --- CSS Variables --- */
:root {
    --gold: #d4a574;
    --gold-dark: #b8956a;
    --primary-blue: #0b3d66;
    --accent-orange: #ff8c00;
    --green-whatsapp: #25d366;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --text-light: #999;
    --bg-light: #f9f9f9;
    --bg-cream: #faf8f5;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* --- Preloader --- */
#taha-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ec8816 0%, #f7c10f 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.loader-wrapper {
    text-align: center;
}

.loader-logo {
    font-family: 'Arial Black', sans-serif;
    font-size: 40px;
    color: #ffffff;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.loader-logo span {
    color: #8b6e37;
    text-shadow: 0 0 15px rgba(139, 110, 55, 0.5);
}

.car-container {
    position: relative;
    width: 150px;
    margin: 0 auto;
}

.car-body {
    font-size: 45px;
    display: inline-block;
    animation: carBounce 0.5s infinite;
}

.road {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: -5px;
    position: relative;
    overflow: hidden;
}

.road::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 100%;
    background: #8b6e37;
    animation: roadMove 0.8s infinite linear;
}

.loader-text {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 20px;
    animation: pulseText 1.5s infinite;
}

@keyframes carBounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-5px) rotate(-2deg); }
}

@keyframes roadMove {
    0% { left: -50px; }
    100% { left: 150px; }
}

@keyframes pulseText {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

/* --- Header --- */
.taha-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 15px 5%;
    transition: var(--transition);
    background: transparent;
}

.taha-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 10px 5%;
}

.taha-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2001;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    transition: var(--transition);
}

.taha-header.scrolled .brand-name {
    color: var(--text-dark);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.taha-header.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--gold);
}

.call-btn {
    background: var(--gold);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.call-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    z-index: 2001;
    flex-direction: column;
    gap: 6px;
}

.burger div {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.taha-header.scrolled .burger div {
    background: var(--text-dark);
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1539020140153-e479b8c22e70?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 100px 20px;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-whatsapp {
    background: var(--green-whatsapp);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: #20ba5a;
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 700px;
    width: 100%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

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

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* --- Section Styles --- */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

/* --- Services Section --- */
.services-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--accent-orange));
    transition: var(--transition);
}

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

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

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

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-rating {
    color: #ffa500;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.service-rating span {
    color: var(--text-gray);
    margin-left: 5px;
}

.btn-book {
    background: var(--green-whatsapp);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-book:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-rates {
    background: var(--gold);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-rates:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* --- About Section --- */
.about-section {
    padding: 100px 20px;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-photo {
    position: absolute;
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow-md);
    border-radius: 5px;
}

.about-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.about-photo.photo-top {
    width: 55%;
    right: 0;
    top: 0;
    transform: rotate(5deg);
    z-index: 2;
}

.about-photo.photo-bottom {
    width: 55%;
    left: 0;
    bottom: 50px;
    transform: rotate(-5deg);
    z-index: 1;
}

.about-content {
    padding-left: 30px;
}

.about-subtitle {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 2.2rem;
    margin: 15px 0 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.about-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 50px;
    border-top: 1px solid #eee;
    padding-top: 25px;
    margin-bottom: 30px;
}

.about-stat h3 {
    font-size: 2.5rem;
    color: var(--green-whatsapp);
    margin-bottom: 5px;
}

.about-stat p {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* --- Excursions Section --- */
.excursions-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.excursions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.excursion-card {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

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

.excursion-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

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

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

.excursion-content {
    background: var(--white);
    width: 90%;
    margin: -50px auto 0;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
    text-align: center;
}

.excursion-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.excursion-duration {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.excursion-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b7 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.testimonial-rating {
    color: #ffa500;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.7;
}

/* --- FAQ Section --- */
.faq-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-content {
    padding-right: 20px;
}

.faq-subtitle {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.faq-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.accordion-item {
    background: var(--white);
    border: none !important;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    padding: 20px;
    background: var(--white);
}

.accordion-button:not(.collapsed) {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

.accordion-body ul {
    padding-left: 20px;
    margin-top: 10px;
}

.accordion-body li {
    margin-bottom: 8px;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--green-whatsapp);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-form-card > p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

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

.btn-send {
    width: 100%;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-send:hover {
    background: #e07b00;
    transform: translateY(-2px);
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 20px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Footer --- */
.footer {
    background: #2c2c2c;
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

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

.footer-section ul li i {
    margin-right: 10px;
    color: var(--gold);
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: var(--text-light);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--green-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .burger {
        display: flex;
    }

    .nav-container {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }

    .nav-container.nav-active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 1.2rem;
    }

    .about-grid,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 400px;
        margin-bottom: 30px;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

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

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .btn-whatsapp,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .about-photo.photo-top,
    .about-photo.photo-bottom {
        width: 60%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .about-images {
        height: 300px;
    }

    .about-photo.photo-top,
    .about-photo.photo-bottom {
        width: 70%;
    }
}





/* 1️⃣ منع أي overflow أفقي */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

/* 2️⃣ أي section ولا div كبير ما يخرجش */
section,
header,
footer,
.hero,
.services-section,
.about-section,
.excursions-section,
.testimonials-section,
.faq-section,
.contact-section {
    max-width: 100%;
    overflow-x: hidden;
}

/* 3️⃣ حل مشكل background fixed فالتلفون */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important;
    }
}

/* 4️⃣ Burger menu ما يخرجش العرض */
@media (max-width: 992px) {
    .nav-container {
        width: 100%;
        max-width: 100%;
        right: -100%;
        overflow-x: hidden;
    }
}

/* 5️⃣ Hero stats ما يدفعش الصفحة */
.hero-stats {
    max-width: 100%;
}

/* 6️⃣ About images (سبب رئيسي للزيغزاغ) */
@media (max-width: 768px) {
    .about-images {
        overflow: hidden;
    }

    .about-photo {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        margin-bottom: 15px;
    }
}

/* 7️⃣ Excursion cards margin السالب */
.excursion-content {
    max-width: 90%;
}

/* 8️⃣ أي image ولا iframe ما يخرجش */
img,
iframe {
    max-width: 100%;
    height: auto;
}

/* 9️⃣ WhatsApp button ما يسببش overflow */
.whatsapp-float {
    right: 20px;
    max-width: calc(100% - 40px);
}

/* 🔟 حماية إضافية لأي عنصر شاذ */
* {
    box-sizing: border-box;
}




/* --- إصلاح شامل لقسم الصور في التلفون --- */
@media (max-width: 768px) {
    .about-images {
        height: auto !important; /* كنحيدو الارتفاع الثابت */
        display: flex;
        flex-direction: column; /* الصور يوليو وحدة فوق وحدة */
        gap: 20px;
        margin-bottom: 30px;
        overflow: visible !important;
    }

    .about-photo {
        position: relative !important; /* كنحيدو Absolute باش يرجعو لبلاصتهم الطبيعية */
        width: 100% !important;
        max-width: 350px; /* باش ما يكبروش بزاف فالتلفون */
        margin: 0 auto !important; /* باش يجيو فالوسط */
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important; /* كنحيدو الميلان (rotation) */
        box-shadow: var(--shadow-sm);
    }

    /* إلا بغيتي تخليهم باقين شوية مايلين ولكن بلا ما يخسرو */
    .about-photo.photo-top {
        transform: rotate(2deg) !important;
    }
    .about-photo.photo-bottom {
        transform: rotate(-2deg) !important;
        margin-top: -20px !important; /* تداخل بسيط كيعطي جمالية */
    }
}
/* --- TESTIMONIALS STYLE --- */
.testimonials-section {
    padding: 80px 5%;
    background: #f9f9f9;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}
.review-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--accent-orange);
}
.review-card .stars {
    color: #f1c40f;
    margin-bottom: 10px;
}
.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
}
.review-card h4 {
    color: #0b3d66;
    font-size: 0.9rem;
}

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

.testimonials-section { padding: 80px 5%; background: #f9f9f9; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; max-width: 1200px; margin: 0 auto; }
.reviews-container { display: flex; flex-direction: column; gap: 20px; max-height: 600px; overflow-y: auto; padding-right: 15px; }
.review-card { background: white; padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-left: 5px solid #ff8c00; animation: fadeIn 0.5s ease; }
.review-card .stars { color: #f1c40f; margin-bottom: 10px; }
.review-card p { font-style: italic; color: #555; margin-bottom: 10px; }
.review-card h4 { color: #0b3d66; font-size: 0.9rem; font-weight: bold; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 992px) { .testimonials-grid { grid-template-columns: 1fr; } }





/* --- ZWWAQ DYAL FORMULAIRE D'AVIS --- */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* Had l-khatt l-orange l-fouq */
.contact-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff8c00, #f1c40f);
}

.contact-form-card h3 {
    color: #0b3d66;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.contact-form-card p {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 700;
    color: #0b3d66;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #edf2f7;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #ff8c00;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

/* Bouton m-zwwaq */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #ff8c00 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.4);
    filter: brightness(1.1);
}

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

/* Scrollbar nqiya l-reviews */
.reviews-container::-webkit-scrollbar {
    width: 6px;
}
.reviews-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.reviews-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.reviews-container::-webkit-scrollbar-thumb:hover {
    background: #ff8c00;
}