/* ========================================
   Modern Redesign - General Styles & Reset
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette - Islamic Green & Gold */
    --primary-color: #0a7e6e;
    --primary-light: #0d9b87;
    --primary-dark: #065a4f;
    --secondary-color: #d4af37;
    --secondary-light: #e6c966;
    --secondary-dark: #b8962e;
    --accent-color: #8b4513;

    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-cream: #faf8f5;
    --bg-dark: #2d3748;

    /* Border & Dividers */
    --border-color: #e2e8f0;
    --border-light: #f0f4f8;

    /* Status Colors */
    --success-color: #0a7e6e;
    --warning-color: #d4af37;
    --danger-color: #dc3545;
    --info-color: #3498db;

    /* Shadows - Modern & Soft */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-colored: 0 8px 24px rgba(10, 126, 110, 0.15);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    direction: rtl;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

ul {
    list-style: none;
}

/* ========================================
   Modern Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.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(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 126, 110, 0.25);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-colored);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--text-dark);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

.btn-hotels {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-white);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-hotels:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-buses {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-buses:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.5);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1faa52;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   Modern Header Design
======================================== */
.header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header with background when scrolled */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

/* Logo text color changes */
.header .logo-text h1 {
    color: var(--text-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-base);
    font-size: 22px;
    font-weight: 700;
}

.header.scrolled .logo-text h1 {
    color: var(--primary-color);
    text-shadow: none;
}

/* Header site name styling */
.header .site-name {
    color: var(--text-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-base);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.header.scrolled .site-name {
    color: var(--text-dark);
    text-shadow: none;
}

.header .logo-text p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-base);
    font-size: 13px;
}

.header.scrolled .logo-text p {
    color: var(--text-light);
    text-shadow: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

/* Centered Logo Design */
.logo-centered {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
}

.site-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    text-shadow: 2px 2px 8px rgba(247, 247, 247, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform var(--transition-base);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.header.scrolled .logo img {
    width: 35px;
    height: 35px;
    filter: none;
}

/* Header site icon sizing */
.logo-centered .site-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all var(--transition-base);
}

.header.scrolled .logo-centered .site-icon {
    width: 35px;
    height: 35px;
}

.logo img:hover {
    transform: scale(1.08) rotate(5deg);
}

.logo-text h1 {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 13px;
    color: var(--text-light);
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-list a {
    color: var(--text-white);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 8px 4px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-base);
}

.header.scrolled .nav-list a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.header.scrolled .nav-list a::after {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--secondary-color);
}

.header.scrolled .nav-list a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mobile-menu-btn {
    display: none;
        background: rgb(7 97 85);

    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 22px;
    color: var(--text-white);
    cursor: pointer;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-base);
}

.header-scrolled .mobile-menu-btn {
    color: var(--text-dark);
    text-shadow: none;
}

.btn-header-booking {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-header-booking i {
    font-size: 16px;
}


/* ========================================
   Modern Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a7e6e 0%, #065a4f 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(10, 126, 110, 0.92) 0%,
        rgba(6, 90, 79, 0.88) 50%,
        rgba(10, 126, 110, 0.90) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: var(--spacing-2xl) 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-white);
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: var(--text-white);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
}

/* Hero Main Info */
.hero-main-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 20;
    padding: 20px;
}

.hero-main-info .info-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-main-info .info-logo {
    margin-bottom: 30px;
}

.hero-main-info .info-logo img {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.hero-main-info .info-logo h2 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-main-info .info-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-main-info .info-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-main-info .info-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-main-info .highlight-text {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-main-info .highlight-divider {
    color: var(--text-light);
    font-size: 24px;
}

.hero-main-info .info-features {
    margin-bottom: 30px;
}

.hero-main-info .info-features p {
    font-size: 18px;
    color: var(--text-light);
}

.hero-main-info .info-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-main-info .info-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-main-info .badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-dark);
}

.hero-main-info .badge-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.hero-main-info .special-offer {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: white;
    padding: 25px;
    border-radius: var(--border-radius);
}

.hero-main-info .special-offer h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-main-info .special-offer p {
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-main-info .offer-note {
    font-size: 14px;
    opacity: 0.9;
}

/* ========================================
   Main Info Section (Removed - now inside hero)
======================================== */
.main-info {
    display: none;
}

/* ========================================
   Modern Section Headers
======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    box-shadow: var(--shadow-colored);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.section-description {
    font-size: 18px;
    color: var(--text-medium);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   Modern Packages Section
======================================== */
.packages {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 100%);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(10, 126, 110, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.package-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid transparent;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.package-card:hover::before {
    opacity: 1;
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-colored);
}

.package-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.package-card.vip {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.package-card.vip::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
}

.package-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: linear-gradient(135deg, var(--text-dark) 0%, #4a4a4a 100%);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-badge.popular {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-lg);
    }
}

.package-badge.special {
    background: linear-gradient(135deg, var(--success-color) 0%, #0a9b87 100%);
}

.package-badge.vip-badge {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.package-image {
    position: relative;
    height: 240px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    overflow: hidden;
}

.package-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-duration {
    position: absolute;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    background: rgba(10, 126, 110, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    z-index: 5;
    box-shadow: var(--shadow-md);
}

.package-content {
    padding: var(--spacing-lg);
}

.package-title {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    line-height: 1.3;
}

.package-description {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.package-features h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.package-features h4::before {
    content: '✨';
    font-size: 18px;
}

.package-features ul {
    margin-bottom: var(--spacing-md);
    background: var(--bg-light);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
    padding: 8px 0;
}

.package-features li:last-child {
    margin-bottom: 0;
}

.package-features li i {
    color: var(--primary-color);
    font-size: 18px;
    min-width: 20px;
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   Modern Hotels Section
======================================== */
.hotels {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
    position: relative;
}

.hotels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(10, 126, 110, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.hotel-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid var(--border-light);
    position: relative;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.hotel-card:hover::before {
    opacity: 1;
}

.hotel-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.hotel-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
    z-index: 2;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.12) rotate(1deg);
}

.hotel-stars {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--text-white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.hotel-city-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.hotel-content {
    padding: var(--spacing-lg);
}

.hotel-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.hotel-location,
.hotel-distance {
    color: var(--text-medium);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.hotel-location i,
.hotel-distance i {
    color: var(--primary-color);
    font-size: 18px;
    min-width: 20px;
}

.hotel-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin: var(--spacing-sm) 0;
    font-size: 15px;
    background: var(--bg-light);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    border-right: 3px solid var(--primary-color);
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--border-light);
}

.hotel-details-btn {
    flex: 1;
}

/* Hotel Modal Styles */
.hotel-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hotel-modal-content {
    background-color: white;
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hotel-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 35px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hotel-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

.hotel-modal-body {
    display: flex;
    flex-direction: column;
}

.hotel-modal-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.hotel-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-modal-stars {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 193, 7, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hotel-modal-city {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hotel-modal-info {
    padding: 30px;
}

.hotel-modal-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hotel-modal-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.modal-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.modal-detail-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: 25px;
}

.modal-detail-item strong {
    color: var(--text-dark);
}

.hotel-modal-description {
    margin-bottom: 30px;
}

.hotel-modal-description h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hotel-modal-description p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.hotel-modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hotel-modal-actions .btn {
    flex: 1;
    min-width: 200px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .hotel-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .hotel-modal-image {
        height: 250px;
    }

    .hotel-modal-info {
        padding: 20px;
    }

    .hotel-modal-info h2 {
        font-size: 22px;
    }

    .hotel-modal-actions {
        flex-direction: column;
    }

    .hotel-modal-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

/* ========================================
   Booking Modal
======================================== */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.booking-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.booking-modal-close:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: rotate(90deg);
}

.booking-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.booking-modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booking-modal-icon i {
    font-size: 36px;
    color: white;
}

.booking-modal-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-modal-header p {
    font-size: 16px;
    opacity: 0.9;
}

.booking-modal-body {
    padding: 30px;
}

.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-option {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.booking-option.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.booking-option.whatsapp:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.booking-option.phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.booking-option.phone:hover {
    transform: translateX(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.booking-option.email {
    background: #f8f9fa;
    color: var(--text-dark);
    border: 2px solid #e9ecef;
}

.booking-option.email:hover {
    background: #e9ecef;
    transform: translateX(-5px);
    border-color: var(--primary-color);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.booking-option.email .option-icon {
    background: rgba(0, 0, 0, 0.05);
}

.option-icon i {
    font-size: 22px;
}

.option-info {
    flex: 1;
}

.option-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.option-info p {
    font-size: 14px;
    opacity: 0.85;
}

.option-arrow {
    font-size: 18px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.booking-option:hover .option-arrow {
    transform: translateX(-5px);
}

.booking-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.booking-note i {
    color: var(--primary-color);
}

/* Responsive Booking Modal */
@media (max-width: 576px) {
    .booking-modal-content {
        width: 95%;
        margin: 10px;
    }

    .booking-modal-header {
        padding: 30px 20px;
    }

    .booking-modal-icon {
        width: 60px;
        height: 60px;
    }

    .booking-modal-icon i {
        font-size: 28px;
    }

    .booking-modal-header h2 {
        font-size: 22px;
    }

    .booking-modal-body {
        padding: 20px;
    }

    .booking-option {
        padding: 15px;
    }

    .option-icon {
        width: 45px;
        height: 45px;
    }

    .option-info h3 {
        font-size: 16px;
    }

    .option-info p {
        font-size: 13px;
    }
}

/* ========================================
   Package Modal
======================================== */
.package-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.package-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    position: relative;
    overflow-y: auto;
}

.package-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.package-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: rotate(90deg);
}

.package-modal-body {
    display: flex;
    flex-direction: column;
}

.package-modal-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.package-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-modal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.package-modal-badge.economy {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.package-modal-badge.comfort {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.package-modal-badge.vip {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #333;
}

.package-modal-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.package-modal-info {
    padding: 30px;
}

.package-modal-info h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.package-modal-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.package-modal-features {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.package-modal-features h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-modal-features h3 i {
    color: var(--primary-color);
}

.package-modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.package-modal-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.package-modal-features li i {
    color: #28a745;
    font-size: 16px;
}

.package-modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.package-modal-actions .btn {
    flex: 1;
    min-width: 180px;
}

/* Responsive Package Modal */
@media (max-width: 768px) {
    .package-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .package-modal-image {
        height: 200px;
    }

    .package-modal-info {
        padding: 20px;
    }

    .package-modal-info h2 {
        font-size: 22px;
    }

    .package-modal-features {
        padding: 20px;
    }

    .package-modal-actions {
        flex-direction: column;
    }

    .package-modal-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

/* ========================================
   Modern Buses Section
======================================== */
.buses {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    position: relative;
}

.buses::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 126, 110, 0.03) 100%);
    pointer-events: none;
}

.buses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.bus-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid var(--border-light);
}

.bus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.bus-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.bus-card:hover::after {
    opacity: 1;
}

.bus-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-colored);
}

.bus-card.featured::after {
    opacity: 1;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
}

.bus-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bus-image {
    height: 280px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    position: relative;
    overflow: hidden;
}

.bus-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

.bus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bus-card:hover .bus-image img {
    transform: scale(1.1);
}

.bus-content {
    padding: var(--spacing-lg);
}

.bus-title {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    line-height: 1.3;
}

.bus-description {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.bus-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    background: var(--bg-light);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
}

.bus-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.bus-feature:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-sm);
}

.bus-feature i {
    color: var(--primary-color);
    font-size: 20px;
    width: 25px;
}

.bus-price {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
}

.bus-price p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

/* ========================================
   Modern Why Us Section
======================================== */
.why-us {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 50%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(10, 126, 110, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-features {
    position: relative;
    z-index: 1;
}

.why-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.why-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-colored);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 126, 110, 0.3);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.why-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto var(--spacing-md);
    box-shadow: var(--shadow-colored);
    transition: all var(--transition-base);
    position: relative;
}

.why-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    opacity: 0;
    transition: all var(--transition-base);
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(10deg);
}

.why-card:hover .why-icon::after {
    opacity: 1;
    inset: -10px;
}

.why-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    line-height: 1.3;
}

.why-card p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.7;
}

.what-we-offer {
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: var(--border-radius);
}

.what-we-offer h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.offer-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.offer-item i {
    color: var(--success-color);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========================================
   Modern Pricing Section
======================================== */
.pricing {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-white) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.price-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid var(--border-light);
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-colored);
    background: linear-gradient(180deg, rgba(10, 126, 110, 0.02) 0%, var(--bg-white) 100%);
}

.price-card.featured::before {
    transform: scaleX(1);
}

.price-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-icon {
    font-size: 56px;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.price-card h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    line-height: 1.3;
}

.price-duration {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.price-card p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.special-groups {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
}

.special-groups p {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 700;
}

/* ========================================
   Guide Section
======================================== */
.guide {
    padding: 80px 0;
    background: white;
}

.guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.guide-label {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.guide-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.guide-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.guide-text h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 25px 0 15px;
    font-weight: 700;
}

.guide-text h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 20px 0 12px;
    font-weight: 600;
}

.guide-text p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.guide-text ul {
    margin: 15px 0 25px 30px;
}

.guide-text ul li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    list-style: disc;
}

.guide-actions {
    margin: 30px 0;
}

.guide-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-light);
}

.stat-item i {
    color: var(--primary-color);
}

.guide-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box,
.cta-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.info-box h4,
.cta-box h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.info-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.cta-box p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   FAQ Section
======================================== */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   Help Section
======================================== */
.help-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.help-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.help-content {
    color: white;
}

.help-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.help-icon i {
    font-size: 36px;
    color: white;
}

.help-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.help-content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.help-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.help-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.help-feature i {
    font-size: 18px;
}

.help-feature span {
    font-size: 14px;
    font-weight: 600;
}

.help-form-container {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.help-form .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.help-form .form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.help-form .form-header h3 i {
    font-size: 28px;
}

.help-form .form-group {
    margin-bottom: 20px;
}

.help-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.help-form label i {
    color: var(--primary-color);
    font-size: 16px;
}

.help-form input,
.help-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.help-form input:focus,
.help-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.help-form input::placeholder,
.help-form textarea::placeholder {
    color: #adb5bd;
}

.help-form textarea {
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-submit i {
    font-size: 22px;
}

/* Responsive Help Section */
@media (max-width: 992px) {
    .help-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .help-content {
        text-align: center;
    }

    .help-icon {
        margin: 0 auto 25px;
    }

    .help-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .help-section {
        padding: 60px 0;
    }

    .help-content h2 {
        font-size: 28px;
    }

    .help-content p {
        font-size: 16px;
    }

    .help-form-container {
        padding: 30px 20px;
    }

    .help-features {
        flex-direction: column;
        align-items: center;
    }

    .help-feature {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Modern Footer
======================================== */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, var(--text-dark) 100%);
    color: var(--text-white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(10, 126, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: var(--shadow-md);
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-white), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    color: var(--secondary-light);
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    font-size: 15px;
    opacity: 0.85;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a::before {
    content: '◀';
    font-size: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-light);
    transform: translateX(-5px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 992px) {
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        right: 0;
        width: 100%;
               background: #217367;

        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .btn-header-booking {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .guide-content {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .info-card {
        padding: 30px 20px;
    }

    .info-title {
        font-size: 28px;
    }

    .info-subtitle {
        font-size: 18px;
    }

    .packages-grid,
    .hotels-grid,
    .buses-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .info-actions {
        flex-direction: column;
    }

    .info-badges {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 400px;
    }

    .hero-slide {
        height: 400px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .info-highlights {
        flex-direction: column;
        gap: 10px;
    }

    .highlight-divider {
        display: none;
    }
}

   / *   A d d i t i o n a l   R e s p o n s i v e   S t y l e s   f o r   H e r o   M a i n   I n f o   * /     

/* ========================================
   Hero Section - Static Background
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(155 111 36 / 85%), rgb(3 8 8 / 80%));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 40px 20px;
}

/* Modern Hero Info Design */
.hero-info {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-white);
}

.hero-info .info-logo {
    margin-bottom: var(--spacing-lg);
    display: flex;
    justify-content: center;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Icon Wrapper */
.hero-info .info-logo .site-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-info .info-logo .site-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--text-white) 0%, #f8f9fa 100%);
    padding: var(--spacing-sm);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.25),
        0 0 0 4px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.hero-info .info-logo .site-icon:hover {
    transform: scale(1.05) rotate(5deg);
}

.hero-info .info-logo .site-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.hero-info .info-logo .site-name {
    font-size: 36px;
    color: var(--text-white);
    font-weight: 800;
    text-shadow:
        2px 2px 12px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3);
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* للحالة القديمة بدون wrapper */
.hero-info .info-logo img {
    width: 110px;
    height: 110px;
    margin: 0 auto var(--spacing-sm);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
    background: linear-gradient(135deg, var(--text-white) 0%, #f8f9fa 100%);
    border-radius: 50%;
    padding: var(--spacing-sm);
}

.hero-info .info-logo h2 {
    font-size: 36px;
    color: var(--text-white);
    font-weight: 800;
    text-shadow:
        2px 2px 12px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-info .info-title {
    font-size: 42px;
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
    text-shadow:
        3px 3px 12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.4);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-info .info-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    font-weight: 500;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-info .info-highlights {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-info .highlight-text {
    font-size: 18px;
    color: white;
    font-weight: 500;
}

.hero-info .highlight-divider {
    color: white;
    font-size: 24px;
    opacity: 0.7;
}

.hero-info .info-features {
    margin-bottom: 35px;
}

.hero-info .info-features p {
    font-size: 18px;
    color: white;
    opacity: 0.95;
}

.hero-info .info-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-info .action-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.btn-phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-phone:hover {
    background: linear-gradient(135deg, var(--primary-dark), #0f766e);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    max-width: 300px;
}

/* Header Logo Horizontal Layout */
.site-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Modern Hero Typewriter Animation */
.typewriter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--spacing-lg);
    min-height: 130px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.typewriter-line {
    overflow: hidden;
    border-left: none;
    border-right: 3px solid var(--secondary-color);
    white-space: nowrap;
    margin: 0 auto;
    font-size: 22px;
    color: var(--text-white);
    font-weight: 600;
    width: 0;
    opacity: 0;
    animation: typing 3s steps(40, end), blink-caret .75s step-end infinite;
    animation-fill-mode: forwards;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.typewriter-line:nth-child(1) {
    animation-delay: 0s;
    font-size: 24px;
    font-weight: 700;
}

.typewriter-line:nth-child(2) {
    animation-delay: 3s;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.typewriter-line:nth-child(3) {
    animation-delay: 6s;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    border-right: 3px solid var(--secondary-light);
}

@keyframes typing {
    from {
        width: 0;
        opacity: 1;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--secondary-color);
    }
}

.hero-info .info-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-info .badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-info .badge-item i {
    color: var(--secondary-color);
    font-size: 16px;
}

/* ========================================
   Modern Special Offer Banner (Outside Hero)
======================================== */
.special-offer-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 50%, var(--primary-color) 100%);
    padding: var(--spacing-lg) 0;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.special-offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.special-offer-banner .offer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.special-offer-banner .offer-icon {
    font-size: 48px;
    color: var(--text-white);
    animation: bounceIcon 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes bounceIcon {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.special-offer-banner .offer-text h4 {
    font-size: 28px;
    color: var(--text-white);
    font-weight: 800;
    margin-bottom: 6px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.special-offer-banner .offer-text p {
    font-size: 17px;
    color: var(--text-white);
    margin: 0;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.special-offer-banner .offer-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-info .info-logo .site-icon-wrapper {
        padding: 20px 30px;
    }

    .hero-info .info-logo .site-icon {
        width: 70px;
        height: 70px;
        padding: 10px;
    }

    .hero-info .info-logo .site-name {
        font-size: 24px;
    }

    .hero-info .info-logo img {
        width: 70px;
        height: 70px;
        padding: 10px;
    }

    .hero-info .info-logo h2 {
        font-size: 24px;
    }

    .hero-info .info-title {
        font-size: 24px;
    }

    .hero-info .info-subtitle {
        font-size: 16px;
    }

    .hero-info .highlight-text {
        font-size: 15px;
    }

    .hero-info .info-features p {
        font-size: 15px;
    }

    .hero-info .info-actions {
        gap: 10px;
    }

    .hero-info .action-row {
        flex-direction: row;
        gap: 10px;
    }

    .hero-info .action-row .btn {
        flex: 1;
        min-width: 140px;
    }

    .hero-info .info-badges {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero-info .badge-item {
        font-size: 13px;
        padding: 6px 12px;
        flex: 1 1 auto;
        min-width: 120px;
        justify-content: center;
    }

    .hero-info .special-offer h4 {
        font-size: 20px;
    }

    .hero-info .special-offer p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 20px 10px;
    }

    .hero-info .info-logo .site-icon-wrapper {
        padding: 15px 25px;
        gap: 10px;
    }

    .hero-info .info-logo .site-icon {
        width: 60px;
        height: 60px;
        padding: 8px;
    }

    .hero-info .info-logo .site-name {
        font-size: 20px;
    }

    .hero-info .info-logo img {
        width: 60px;
        height: 60px;
        padding: 8px;
    }

    .hero-info .info-logo h2 {
        font-size: 20px;
    }

    .hero-info .info-title {
        font-size: 20px;
    }

    .hero-info .info-subtitle {
        font-size: 14px;
    }

    .hero-info .info-highlights {
        flex-direction: column;
        gap: 10px;
    }

    .hero-info .highlight-divider {
        display: none;
    }

    .hero-info .highlight-text {
        font-size: 13px;
    }

    .hero-info .info-features p {
        font-size: 13px;
    }

    .hero-info .info-actions .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-info .info-badges {
        gap: 8px;
    }

    .hero-info .badge-item {
        font-size: 11px;
        padding: 5px 10px;
        min-width: 100px;
    }

    .hero-info .badge-item i {
        font-size: 14px;
    }

    .hero-info .special-offer {
        padding: 20px 15px;
    }

    .hero-info .special-offer h4 {
        font-size: 18px;
    }

    .hero-info .special-offer p {
        font-size: 14px;
    }

    .special-offer-banner {
        padding: 20px 0;
    }

    .special-offer-banner .offer-icon {
        font-size: 32px;
    }

    .special-offer-banner .offer-text h4 {
        font-size: 20px;
    }

    .special-offer-banner .offer-text p {
        font-size: 14px;
    }
}

/* Remove old styles */
.hero-main-info,
.main-info {
    display: none;
}

/* ========================================
   Modern Floating Contact Buttons
======================================== */
.floating-contacts {
    position: fixed;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.floating-btn {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-white);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.25),
        0 0 0 0 rgba(255, 255, 255, 0.4);
    transition: all var(--transition-base);
    cursor: pointer;
    overflow: visible;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulseRing 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    opacity: 0.6;
    z-index: -1;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.floating-btn:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.35),
        0 0 0 8px rgba(255, 255, 255, 0.2);
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-btn i {
    position: relative;
    z-index: 2;
    animation: shake 3s infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128C7E 100%);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.phone-btn {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.btn-tooltip {
    position: absolute;
    left: 75px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 600;
}

.btn-tooltip::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.85);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px) rotate(-5deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px) rotate(5deg);
    }
}

/* Logo rotation animation */
@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Text shine animation for hero title */
@keyframes textShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Text glow animation */
@keyframes textGlow {

    0%,
    100% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 255, 255, 0.3);
    }

    50% {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(255, 255, 255, 0.6),
            0 0 40px rgba(20, 184, 166, 0.4);
    }
}

/* Title slide animation for hero title */
@keyframes titleSlide {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }
}

/* Bounce icon animation for special offer */
@keyframes bounceIcon {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-contacts {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .btn-tooltip {
        display: none;
    }
}

@media (max-width: 576px) {
    .floating-contacts {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ========================================
   Booking Form Modal Styles
======================================== */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.booking-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: slideUp 0.3s ease;
    margin: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 32px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
}

.booking-modal-close:hover {
    color: var(--danger-color);
    background: #fee;
    transform: rotate(90deg);
}

.booking-modal-header {
    text-align: center;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 20px 20px 0 0;
}

.booking-modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.booking-modal-icon i {
    font-size: 36px;
    color: white;
}

.booking-modal-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.booking-modal-header p {
    font-size: 16px;
    opacity: 0.95;
}

.booking-modal-body {
    padding: 30px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 18px;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-submit {
    background: linear-gradient(135deg, #25d366, #1faa52);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Cairo', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-submit i {
    font-size: 22px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .booking-modal {
        padding: 10px;
    }

    .booking-modal-content {
        max-width: 100%;
    }

    .booking-modal-header {
        padding: 30px 20px 20px;
    }

    .booking-modal-header h2 {
        font-size: 24px;
    }

    .booking-modal-header p {
        font-size: 14px;
    }

    .booking-modal-body {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 14px 20px;
    }
}

@media (max-width: 576px) {
    .booking-modal-icon {
        width: 60px;
        height: 60px;
    }

    .booking-modal-icon i {
        font-size: 30px;
    }

    .booking-modal-header h2 {
        font-size: 22px;
    }

    .booking-modal-body {
        padding: 15px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 14px;
    }
}

/* ========================================
   Contact Options Styles
======================================== */
.booking-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    cursor: pointer;
}

.booking-option:hover {
    border-color: var(--primary-color);
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.booking-option.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.05);
}

.booking-option.phone:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.booking-option.email:hover {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.booking-option.whatsapp .option-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.booking-option.phone .option-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.booking-option.email .option-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.option-info {
    flex: 1;
}

.option-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.option-info p {
    font-size: 14px;
    color: var(--text-light);
}

.option-arrow {
    font-size: 20px;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.booking-option:hover .option-arrow {
    transform: translateX(-5px);
}

.booking-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-top: 10px;
}

.booking-note i {
    color: var(--primary-color);
    font-size: 18px;
}

.booking-note span {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   Modern Hero Section
======================================== */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a7e6e 0%, #065a4f 100%);
}

.hero-modern-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(10, 126, 110, 0.92) 0%,
        rgba(6, 90, 79, 0.88) 50%,
        rgba(10, 126, 110, 0.90) 100%);
    z-index: 2;
}

.hero-modern-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-modern-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 40px 20px;
}

.hero-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Column - Text Content */
.hero-modern-text {
    color: white;
    padding: 20px;
}

.hero-modern-logo {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.hero-modern-logo .site-branding {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-modern-logo .site-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px; /* Non-circular shape as per user preference */
    background: linear-gradient(135deg, var(--text-white) 0%, #f8f9fa 100%);
    padding: 12px;
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.25),
        0 0 0 4px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-modern-logo .site-icon:hover {
    transform: scale(1.05) rotate(5deg);
}

.hero-modern-logo .site-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}

.hero-modern-logo .site-name {
    font-size: 32px;
    color: var(--text-white);
    font-weight: 800;
    text-shadow:
        2px 2px 12px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3);
    background: linear-gradient(90deg, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.dynamic-site-name {
    display: inline-block;
}

.hero-modern-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards;
}

.hero-modern-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-weight: 500;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease 0.2s forwards;
}

.hero-modern-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.4s forwards;
}

.hero-modern-description p {
    margin: 0;
}

.hero-modern-features {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 1.2rem;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-size: 1rem;
    font-weight: 600;
}

.hero-modern-actions {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    color: white;
    border: none;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.btn-modern-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.btn-modern-primary:active {
    transform: translateY(-2px);
}

.btn-animated {
    position: relative;
}

.btn-animated .btn-animated-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--secondary-color), #f97316) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-modern-primary:hover .btn-animated-border {
    opacity: 1;
}

.contact-actions {
    display: flex;
    gap: 15px;
}

.btn-modern-whatsapp {
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-modern-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-modern-phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(10, 126, 110, 0.3);
}

.btn-modern-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 126, 110, 0.4);
}

/* Right Column - Visual Elements */
.hero-modern-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
}

.visual-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: popIn 0.6s ease forwards;
}

.visual-card:nth-child(1) {
    animation-delay: 0.3s;
}

.visual-card:nth-child(2) {
    animation-delay: 0.5s;
}

.visual-card:nth-child(3) {
    animation-delay: 0.7s;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #f97316);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.card-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0 0 5px 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
}

/* Decoration Elements */
.decoration-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation: float 8s ease-in-out infinite 1s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 10%;
    animation: float 7s ease-in-out infinite 0.5s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4),
                     0 0 30px rgba(212, 175, 55, 0.3);
    }
    100% {
        text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4),
                     0 0 40px rgba(212, 175, 55, 0.6),
                     0 0 60px rgba(212, 175, 55, 0.4);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, 10px);
    }
}

/* Delayed Animations */
.animate-pop-in {
    opacity: 0;
    transform: translateY(20px);
    animation: popIn 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: calc(var(--delay, 0) * 1s);
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-modern-grid {
        gap: 40px;
    }
    
    .hero-modern-title {
        font-size: 3rem;
    }
    
    .hero-modern-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-modern-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-modern-visual {
        order: -1;
        align-items: center;
    }
    
    .visual-card {
        width: 100%;
        max-width: 400px;
    }
    
    .hero-modern-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-modern-subtitle {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .hero-modern-text {
        text-align: center;
    }
    
    .hero-modern-features {
        justify-content: center;
    }
    
    .hero-modern-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: 100vh;
        padding: 80px 0 60px;
    }
    
    .hero-modern-title {
        font-size: 2rem;
    }
    
    .hero-modern-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-modern-description {
        font-size: 1rem;
    }
    
    .hero-modern-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-modern-primary {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
    
    .contact-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn-modern-whatsapp,
    .btn-modern-phone {
        width: 100%;
        justify-content: center;
    }
    
    .visual-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .card-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-modern-content {
        padding: 20px 15px;
    }
    
    .hero-modern-logo .site-icon {
        width: 60px;
        height: 60px;
    }
    
    .hero-modern-logo .site-name {
        font-size: 40px;
    }
    
    .hero-modern-title {
        font-size: 1.8rem;
    }
    
    .hero-modern-subtitle {
        font-size: 1rem;
    }
    
    .hero-modern-description {
        font-size: 0.9rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .card-content h3 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        bottom: 20px;
    }
}