/* ===================================
   Travel Guide Collection - Main Styles
   Browser Support: Chrome, Firefox, Safari, Mobile
   =================================== */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Smooth scrolling for better UX with fixed header */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Alexandria', sans-serif;
    background: #ffffff;
    background: -webkit-linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    background: -moz-linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    background: -o-linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* ===================================
   Header Section
   =================================== */

header {
    background: #000000;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1000;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                     opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                     box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                   opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                   box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Header hidden state - fades out and slides up when scrolling down */
header.header-hidden {
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* Header visible state - enhanced shadow when scrolled */
header.header-scrolled {
    -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background: -moz-linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    -webkit-animation: shine 3s infinite;
    -moz-animation: shine 3s infinite;
    -o-animation: shine 3s infinite;
    animation: shine 3s infinite;
}

@-webkit-keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@-moz-keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.header-content {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    -webkit-animation: fadeInDown 1s ease;
    -moz-animation: fadeInDown 1s ease;
    -o-animation: fadeInDown 1s ease;
    animation: fadeInDown 1s ease;
    -webkit-transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    -webkit-animation: fadeInUp 1s ease;
    -moz-animation: fadeInUp 1s ease;
    -o-animation: fadeInUp 1s ease;
    animation: fadeInUp 1s ease;
    -webkit-transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(30px);
        -moz-transform: translateY(30px);
        -ms-transform: translateY(30px);
        -o-transform: translateY(30px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

/* ===================================
   Main Container
   =================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    /* Add top padding to account for fixed header with buttons */
    padding-top: 280px; /* Increased from 260px for better header clearance */
}

/* Header Buttons Container */
.header-buttons {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ===================================
   Intro Section
   =================================== */

.intro {
    text-align: center;
    margin-bottom: 4rem;
    -webkit-animation: fadeIn 1.5s ease;
    -moz-animation: fadeIn 1.5s ease;
    -o-animation: fadeIn 1.5s ease;
    animation: fadeIn 1.5s ease;
}

@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@-moz-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.intro p {
    font-size: 1.1rem;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   Winter Badge
   =================================== */

.winter-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Gulf Countries WhatsApp Button */
.gulf-whatsapp-btn {
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #25D366;
    background: -webkit-linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    background: -moz-linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    background: -o-linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    padding: 0.6rem 1.2rem;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Alexandria', sans-serif;
    margin: 0.5rem 0 1rem 0;
    text-decoration: none !important;
    -webkit-box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    -moz-box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.gulf-whatsapp-btn:hover,
.gulf-whatsapp-btn:active,
.gulf-whatsapp-btn:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    background: #25D366;
    background: -webkit-linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.gulf-whatsapp-btn svg {
    flex-shrink: 0;
}

/* ===================================
   Snowfall Container
   =================================== */

#snowfall-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

/* ===================================
   Destinations Grid (New Design)
   =================================== */

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* ===================================
   Destination Card Styling (Winter Edition)
   =================================== */

.destination-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

.destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Card Discount Badge */
.card-discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

/* Card Image with Background */
.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Background Images for Each Destination */
.barcelona-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                      url('https://images.unsplash.com/photo-1562883676-8c7feb83f09b?q=80&w=1200');
}

.italy-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                      url('https://images.unsplash.com/photo-1516483638261-f4dbaf036963?q=80&w=1200');
}

.london-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                      url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?q=80&w=1200');
}

.amsterdam-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
                      url('https://images.unsplash.com/photo-1534351590666-13e3e96b5017?q=80&w=1200');
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

/* Card Content Section */
.card-content {
    padding: 2rem;
}

.card-header-new {
    margin-bottom: 1rem;
}

.destination-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.trip-duration {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Card Description */
.card-description-new {
    margin: 1.5rem 0;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Feature Icons */
.card-features-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-icon {
    font-size: 1.5rem;
    cursor: help;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.2);
}

/* Pricing Section */
.card-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 700;
    color: #f5576c;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.season-badge {
    font-size: 0.75rem;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* Animation Delays */
.destination-card:nth-child(1) {
    animation-delay: 0.2s;
}

.destination-card:nth-child(2) {
    animation-delay: 0.4s;
}

.destination-card:nth-child(3) {
    animation-delay: 0.6s;
}

.destination-card:nth-child(4) {
    animation-delay: 0.8s;
}

@-webkit-keyframes slideUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes slideUp {
    from {
        opacity: 0;
        -moz-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -moz-transform: translateY(50px);
        -ms-transform: translateY(50px);
        -o-transform: translateY(50px);
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    background: -moz-linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    -webkit-transition: left 0.6s ease;
    -moz-transition: left 0.6s ease;
    -o-transition: left 0.6s ease;
    transition: left 0.6s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: #333333;
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
    .card:active {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
        -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
}

.card-header {
    background: #000000;
    color: #ffffff;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.card-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.2;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.8;
}

.card-body {
    padding: 2rem;
}

.card-description {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ===================================
   Card Features List
   =================================== */

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f5f5f5;
    color: #000000;
    font-size: 0.95rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.card-features li:hover {
    padding-right: 10px;
    color: #333333;
}

.card-features li::before {
    content: '▪';
    margin-left: 0.5rem;
    color: #000000;
    font-weight: bold;
}

/* ===================================
   Card Statistics
   =================================== */

.card-stats {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f5f5f5;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
}

.stat-label {
    font-size: 0.85rem;
    color: #666666;
    margin-top: 0.25rem;
}

/* ===================================
   Card Button
   =================================== */

.card-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #000000;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #000000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.card-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #ffffff;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: width 0.6s ease, height 0.6s ease;
    -moz-transition: width 0.6s ease, height 0.6s ease;
    -o-transition: width 0.6s ease, height 0.6s ease;
    transition: width 0.6s ease, height 0.6s ease;
}

.card-button:hover::before {
    width: 400px;
    height: 400px;
}

.card-button:hover {
    color: #000000;
}

/* Touch device button feedback */
@media (hover: none) and (pointer: coarse) {
    .card-button:active::before {
        width: 400px;
        height: 400px;
    }

    .card-button:active {
        color: #000000;
    }
}

.card-button span {
    position: relative;
    z-index: 1;
}

/* ===================================
   Footer
   =================================== */

footer {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

footer p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ===================================
   Decorative Elements
   =================================== */

.decorative-line {
    width: 100px;
    height: 3px;
    background: #000000;
    margin: 2rem auto;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    header {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    /* Header buttons responsive */
    .header-buttons {
        gap: 10px;
    }

    .header-buttons button,
    .header-buttons a {
        padding: 8px 18px !important;
        font-size: 12px !important;
    }

    .intro h2 {
        font-size: 1.8rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .winter-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }

    .gulf-whatsapp-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

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

    .destination-card {
        margin: 0 auto;
        max-width: 500px;
    }

    .card-image {
        height: 200px;
    }

    .destination-name {
        font-size: 1.5rem;
    }

    .discounted-price {
        font-size: 1.7rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .container {
        padding: 2rem 1rem;
        padding-top: 300px; /* Increased from 260px - buttons wrap on tablet */
    }

    /* Touch-friendly spacing for mobile */
    .card-features-icons {
        gap: 1.5rem;
        justify-content: space-around;
    }

    .feature-icon {
        font-size: 1.8rem;
    }
}

/* Additional mobile breakpoint for very small screens */
@media (max-width: 480px) {
    header {
        padding: 1rem 0.75rem;
    }

    h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    /* Smaller header buttons on mobile */
    .header-buttons {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }

    .header-buttons button,
    .header-buttons a {
        padding: 8px 16px !important;
        font-size: 11px !important;
        border-radius: 30px !important;
        width: auto;
        max-width: 100%;
    }

    .header-buttons a svg {
        width: 16px !important;
        height: 16px !important;
    }

    .container {
        padding: 1.5rem 1rem;
        /* Increased from 280px - buttons stack on mobile */
        padding-top: 340px;
    }

    .intro h2 {
        font-size: 1.5rem;
    }

    .intro p {
        font-size: 0.95rem;
    }
}

/* ===================================
   Why Choose Us Section - Modern Design
   =================================== */

.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

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

.feature-title {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
}

.feature-description {
    font-size: 1rem;
    color: #333333;
    line-height: 1.7;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Why Choose Section Responsive */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

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

/* ===================================
   Testimonials Section - Dribbble-Style Animation
   =================================== */

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 50%, #f0f2f8 100%);
    overflow: hidden;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Track Wrapper - Creates the viewport */
.testimonials-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0 40px;
    /* Mask edges for premium fade effect */
    -webkit-mask-image: linear-gradient(
        to left,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to left,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

/* The Animated Track */
.testimonials-track {
    display: flex;
    flex-direction: row-reverse; /* RTL support - cards flow right to left */
    gap: 24px;
    width: max-content;
    /* Dribbble-style smooth, premium animation */
    animation: testimonialScroll 45s linear infinite;
    /* Pause on hover for better UX */
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

/* Individual Testimonial Card */
.testimonial-card {
    flex-shrink: 0;
    width: 300px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Avatar */
.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.avatar-initials {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Name */
.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 10px;
}

/* Stars */
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars .star {
    color: #fbbf24;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

/* Testimonial Text */
.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    direction: rtl;
}

/* Keyframes - Dribbble-style smooth infinite scroll */
@-webkit-keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move by 7 cards worth (7 * (300px width + 24px gap)) = 2268px */
        transform: translateX(2268px);
    }
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move by 7 cards worth for seamless loop */
        transform: translateX(2268px);
    }
}

/* Testimonials Responsive - Tablet */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 60px 0;
    }

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

    .testimonial-card {
        width: 280px;
        padding: 24px 20px;
    }

    @-webkit-keyframes testimonialScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(2128px); } /* 7 * (280 + 24) */
    }

    @keyframes testimonialScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(2128px); }
    }
}

/* Testimonials Responsive - Mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }

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

    .testimonials-title {
        font-size: 1.7rem;
    }

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

    .testimonials-track-wrapper {
        padding: 20px 0 30px;
        -webkit-mask-image: linear-gradient(
            to left,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to left,
            transparent 0%,
            black 5%,
            black 95%,
            transparent 100%
        );
    }

    .testimonials-track {
        gap: 18px;
        animation-duration: 35s;
    }

    .testimonial-card {
        width: 260px;
        padding: 22px 18px;
        border-radius: 16px;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .avatar-initials {
        font-size: 1rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    @-webkit-keyframes testimonialScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(1946px); } /* 7 * (260 + 18) */
    }

    @keyframes testimonialScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(1946px); }
    }
}

/* Testimonials Responsive - Small Mobile */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-header {
        margin-bottom: 25px;
    }

    .testimonials-title {
        font-size: 1.5rem;
    }

    .testimonials-subtitle {
        font-size: 0.9rem;
    }

    .testimonials-track-wrapper {
        padding: 15px 0 25px;
    }

    .testimonials-track {
        gap: 14px;
        animation-duration: 30s;
    }

    .testimonial-card {
        width: 240px;
        padding: 20px 16px;
        border-radius: 14px;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
    }

    .avatar-initials {
        font-size: 0.9rem;
    }

    .testimonial-name {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .testimonial-stars {
        margin-bottom: 10px;
    }

    .testimonial-stars .star {
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    @-webkit-keyframes testimonialScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(1778px); } /* 7 * (240 + 14) */
    }

    @keyframes testimonialScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(1778px); }
    }
}

/* Touch device optimization for testimonials */
@media (hover: none) and (pointer: coarse) {
    .testimonials-track {
        /* Slightly slower on touch devices for better readability */
        animation-duration: 50s;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .testimonials-track {
        animation: none;
    }
}

/* ===================================
   Safari iOS Specific Fixes
   =================================== */

@supports (-webkit-touch-callout: none) {
    body {
        /* iOS Safari specific */
        -webkit-overflow-scrolling: touch;
    }

    .card-button {
        cursor: pointer;
    }
}

/* ===================================
   Print Styles
   =================================== */

@media print {
    header::before,
    .card::before,
    .card-button::before {
        display: none;
    }

    .card {
        page-break-inside: avoid;
    }
}
