/* ========================================
   HERO SECTION - MODERN PHARAONIC STYLE
   ======================================== */

.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-blue);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.85) 0%,
        rgba(30, 58, 95, 0.65) 50%,
        rgba(212, 175, 55, 0.45) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--primary-gold);
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out;
}

.hero-badge svg,
.hero-badge i {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--sand-light);
    animation: slideInLeft 1.2s ease-out;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeIn 1.4s ease-out;
}

.hero-cta .btn {
    min-width: 200px;
}

/* Decorative Pharaonic Elements */
.hero-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 60%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cg opacity='0.1' fill='%23D4AF37'%3E%3Cpath d='M200 50L220 100L200 150L180 100Z'/%3E%3Cpath d='M150 200L200 220L150 240L100 220Z'/%3E%3Cpath d='M200 250L220 300L200 350L180 300Z'/%3E%3Cpath d='M250 200L300 220L250 240L200 220Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: 2;
    pointer-events: none;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
    background: var(--white);
    padding: 3rem 0;
    border-top: 3px solid var(--primary-gold);
    border-bottom: 3px solid var(--primary-gold);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    transition: all var(--transition-normal);
}

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

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.trust-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

.trust-desc {
    color: var(--gray);
    margin: 0;
}

/* ========================================
   QUICK BOOKING FORM
   ======================================== */
.quick-booking {
    position: relative;
    margin-top: -80px;
    z-index: 4;
}

.booking-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    border: 3px solid var(--primary-gold);
}

.booking-form-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9375rem;
}

.form-control {
    padding: 0.875rem 1rem;
    border: 2px solid var(--sand-beige);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control::placeholder {
    color: var(--gray);
}

.booking-form .btn-primary {
    grid-column: 1 / -1;
    padding: 1.25rem;
    font-size: 1.125rem;
}

/* ========================================
   FEATURED TOURS SECTION
   ======================================== */
.featured-tours {
    background: var(--sand-light);
    position: relative;
}

.featured-tours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

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

.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-gold);
}

.tour-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-gold);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.tour-rating {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
}

.tour-rating .stars {
    color: var(--primary-gold);
}

.tour-card-body {
    padding: 1.5rem;
}

.tour-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-blue);
}

.tour-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.tour-title a:hover {
    color: var(--primary-gold);
}

.tour-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: var(--gray);
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.tour-meta-item svg,
.tour-meta-item i {
    color: var(--primary-gold);
}

.tour-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--sand-beige);
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.tour-price-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.tour-price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.tour-price-amount span {
    font-size: 1rem;
    color: var(--gray);
}

/* ========================================
   GRAND EGYPTIAN MUSEUM SECTION
   ======================================== */
.gem-section {
    background: var(--primary-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.gem-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
}

.gem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gem-text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.gem-text .highlight {
    color: var(--primary-gold);
}

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

.gem-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-gold);
}

.gem-features li svg,
.gem-features li i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gem-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.gem-image img {
    width: 100%;
    height: auto;
    display: block;
}

.gem-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--gradient-gold);
    color: var(--primary-blue);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   DESTINATIONS GRID
   ======================================== */
.destinations-section {
    background: var(--white);
}

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

.destination-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.destination-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.destination-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-card:hover .destination-image {
    transform: scale(1.2);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(30, 58, 95, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
}

.destination-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.destination-count {
    font-size: 1rem;
    color: var(--sand-light);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .gem-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 450px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .quick-booking {
        margin-top: 2rem;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        min-width: 100%;
    }
}
