:root {
    --primary-dark: #0d1b2a;
    /* أزرق داكن - 30% */
    --primary-light: #1b4965;
    /* أزرق متوسط */
    --accent-sky: #62b6cb;
    /* سماوي - 10% */
    --accent-orange: #f39c12;
    /* برتقالي - بديل للسماوي */
    --light-bg: #ffffff;
    /* أبيض - 60% */
    --light-text: #f8f9fa;
    --dark-text: #333333;
}

* {
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', 'Cairo', sans-serif;
    font-weight: 600;
}

/* ===== الهيدر والنافبار ===== */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(98, 182, 203, 0.1);
}

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

/* Logo Styling */
.navbar-brand {
    padding: 10px 0;
    transition: all 0.4s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-logo {
    height: 70px;
}

/* Navigation Links */
.navbar-nav {
    gap: 5px;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 25px 18px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.navbar.scrolled .navbar-nav .nav-link {
    padding: 15px 18px !important;
}

.navbar-nav .nav-link .nav-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover .nav-icon {
    transform: translateY(-3px);
}

/* Active & Hover States */
.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-sky), var(--accent-orange));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-sky) !important;
    background: linear-gradient(180deg, transparent 0%, rgba(98, 182, 203, 0.05) 100%);
}

/* User Actions Section */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
}

.nav-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-action-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-action-btn:hover::after {
    width: 300px;
    height: 300px;
}

.nav-action-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-action-btn span {
    position: relative;
    z-index: 1;
}

.nav-action-btn:hover i {
    transform: scale(1.15);
}

/* Login Button */
.login-btn {
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white !important;
    box-shadow: 0 4px 15px rgba(98, 182, 203, 0.3);
}

.login-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 6px 25px rgba(98, 182, 203, 0.4);
    transform: translateY(-2px);
}

.login-btn.active {
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
}

/* Logout Button */
.logout-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white !important;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.logout-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
    transform: translateY(-2px);
}

/* Admin Button */
.admin-btn {
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
    color: white !important;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.admin-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4);
    transform: translateY(-2px);
}

/* Toggler Button */
.navbar-toggler {
    border: 2px solid var(--accent-sky);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: rgba(98, 182, 203, 0.1);
    border-color: var(--accent-orange);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(98, 182, 203, 0.25);
}

.navbar-toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler-icon i {
    color: var(--accent-sky);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon i {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

/* قسم من نحن */
.about-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img img,
.about-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.about-content h2 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-sky);
    bottom: 0;
    right: 0;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(98, 182, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.about-feature-icon i {
    font-size: 20px;
    color: var(--accent-sky);
}

/* أزرار باستخدام 10% من الألوان */
.btn-primary {
    background-color: var(--accent-sky);
    border-color: var(--accent-sky);
    color: var(--light-text);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-accent {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--light-text);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-accent:hover {
    background-color: #e67e22;
    border-color: #e67e22;
}

/* موجة SVG */
.wave-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-divider-top {
    transform: rotate(180deg);
}

.wave-fill-dark {
    fill: var(--primary-dark);
}

.wave-fill-light {
    fill: var(--light-bg);
}

.wave-fill-sky {
    fill: var(--accent-sky);
}

/* قسم الهيرو */
.hero-section {
    background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.8)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 120px 0;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

/* قسم المميزات */
.features-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-title {
    color: var(--primary-dark);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-sky);
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(98, 182, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--accent-sky);
}

/* قسم الوجهات */
.destinations-section {
    padding: 100px 0;
    background-color: rgba(98, 182, 203, 0.05);
}

.destination-card-item {
    margin-bottom: 30px;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.destination-card {
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.destination-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-info h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.destination-info p {
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.8;
    flex-grow: 1;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.destination-price {
    color: var(--accent-sky);
    font-weight: 700;
    font-size: 1.5rem;
}

.destination-price .price-label {
    font-size: 0.9rem;
    color: var(--dark-text);
    display: block;
    margin-bottom: 5px;
}

.destination-card .btn-primary {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
}

/* Category Labels */
.category-label {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-label.honeymoon {
    background-color: rgba(243, 156, 18, 0.2);
    color: #e67e22;
}

.category-label.adventure {
    background-color: rgba(27, 73, 101, 0.2);
    color: var(--primary-light);
}

/* قسم العروض */
.offers-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.offer-banner {
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.8)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1335&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    color: var(--light-text);
    padding: 60px;
    margin-top: 50px;
}

.offer-banner h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin: 0 10px;
    min-width: 90px;
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
}

/* الفوتر */
.footer {
    background-color: var(--light-bg);
    color: var(--dark-text);
    padding-top: 80px;
    border-top: 1px solid #eee;
}

.footer-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.footer h5 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
    bottom: 0;
}

[dir="rtl"] .footer h5:after {
    right: 0;
}

[dir="ltr"] .footer h5:after {
    left: 0;
}

.footer-links a {
    color: var(--dark-text);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-right: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    /* Lighter background for icons */
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-orange);
    color: var(--light-bg);
    transform: translateY(-5px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.03);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.maay {
    color: chocolate;
    text-decoration: none;
    font-weight: 600;
}

.maay:hover {
    color: var(--accent-sky);
}


/* ===== تصميم الصفحة الرئيسية الجديد ===== */

/* Hero Section Modern */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b4965 50%, #0d1b2a 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2362b6cb" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(98, 182, 203, 0.2);
    border: 2px solid rgba(98, 182, 203, 0.5);
    border-radius: 50px;
    color: var(--accent-sky);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-sky), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-sky);
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-hero-primary {
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(98, 182, 203, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(98, 182, 203, 0.4);
    color: white;
}

.btn-hero-outline {
    padding: 15px 35px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    height: 500px;
    animation: fadeIn 1.5s ease;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--accent-sky);
}

.floating-card span {
    font-weight: 600;
    color: var(--primary-dark);
}

.card-1 {
    top: 50px;
    right: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 150px;
    animation-delay: 1s;
}

.card-3 {
    top: 350px;
    right: 80px;
    animation-delay: 2s;
}

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

.hero-scroll-indicator a {
    color: white;
    font-size: 2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator a:hover {
    opacity: 1;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(98, 182, 203, 0.1);
    border: 2px solid rgba(98, 182, 203, 0.3);
    border-radius: 50px;
    color: var(--accent-sky);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section Modern */
.about-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.about-image-wrapper {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-img-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-orange), #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.3);
    animation: pulse 2s infinite;
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.badge-content p {
    font-size: 0.9rem;
    margin: 0;
}

.about-content-modern {
    padding-right: 40px;
}

.about-subtitle {
    color: var(--accent-sky);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features-modern {
    margin: 40px 0;
}

.feature-modern-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-modern-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-modern-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-modern-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-modern-content h5 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-modern-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.about-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary-modern {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(98, 182, 203, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(98, 182, 203, 0.4);
    color: white;
}

.btn-outline-modern {
    padding: 12px 30px;
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

/* Features Section Modern */
.features-section-modern {
    padding: 100px 0;
    background: white;
}

.feature-card-modern {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-sky), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-card-icon {
    transform: rotateY(360deg);
}

.feature-card-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card-modern h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card-modern p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-card-number {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(98, 182, 203, 0.05);
    line-height: 1;
}

/* Destinations Section Modern */
.destinations-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.destination-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.destination-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.destination-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 27, 42, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card-modern:hover .destination-card-overlay {
    opacity: 1;
}

.btn-view-details {
    padding: 12px 30px;
    background: white;
    color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: var(--accent-sky);
    color: white;
    transform: scale(1.05);
}

.destination-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: rgba(243, 156, 18, 0.95);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.destination-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.destination-card-header h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.destination-card-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.destination-card-location i {
    color: var(--accent-sky);
    margin-left: 5px;
}

.destination-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.destination-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.destination-card-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-sky);
}

.price-value small {
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-book-now {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-book-now:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    transform: translateX(-5px);
    color: white;
}

.btn-primary-large {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-sky), var(--primary-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(98, 182, 203, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(98, 182, 203, 0.4);
    color: white;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* Nest Hub Max (1280x800) - Landscape */
@media (min-width: 1200px) and (max-width: 1366px) and (max-height: 850px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 28px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.55rem;
        padding: 4px 4px !important;
        gap: 4px;
    }

    .navbar-nav .nav-link .nav-icon {
        font-size: 0.8rem;
    }

    .nav-action-btn {
        padding: 2px 5px;
        font-size: 0.55rem;
        gap: 4px;
    }

    .nav-action-btn i {
        font-size: 0.8rem;
    }

    .navbar-actions {
        padding: 0 5px;
        gap: 4px;
    }

    .hero-section {
        min-height: auto;
        padding: 60px 0 50px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

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

    .hero-stats {
        gap: 18px;
    }

    .stat-item h3 {
        font-size: 1.7rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 10px 22px;
        font-size: 0.95rem;
    }

    .hero-image {
        height: 320px;
    }

    .floating-card {
        padding: 10px 14px;
    }

    .floating-card i {
        font-size: 1.2rem;
    }

    .floating-card span {
        font-size: 0.8rem;
    }

    .card-1 {
        top: 25px;
        right: 25px;
    }

    .card-2 {
        top: 130px;
        right: 85px;
    }

    .card-3 {
        top: 235px;
        right: 45px;
    }

    .about-section,
    .features-section-modern,
    .destinations-section-modern {
        padding: 55px 0;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .about-experience-badge {
        width: 95px;
        height: 95px;
    }

    .badge-content h3 {
        font-size: 1.7rem;
    }

    .badge-content p {
        font-size: 0.75rem;
    }

    .feature-card-modern {
        padding: 28px 20px;
    }

    .feature-card-icon {
        width: 68px;
        height: 68px;
    }

    .feature-card-icon i {
        font-size: 1.65rem;
    }

    .destination-card-image {
        height: 210px;
    }
}

/* Large Tablets & Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 60px;
    }

    .navbar-brand {
        padding: 3px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.55rem;
        padding: 8px 8px !important;
    }

    .nav-action-btn {
        padding: 4px 5px;
        font-size: 0.75rem;
    }

    .navbar-actions {
        padding: 0 10px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 3.2rem;
    }

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

    .hero-stats {
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 2.2rem;
    }

    /* Floating Cards */
    .hero-image {
        height: 450px;
    }

    .floating-card {
        padding: 18px 22px;
    }

    .floating-card i {
        font-size: 1.7rem;
    }

    .floating-card span {
        font-size: 0.95rem;
    }

    /* About Section */
    .about-experience-badge {
        width: 130px;
        height: 130px;
    }

    .badge-content h3 {
        font-size: 2.2rem;
    }

    /* Features */
    .feature-card-icon {
        width: 75px;
        height: 75px;
    }

    .feature-card-icon i {
        font-size: 1.9rem;
    }
}

/* iPad Pro & Tablets (768px - 991px) */
@media (max-width: 991px) {
    Navbar
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 50px;
    }

    .navbar-nav .nav-link {
        font-size: 0.65rem;
        padding: 6px 6px !important;
    }

    .nav-action-btn {
        padding: 3px 6px;
        font-size: 0.65rem;
    }

    .navbar-actions {
        padding: 0 8px;
        gap: 6px;
    }

    .navbar-collapse {
        background: white;
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-link {
        padding: 15px 20px !important;
        border-radius: 10px;
        margin-bottom: 5px;
    }

    .navbar-nav .nav-link::before {
        display: none;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: linear-gradient(90deg, rgba(98, 182, 203, 0.1), rgba(243, 156, 18, 0.1));
        transform: translateX(-5px);
    }

    .navbar-actions {
        flex-direction: column;
        width: 100%;
        padding: 15px 0 0 0;
        gap: 10px;
        border-top: 2px solid rgba(98, 182, 203, 0.2);
        margin-top: 15px;
    }

    .nav-action-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    /* Hero Section */
    .hero-section {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-stats {
        gap: 25px;
        margin-bottom: 35px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .hero-image {
        height: 400px;
        margin-top: 50px;
    }

    .floating-card {
        padding: 15px 20px;
    }

    .floating-card i {
        font-size: 1.5rem;
    }

    .floating-card span {
        font-size: 0.9rem;
    }

    .card-1 {
        top: 40px;
        right: 40px;
    }

    .card-2 {
        top: 180px;
        right: 120px;
    }

    .card-3 {
        top: 320px;
        right: 60px;
    }

    /* Sections */
    .about-section,
    .features-section-modern,
    .destinations-section-modern {
        padding: 80px 0;
    }

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

    .section-subtitle {
        font-size: 1.05rem;
    }

    /* About */
    .about-content-modern {
        padding-right: 0;
        margin-top: 40px;
    }

    .about-experience-badge {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: -20px;
    }

    .badge-content h3 {
        font-size: 2rem;
    }

    .badge-content p {
        font-size: 0.85rem;
    }

    /* Features */
    .feature-card-modern {
        padding: 35px 25px;
    }

    /* Destinations */
    .destination-card-image {
        height: 260px;
    }
}

/* Nest Hub Max & Landscape Tablets (768px - 1024px) with short height */
@media (min-width: 768px) and (max-width: 1024px) and (max-height: 900px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 32px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.6rem;
        padding: 5px 5px !important;
    }

    .nav-action-btn {
        padding: 3px 6px;
        font-size: 0.6rem;
    }

    .navbar-actions {
        padding: 0 6px;
        gap: 5px;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        gap: 20px;
        margin-bottom: 30px;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .hero-image {
        height: 350px;
        margin-top: 40px;
    }

    .floating-card {
        padding: 12px 18px;
    }

    .floating-card i {
        font-size: 1.3rem;
    }

    .floating-card span {
        font-size: 0.85rem;
    }

    .card-1 {
        top: 30px;
        right: 30px;
    }

    .card-2 {
        top: 150px;
        right: 100px;
    }

    .card-3 {
        top: 270px;
        right: 50px;
    }

    .about-section,
    .features-section-modern,
    .destinations-section-modern {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

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

    .about-experience-badge {
        width: 110px;
        height: 110px;
    }

    .badge-content h3 {
        font-size: 1.9rem;
    }

    .feature-card-modern {
        padding: 30px 20px;
    }

    .feature-card-icon {
        width: 70px;
        height: 70px;
    }

    .feature-card-icon i {
        font-size: 1.7rem;
    }

    .destination-card-image {
        height: 240px;
    }
}

/* Nest Hub Specific (1024x600) - Very short landscape */
@media (min-width: 1000px) and (max-width: 1100px) and (max-height: 650px) {
    /* Navbar */
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        height: 30px;
    }

    .navbar-brand {
        padding: 2px 0;
    }

    .navbar-nav .nav-link {
        font-size: 0.6rem;
        padding: 5px 4px !important;
    }

    .nav-action-btn {
        padding: 2px 5px;
        font-size: 0.6rem;
    }

    .navbar-actions {
        padding: 0 5px;
        gap: 4px;
    }

    .hero-section {
        padding: 60px 0 50px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 25px;
    }

    .stat-item {
        flex: 0 0 calc(33.333% - 10px);
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 10px 22px;
        font-size: 0.95rem;
    }

    .hero-image {
        height: 280px;
    }

    .floating-card {
        padding: 10px 15px;
    }

    .floating-card i {
        font-size: 1.2rem;
    }

    .floating-card span {
        font-size: 0.8rem;
    }

    .card-1 {
        top: 20px;
        right: 20px;
    }

    .card-2 {
        top: 110px;
        right: 70px;
    }

    .card-3 {
        top: 200px;
        right: 35px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about-section,
    .features-section-modern,
    .destinations-section-modern {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .about-experience-badge {
        width: 90px;
        height: 90px;
        bottom: -10px;
        right: -10px;
    }

    .badge-content h3 {
        font-size: 1.6rem;
    }

    .badge-content p {
        font-size: 0.7rem;
    }

    .feature-modern-item {
        padding: 18px;
        margin-bottom: 15px;
    }

    .feature-modern-icon {
        width: 50px;
        height: 50px;
    }

    .feature-modern-icon i {
        font-size: 1.2rem;
    }

    .feature-card-modern {
        padding: 25px 18px;
    }

    .feature-card-icon {
        width: 65px;
        height: 65px;
    }

    .feature-card-icon i {
        font-size: 1.6rem;
    }

    .destination-card-image {
        height: 200px;
    }

    .destination-card-content {
        padding: 18px;
    }
}

/* Standard Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Features Grid - 2 columns */
    .features-section-modern .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* Destinations Grid - 2 columns */
    .destinations-section-modern .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Mobile & Small Tablets (576px - 767px) */
@media (max-width: 767px) {
    /* Navbar */
    .navbar-logo {
        height: 70px;
    }

    /* Hero Section */
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

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

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

    .stat-item {
        flex: 0 0 calc(50% - 10px);
        text-align: center;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-image {
        height: 350px;
        margin-top: 40px;
    }

    .floating-card {
        padding: 12px 16px;
    }

    .floating-card i {
        font-size: 1.3rem;
    }

    .floating-card span {
        font-size: 0.85rem;
    }

    .card-1 {
        top: 30px;
        right: 20px;
    }

    .card-2 {
        top: 140px;
        right: 80px;
    }

    .card-3 {
        top: 250px;
        right: 40px;
    }

    /* Sections */
    .about-section,
    .features-section-modern,
    .destinations-section-modern {
        padding: 60px 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    /* About */
    .about-experience-badge {
        width: 110px;
        height: 110px;
        bottom: -15px;
        right: -15px;
    }

    .badge-content h3 {
        font-size: 1.8rem;
    }

    .badge-content p {
        font-size: 0.8rem;
    }

    .about-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-modern,
    .btn-outline-modern {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Features */
    .feature-card-modern {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    /* Destinations */
    .destination-card-image {
        height: 240px;
    }

    .destination-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .btn-book-now {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Mobile Phones (< 576px) */
@media (max-width: 575px) {
    /* Navbar */
    .navbar-logo {
        height: 60px;
    }

    .navbar-nav .nav-link {
        font-size: 0.95rem;
        padding: 12px 15px !important;
    }

    .nav-action-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    /* Hero Section */
    .hero-section {
        padding: 60px 0 50px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .hero-image {
        height: 300px;
        margin-top: 35px;
    }

    .floating-card {
        padding: 10px 14px;
    }

    .floating-card i {
        font-size: 1.1rem;
    }

    .floating-card span {
        font-size: 0.75rem;
    }

    .card-1 {
        top: 20px;
        right: 15px;
    }

    .card-2 {
        top: 120px;
        right: 60px;
    }

    .card-3 {
        top: 220px;
        right: 30px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Sections */
    .about-section,
    .features-section-modern,
    .destinations-section-modern {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* About */
    .about-experience-badge {
        width: 100px;
        height: 100px;
        bottom: -12px;
        right: -12px;
    }

    .badge-content h3 {
        font-size: 1.6rem;
    }

    .badge-content p {
        font-size: 0.75rem;
    }

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

    .about-text {
        font-size: 0.95rem;
    }

    .feature-modern-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .feature-modern-icon {
        margin: 0 auto 15px;
    }

    /* Features */
    .feature-card-modern {
        padding: 30px 20px;
    }

    .feature-card-icon {
        width: 70px;
        height: 70px;
    }

    .feature-card-icon i {
        font-size: 1.7rem;
    }

    .feature-card-modern h4 {
        font-size: 1.1rem;
    }

    .feature-card-modern p {
        font-size: 0.9rem;
    }

    /* Destinations */
    .destination-card-image {
        height: 220px;
    }

    .destination-card-content {
        padding: 20px;
    }

    .destination-card-header h4 {
        font-size: 1.2rem;
    }

    .destination-card-location {
        font-size: 0.85rem;
    }

    .destination-card-description {
        font-size: 0.9rem;
    }

    .price-value {
        font-size: 1.3rem;
    }

    .btn-book-now {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-primary-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Extra Small Phones (< 400px) */
@media (max-width: 399px) {
    .hero-title {
        font-size: 1.7rem;
    }

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

    .stat-item h3 {
        font-size: 1.8rem;
    }

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

    .floating-card {
        padding: 8px 12px;
    }

    .floating-card span {
        font-size: 0.7rem;
    }

    .about-experience-badge {
        width: 85px;
        height: 85px;
    }

    .badge-content h3 {
        font-size: 1.4rem;
    }
}
