/* CSS Variables - Colors matching logo (Blue & Yellow) */
:root {
    --primary-blue: #0066CC;
    --primary-yellow: #0066CC;
    --dark-blue: #004499;
    --light-blue: #3399FF;
    --light-yellow: #FFE066;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #666666;
    --dark-gray: #333333;
    --text-color: #333333;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.navbar {
    padding: 1.2rem 0;
    transition: padding 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: var(--dark-blue);
}

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

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    display: flex;
    gap: 0;
    border: 2px solid var(--primary-yellow);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
}

.lang-btn {
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--primary-yellow);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn.active {
    background: var(--primary-yellow);
    color: var(--dark-blue);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 215, 0, 0.1);
}


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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

/* Hero Section - Enhanced Premium Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Hero Background Image Container */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    animation: heroImageFadeIn 2s ease-out;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

.hero:hover .hero-image {
    transform: scale(1.05);
}

@keyframes heroImageFadeIn {
    from {
        opacity: 0;
        transform: scale(1.15);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* Hero Gradient Overlay - Enhanced */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.6) 0%, transparent 50%),
        linear-gradient(180deg, 
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

/* Hero Content - Enhanced */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    padding: 2rem;
    animation: heroContentFadeIn 1.2s ease-out 0.4s both;
    color: var(--white);
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    line-height: 1.1;
    letter-spacing: -3px;
    position: relative;
}

.hero-subtitle {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 102, 204, 0.3);
    letter-spacing: 2px;
    animation: subtitleFadeIn 1s ease-out 0.6s both;
    position: relative;
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: descriptionFadeIn 1s ease-out 0.8s both;
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.hero-cta {
    margin-top: 3rem;
    animation: ctaFadeIn 1s ease-out 1s both;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.btn-hero-modern {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 55px;
    background: linear-gradient(135deg, #0066CC 0%, #3399FF 100%);
    color: var(--white);
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 
        0 15px 50px rgba(0, 102, 204, 0.5),
        0 5px 20px rgba(0, 102, 204, 0.3),
        0 0 0 0 rgba(0, 102, 204, 0.7);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
}

.btn-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-hero-modern:hover::before {
    left: 100%;
}

.btn-hero-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(0, 102, 204, 0.6),
        0 0 0 10px rgba(0, 102, 204, 0.1);
    background: linear-gradient(135deg, #3399FF 0%, #0066CC 100%);
}

.btn-hero-modern:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-hero-modern .btn-text {
    position: relative;
    z-index: 1;
}

.btn-hero-modern .btn-arrow {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-hero-modern:hover .btn-arrow {
    transform: translateX(5px);
}

[dir="rtl"] .btn-hero-modern .btn-arrow {
    transform: scaleX(-1);
}

[dir="rtl"] .btn-hero-modern:hover .btn-arrow {
    transform: scaleX(-1) translateX(-5px);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.hero-badge span:not(.badge-icon) {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.feature-badge span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Hero Secondary Button */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-arrow-down {
    font-size: 1.5rem;
}

/* Hero CTA Buttons Layout */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    animation: ctaFadeIn 1s ease-out 1s both;
}

/* Hero Info Cards */
.hero-info-cards {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #006666 0%, #004d4d 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.info-icon {
    width: 40px;
    height: 40px;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.info-card span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.info-card small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--light-yellow) 100%);
    color: var(--dark-blue);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    font-weight: 700;
    padding: 16px 35px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--primary-yellow) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.btn-secondary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.6);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.btn-phone {
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-phone:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.btn-email {
    background: var(--gray);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.section:nth-child(even) {
    background: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Services - Modern Redesign */
.premium-services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.25);
    border-color: var(--primary-blue);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0, 102, 204, 0) 0%,
        rgba(0, 102, 204, 0.3) 70%,
        rgba(0, 102, 204, 0.6) 100%);
    transition: opacity 0.5s ease;
    opacity: 0.4;
}

.service-card:hover .service-image {
    transform: scale(1.15);
}

.service-card:hover .service-overlay {
    opacity: 0.6;
}

.service-content-wrapper {
    padding: 2rem 2rem 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.service-content-wrapper .service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
    padding: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-card:hover .service-content-wrapper .service-title {
    color: var(--dark-blue);
}

.service-content-wrapper .service-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

/* Responsive for Premium Services */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image-wrapper {
        height: 240px;
    }
    
    .service-content-wrapper {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
}

/* First Class Section */
.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-text {
    padding: 2rem;
}

.content-text .section-title {
    text-align: right;
}

.content-text .section-subtitle {
    text-align: right;
}

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

.features-list li {
    padding: 0.8rem 0;
    padding-right: 2rem;
    position: relative;
    color: var(--text-light);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Airport Reception - Executive Design */
.airport-reception {
    background: var(--white);
    color: var(--text-color);
}

.reception-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.reception-services-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    transform: translateY(-50%);
    z-index: 0;
}

.reception-service-item {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}

.service-content {
    flex: 1;
}

.service-title-reception {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-desc-reception {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-image-reception {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    aspect-ratio: 16/9;
}

.service-image-reception:hover {
    transform: scale(1.02);
}

.service-image-reception img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 5-Star Hotels Section - Modern Design */
.hotel-rooms-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.hotel-room-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.hotel-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hotel-room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hotel-room-card:hover img {
    transform: scale(1.1);
}

.hotel-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hotel-service-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.hotel-service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.5);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-color: var(--primary-yellow);
}

.service-icon-box {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 24px;
    height: 24px;
    color: var(--white);
    stroke-width: 2.5;
}

.service-title {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.service-desc {
    color: var(--white);
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.95;
}

[dir="ltr"] .hotel-service-card:hover {
    transform: translateX(-10px);
}

/* Exclusive Experiences */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.experience-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Contact Section - Modern Redesign */
.contact {
    background: var(--white);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.contact-description {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.contact-whatsapp .contact-card-icon {
    background: linear-gradient(135deg, #25D366, #20BA5A);
    color: var(--white);
}

.contact-phone .contact-card-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
}

.contact-email .contact-card-icon {
    background: linear-gradient(135deg, var(--gray), var(--dark-gray));
    color: var(--white);
}

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

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-title {
    color: var(--dark-blue);
}

.contact-card-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-card-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 1rem 0 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.contact-card-phone span[dir="ltr"] {
    direction: ltr !important;
    display: inline-block;
    unicode-bidi: embed !important;
    text-align: left;
    font-variant-numeric: normal;
}

[dir="rtl"] .contact-card-phone span[dir="ltr"] {
    direction: ltr !important;
    unicode-bidi: embed !important;
}

footer a span[dir="ltr"],
.footer-contact a span[dir="ltr"] {
    direction: ltr !important;
    unicode-bidi: embed !important;
    display: inline-block;
}

/* Responsive for Contact Section */
@media (max-width: 968px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

/* Footer - Modern Redesign */
.footer {
    background: #FFFFFF;
    color: #000000;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer::before {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1.2fr 1.2fr 1.4fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.05);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.social-link svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.app-link:hover {
    color: var(--primary-blue);
    padding-right: 10px;
}

.app-link svg {
    flex-shrink: 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

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

.footer-logo .logo-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-blue);
}

.footer-description {
    color: #666666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-blue);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
    font-size: 0.95rem;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-blue);
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

/* App Download Links */
.app-download-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-download-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 10px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.app-download-link:hover {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-blue);
    transform: translateX(-5px);
    border-color: var(--primary-blue);
}

.app-download-link svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.app-link-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.app-link-label {
    font-size: 0.75rem;
    opacity: 0.7;
    color: #666666;
}

.app-link-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #000000;
}

.app-download-link:hover .app-link-label,
.app-download-link:hover .app-link-name {
    color: var(--primary-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1400px) {
    .footer-content {
        grid-template-columns: 2fr 1.2fr 1fr 1.2fr 1.2fr 1.2fr;
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-apps {
        grid-column: 1 / -1;
    }
}

@media (max-width: 968px) {
    .footer .container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-about {
        max-width: 100%;
        grid-column: 1 / -1;
    }
    
    .footer-apps {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer .container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

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

.floating-whatsapp svg {
    width: 30px;
    height: 30px;
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RTL/LTR Support */
[dir="rtl"] {
    direction: rtl;
}

[dir="ltr"] {
    direction: ltr;
}

[dir="rtl"] .section-content.reverse {
    direction: ltr;
}

[dir="rtl"] .section-content.reverse > * {
    direction: rtl;
}

[dir="ltr"] .content-text .section-title,
[dir="ltr"] .content-text .section-subtitle {
    text-align: left;
}

[dir="ltr"] .features-list li {
    padding-left: 2rem;
    padding-right: 0;
}

[dir="ltr"] .features-list li::before {
    left: 0;
    right: auto;
}

[dir="ltr"] .service-item:hover {
    transform: translateX(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-actions {
        gap: 0.5rem;
    }

    .hero-cta {
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-hero-modern {
        padding: 18px 40px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        margin: 2rem 0;
    }
    
    .feature-badge {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid rgba(0, 102, 204, 0.1);
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

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

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

    .section-content {
        grid-template-columns: 1fr;
    }

    .section-content.reverse {
        direction: ltr;
    }

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

    .hotel-rooms-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hotel-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reception-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reception-services-grid::before {
        display: none;
    }

    .reception-service-item {
        flex-direction: column;
        gap: 1rem;
    }

    .service-number {
        font-size: 2.5rem;
        min-width: auto;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-buttons .btn {
        width: 100%;
    }

    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp svg {
        width: 25px;
        height: 25px;
    }
}

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

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .btn-hero-modern {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .section {
        padding: 50px 0;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .feature-badge {
        width: 100%;
        justify-content: center;
    }
}

