/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Aeroport', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
}

#app,
main {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo a {
    text-decoration: none;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo a:hover .logo-text {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e3c72, #ffd700);
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #1e3c72;
}

.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.main-nav li:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.has-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    margin-top: 10px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(30, 60, 114, 0.1), rgba(255, 215, 0, 0.1));
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-link i {
    font-size: 1.2rem;
}

.logo-img {
    display: block;
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
}

.language-switcher {
    position: relative;
}

.language-dropdown {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border: 2px solid rgba(30, 60, 114, 0.3);
    border-radius: 25px;
    background: #ffffff;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    text-decoration: none;
}

.language-dropdown-toggle:hover {
    border-color: #2a5298;
    box-shadow: 0 2px 10px rgba(30, 60, 114, 0.2);
    transform: translateY(-1px);
}

.language-dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: #666;
}

.language-dropdown.active .language-dropdown-toggle i {
    transform: rotate(180deg);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    padding: 8px 0;
}

.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.language-option:hover {
    background: linear-gradient(90deg, rgba(30, 60, 114, 0.05), rgba(255, 215, 0, 0.05));
    border-left-color: #2a5298;
    transform: translateX(5px);
}

.language-option .flag-icon {
    width: 24px;
    height: 18px;
}

.btn-primary {
    padding: 12px 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
    background: linear-gradient(135deg, #2a5298 0%, #3b79a3 100%);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #1e3c72, #ffd700);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: #1e3c72;
    padding-left: 10px;
}

body.menu-open {
    overflow: hidden;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, transparent);
}

.footer-description {
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #1e3c72, #ffd700);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    width: 20px;
    color: #ffd700;
}

.contact-info span {
    color: #cccccc;
}

.footer-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #ffd700 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #cccccc;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #ffd700;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.8s ease-out forwards;
    opacity: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background: #1e3c72;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 0;
    animation: heroImageFadeIn 2s ease-out forwards, heroImageZoom 30s ease-in-out infinite;
    will-change: transform, opacity;
    filter: brightness(0.85) contrast(1.1);
    transition: filter 0.5s ease;
}

.hero-section:hover .hero-background-image {
    filter: brightness(0.9) contrast(1.15);
}

@keyframes heroImageFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroImageZoom {
    0%, 100% {
        transform: scale(1) translateY(0) rotate(0deg);
    }
    25% {
        transform: scale(1.04) translateY(-5px) rotate(0.2deg);
    }
    50% {
        transform: scale(1.08) translateY(-10px) rotate(0deg);
    }
    75% {
        transform: scale(1.04) translateY(-5px) rotate(-0.2deg);
    }
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(30, 60, 114, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
    animation: heroShine 8s ease-in-out infinite;
}

@keyframes heroShine {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.3) 0%, rgba(42, 82, 152, 0.2) 50%, rgba(59, 121, 163, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

@keyframes backgroundMove {
    0%, 100% {
        background-size: 100%;
        transform: scale(1) translateZ(0);
    }
    50% {
        background-size: 110%;
        transform: scale(1.05) translateZ(0);
    }
}

.hero-overlay {
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 600;
    color: #ffd700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInScrollIndicator 1s ease-out 1.5s forwards;
}

@keyframes fadeInScrollIndicator {
    to {
        opacity: 1;
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid #ffd700;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.wheel {
    width: 6px;
    height: 10px;
    background: #ffd700;
    border-radius: 5px;
    margin-top: 10px;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.arrows {
    display: flex;
    flex-direction: column;
    gap: 5px;
    animation: arrowBounce 2s infinite;
}

.arrows span {
    width: 10px;
    height: 10px;
    border-right: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
    transform: rotate(45deg);
    animation: arrowMove 2s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.1s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes arrowMove {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(10px) rotate(45deg);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2a5298 0%, #3b79a3 100%);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.scroll-to-top::before {
    content: '↑';
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.scroll-to-top.active {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Main Sections */
.main-sections {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.main-section-block {
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-section-block:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid #f0f0f0;
}

.block-header-content {
    flex: 1;
}

.block-title {
    font-size: 3rem;
    font-weight: 900;
    color: #2a5298;
    margin-bottom: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.block-subtitle {
    font-size: 1.5rem;
    color: #666;
    font-weight: 600;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #2a5298 0%, #3b79a3 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #3b79a3 0%, #2a5298 100%);
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(30, 60, 114, 0.4);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

/* Block Items Grid */
.block-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.block-item-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.block-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.block-item-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.block-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.block-item-card:hover .block-item-image img {
    transform: translateY(-5px);
}

.block-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.85) 0%, rgba(42, 82, 152, 0.8) 50%, rgba(255, 215, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.block-item-card:hover .block-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.block-item-overlay-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.block-item-card:hover .block-item-overlay-title {
    transform: translateY(0);
    opacity: 1;
}

.block-item-overlay-info {
    font-size: 0.95rem;
    color: #ffffff;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.block-item-card:hover .block-item-overlay-info {
    transform: translateY(0);
    opacity: 1;
}

.block-item-overlay-btn {
    padding: 12px 30px;
    background: #ffffff;
    color: #2a5298;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.block-item-card:hover .block-item-overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

.block-item-overlay-btn:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.block-item-content {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.block-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.block-item-card:hover .block-item-title {
    color: #2a5298;
}

.block-item-location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.block-item-location i {
    color: #2a5298;
}

.block-item-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2a5298;
    transition: transform 0.3s ease;
}

.block-item-card:hover .block-item-price {
    transform: translateX(5px);
}

.block-item-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #999;
}

/* Delta Sharm Content */
.delta-sharm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.delta-sharm-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.delta-sharm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.delta-sharm-block:hover .delta-sharm-image img {
    transform: scale(1.05);
}

.delta-sharm-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #2a5298;
    margin-bottom: 20px;
}

.delta-sharm-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.delta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.delta-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.05), rgba(255, 215, 0, 0.05));
    border-radius: 15px;
    transition: all 0.3s ease;
}

.delta-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.delta-feature i {
    font-size: 2rem;
    color: #2a5298;
}

.delta-feature span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Hot Offers Section */
.hot-offers-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #2a5298;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.offer-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.offer-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover .offer-badge {
    animation: badgePulse 1s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ff6b6b;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
}

.offer-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
    z-index: -1;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.offer-card-sale .offer-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.offer-card-most .offer-badge {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.offer-card-best .offer-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.offer-card-giza .offer-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    padding: 25px;
}

.offer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 60px;
}

.offer-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.offer-duration,
.offer-location {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.offer-duration::before {
    content: '⏱️';
}

.offer-location::before {
    content: '📍';
}

.offer-price {
    margin-bottom: 20px;
}

.price-from {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #2a5298;
}

.offer-btn {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #2a5298 0%, #3b79a3 100%);
    color: #ffffff;
    text-align: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.offer-btn:hover {
    background: linear-gradient(135deg, #3b79a3 0%, #2a5298 100%);
    transform: scale(1.05);
}

/* Top Destinations Section */
.destinations-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f0f4f8 100%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destination-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.destination-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.3), rgba(255, 215, 0, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.destination-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.destination-card:hover::after {
    opacity: 1;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.destination-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.15);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 40px 30px;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 3;
}

.destination-card:hover .destination-overlay {
    transform: translateY(0);
}

.destination-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.destination-subtitle {
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.destination-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #ffd700;
    color: #333;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.destination-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
}

/* Instagram Section */
.instagram-section {
    padding: 100px 20px;
    background: #1a1a2e;
}

.instagram-section .section-title {
    color: #ffffff;
}

.instagram-section .section-title::after {
    background: linear-gradient(90deg, transparent, #e1306c, transparent);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 50px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instagram-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.6), rgba(255, 215, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 3rem;
    color: #ffffff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Reviews Section */
.reviews-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid #2a5298;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.review-card:hover::before {
    left: 100%;
}

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 60, 114, 0.2);
    border-top-color: #ffd700;
}

.review-card:hover .stars {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.review-rating {
    margin-bottom: 15px;
}

.review-rating .stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-weight: 700;
    color: #2a5298;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 20px;
    background: #1a1a2e;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1515542622106-78bda8ba0e5b?w=1920&q=80') center/cover no-repeat;
    opacity: 0.3;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(42, 82, 152, 0.8));
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffd700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .offers-grid,
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-sections {
        padding: 70px 0;
    }

    .main-section-block {
        padding: 35px 25px;
        margin-bottom: 50px;
    }

    .block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .block-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        text-align: left;
    }

    .block-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .delta-sharm-content {
        grid-template-columns: 1fr;
    }

    .delta-sharm-image {
        height: 300px;
    }

    .delta-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .main-nav ul {
        gap: 20px;
    }

    .main-nav a {
        font-size: 0.85rem;
    }

    .logo-img {
        height: 42px;
        max-width: 140px;
    }

    .header-cta {
        gap: 15px;
    }

    .whatsapp-link {
        padding: 7px 12px;
        font-size: 0.85rem;
    }

    .language-dropdown-toggle {
        padding: 7px 12px;
        font-size: 0.85rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .header-container {
        padding: 0 15px;
    }

    .logo-img {
        height: 38px;
        max-width: 130px;
    }

    .main-nav ul {
        gap: 15px;
    }

    .main-nav a {
        font-size: 0.8rem;
    }

    .header-cta {
        gap: 12px;
    }

    .whatsapp-link {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .whatsapp-link span {
        font-size: 0.75rem;
    }

    .language-dropdown-toggle {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
        margin-top: 60px;
    }

    .header-container {
        height: 60px;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .btn-primary {
        display: none;
    }

    .mobile-menu {
        top: 60px;
    }

    .scroll-indicator {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hot-offers-section,
    .destinations-section,
    .instagram-section,
    .reviews-section,
    .cta-section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .offers-grid,
    .destinations-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .main-sections {
        padding: 60px 0;
    }

    .main-section-block {
        padding: 25px 15px;
        margin-bottom: 40px;
        border-radius: 20px;
    }

    .block-header {
        margin-bottom: 25px;
        padding-bottom: 20px;
        gap: 15px;
    }

    .block-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        letter-spacing: 1px;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 15px;
        margin-bottom: 8px;
    }

    .block-subtitle {
        font-size: 1rem;
    }

    .view-more-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
        letter-spacing: 0.5px;
    }

    .block-items-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .block-item-image {
        height: 200px;
    }

    .block-item-content {
        padding: 20px;
    }

    .block-item-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .block-item-location {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .block-item-price {
        font-size: 1.4rem;
    }

    .delta-sharm-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .delta-sharm-image {
        height: 220px;
    }

    .delta-sharm-info h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .delta-sharm-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .delta-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .language-dropdown-toggle {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .language-dropdown-toggle span {
        display: none;
    }

    .language-dropdown-menu {
        min-width: 150px;
        right: 0;
    }

    .whatsapp-link span {
        display: none;
    }

    .whatsapp-link {
        padding: 8px 12px;
        min-width: 40px;
        justify-content: center;
    }

    .section-header {
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        letter-spacing: 1px;
        text-align: center;
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-title::after {
        width: 60px;
    }

    .destination-card {
        height: 300px;
    }

    .destination-name {
        font-size: 2rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .scroll-to-top::before {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 30px;
        max-width: 100px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .section-header {
        text-align: center;
    }

    .section-title {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
        letter-spacing: 0.5px;
        text-align: center;
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-title::after {
        width: 50px;
        height: 3px;
    }

    .main-sections {
        padding: 40px 0;
    }

    .main-section-block {
        padding: 20px 12px;
        margin-bottom: 30px;
        border-radius: 15px;
    }

    .block-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
        gap: 12px;
    }

    .block-title {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
        letter-spacing: 0.5px;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 5px;
    }

    .block-subtitle {
        font-size: 0.9rem;
    }

    .view-more-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        width: 100%;
        justify-content: center;
    }

    .block-items-grid {
        gap: 12px;
    }

    .block-item-image {
        height: 180px;
    }

    .block-item-content {
        padding: 15px;
    }

    .block-item-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .block-item-location {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .block-item-price {
        font-size: 1.2rem;
    }

    .block-item-overlay {
        padding: 15px;
    }

    .block-item-overlay-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .block-item-overlay-info {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .block-item-overlay-btn {
        padding: 10px 25px;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .delta-sharm-content {
        gap: 20px;
    }

    .delta-sharm-info h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .delta-sharm-info p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .offer-image {
        height: 200px;
    }

    .offer-title {
        font-size: 1rem;
        min-height: auto;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .destination-overlay {
        padding: 30px 20px;
    }

    .destination-name {
        font-size: 1.5rem;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}
