/* Base CSS with RTL support and color variables */
:root {
    --primary-color: #e30613; /* Red color */
    --secondary-color: #ffffff; /* White color */
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
/* Header Styles */
.site-header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

/* Logo */
.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 60px;
    width: auto;
    transition: height var(--transition-speed) ease;
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    padding: 10px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.main-nav a:hover::after,
.main-nav li.active a::after {
    width: 100%;
}

.main-nav li.active a {
    color: var(--primary-color);
}

/* Header Contact Info */
.header-contact {
    display: flex;
    gap: 20px;
}

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

.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.contact-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .header-contact {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
        order: 3;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: var(--secondary-color);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-speed) ease;
        opacity: 0;
        visibility: hidden;
    }
    
    .main-nav.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
}

@media screen and (max-width: 576px) {
    .logo img {
        height: 45px;
    }
    
    .header-wrapper {
        padding: 10px 0;
    }
}

/* Small Header on Scroll */
.site-header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.site-header.scrolled .logo img {
    height: 45px;
}

/* Main Content Padding for Fixed Header */
main {
    padding-top: 90px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 550px;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease, visibility 1.5s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Simplified overlay */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding-top: 60px;
    max-width: 700px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

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

.hero-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-right: 3px solid var(--primary-color);
}

.hero-tag span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-tag i {
    color: var(--primary-color);
    margin-left: 6px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(227, 6, 19, 0.3);
    z-index: -1;
    transform: skewX(-10deg);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 6, 19, 0.3);
}

.hero-buttons {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.promo-tag {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    position: relative;
    padding-right: 20px;
}

.promo-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.promo-tag .discount {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
}

.promo-tag .period {
    font-size: 14px;
    opacity: 0.9;
}

/* Destination Features */
.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    max-width: 600px;
}

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

.feature-item i {
    font-size: 22px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.feature-item:hover i {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.feature-item span {
    font-size: 15px;
    font-weight: 600;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 100%;
    z-index: 10;
}

.slider-progressbar {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    margin-bottom: 20px;
}

.progress-fill {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: var(--primary-color);
    width: 0;
    transition: width 0.1s linear;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.prev-slide, .next-slide {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide:hover, .next-slide:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    transition: all var(--transition-speed) ease;
    opacity: 0;
}

.dot.active {
    background-color: var(--primary-color);
}

.dot.active::before {
    transform: translate(50%, -50%) scale(1);
    opacity: 1;
}

/* Social Links */
.social-links {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateX(5px);
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 10;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.scroll-down span {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-down i {
    font-size: 18px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-down:hover {
    transform: translateY(5px);
}

/* Animations */
.animated {
    opacity: 0;
}

.fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

.fadeInRight {
    animation: fadeInRight 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

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

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .hero-content {
        max-width: 600px;
    }
    
    .hero-content h1 {
        font-size: 50px;
    }
}

@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .social-links {
        left: 20px;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 90vh;
    }
    
    .hero-content {
        padding-top: 80px;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .destination-features {
        gap: 15px;
        padding: 15px;
    }
    
    .feature-item i {
        font-size: 18px;
        width: 35px;
        height: 35px;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    
    .social-links {
        top: auto;
        bottom: 30px;
        left: auto;
        right: 30px;
        flex-direction: row;
        transform: none;
    }
    
    .scroll-down {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-tag {
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    
    .hero-tag span {
        font-size: 12px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .promo-tag .discount {
        font-size: 18px;
    }
    
    .promo-tag .period {
        font-size: 12px;
    }
    
    .destination-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .feature-item {
        flex: 0 0 48%;
        margin-bottom: 10px;
    }
    
    .prev-slide, .next-slide {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* General Section Styles */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title span {
    color: var(--primary-color);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(227, 6, 19, 0.1);
    z-index: -1;
}

.section-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.section-line span {
    display: inline-block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    position: relative;
    border-radius: 2px;
}

.section-line span::before,
.section-line span::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-line span::before {
    right: -10px;
}

.section-line span::after {
    left: -10px;
}

/* About Section */
.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 0 0 45%;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    transform: scale(1.05);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-container:hover img {
    transform: scale(1.5);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.about-content {
    flex: 0 0 50%;
}

.about-heading h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.about-heading .lead {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #666;
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: all var(--transition-speed) ease;
}

.feature:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-with-icon i {
    transition: transform var(--transition-speed) ease;
}

.btn-with-icon:hover i {
    transform: translateX(-5px);
}

/* Services Section */
.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.5s ease;
    z-index: -1;
}

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

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.service-features span {
    font-size: 13px;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 20px;
    font-weight: 600;
    color: #555;
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-features span {
    background-color: rgba(227, 6, 19, 0.1);
    color: var(--primary-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.service-link i {
    transition: transform var(--transition-speed) ease;
}

.service-link:hover i {
    transform: translateX(-5px);
}

/* CTA Container */
.cta-container {
    background-color: var(--primary-color);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.2);
}

.cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.cta-container .btn {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-container .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .section-title {
        font-size: 36px;
    }
    
    .about-heading h3 {
        font-size: 26px;
    }
}

@media screen and (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .about-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-image,
    .about-content {
        flex: 0 0 100%;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .about-heading h3 {
        font-size: 22px;
    }
    
    .about-heading .lead {
        font-size: 16px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
}

/* Animation Classes */
.service-card, .about-image, .about-content, .feature {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card.animate, .about-image.animate, .about-content.animate, .feature.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-image.animate {
    transition-delay: 0.2s;
}

.about-content.animate {
    transition-delay: 0.4s;
}

.feature.animate:nth-child(1) {
    transition-delay: 0.5s;
}

.feature.animate:nth-child(2) {
    transition-delay: 0.6s;
}

.feature.animate:nth-child(3) {
    transition-delay: 0.7s;
}

.feature.animate:nth-child(4) {
    transition-delay: 0.8s;
}

.service-card.animate:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card.animate:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card.animate:nth-child(4) {
    transition-delay: 0.4s;
}

.service-card.animate:nth-child(5) {
    transition-delay: 0.5s;
}

.service-card.animate:nth-child(6) {
    transition-delay: 0.6s;
}

/* Utilities */
.text-center {
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Destinations Section */
.destination-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.tabs-nav li {
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    background-color: #f5f5f5;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.tabs-nav li.active,
.tabs-nav li:hover {
    background-color: var(--primary-color);
    color: white;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.destination-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all var(--transition-speed) ease;
}

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

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

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

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

.destination-rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    align-self: flex-start;
}

.destination-rating i {
    color: #FFD700;
}

.destination-btn {
    align-self: center;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 20px rgba(227, 6, 19, 0.3);
}

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

.destination-price {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-top-left-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination-price span {
    font-size: 12px;
    opacity: 0.9;
}

.destination-price strong {
    font-size: 18px;
    font-weight: 700;
}

.destination-ribbon {
    position: absolute;
    top: 20px;
    left: -5px;
    background-color: #FFD700;
    color: #333;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.destination-ribbon::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    border-width: 0 5px 5px 0;
    border-style: solid;
    border-color: transparent #b39700 transparent transparent;
}

.destination-body {
    padding: 20px;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.destination-meta span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.destination-meta i {
    color: var(--primary-color);
}

.destination-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.destination-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.destination-features span {
    font-size: 12px;
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    transition: all var(--transition-speed) ease;
}

.destination-features span i {
    color: var(--primary-color);
}

.destination-card:hover .destination-features span {
    background-color: rgba(227, 6, 19, 0.1);
}

/* Offers Section */
.offers-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all var(--transition-speed) ease;
}

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

.offer-header {
    position: relative;
}

.offer-image {
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.offer-discount {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
    line-height: 1;
}

.offer-discount span {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
}

.offer-discount h4 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.offer-body {
    padding: 25px;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background-color: #ffdc1c;
    color: #333;
    border-radius: 30px;
    padding: 5px 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.offer-badge.special {
    background-color: #ff5722;
    color: white;
}

.countdown {
    font-weight: 700;
    color: var(--primary-color);
}

.offer-badge.special .countdown {
    color: white;
}

.offer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.offer-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight i {
    color: var(--primary-color);
    font-size: 16px;
}

.highlight span {
    font-size: 14px;
    color: #444;
}

.offer-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.new-price {
    display: flex;
    flex-direction: column;
}

.new-price strong {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.new-price span {
    font-size: 14px;
    color: #666;
}

.old-price {
    position: relative;
}

.old-price span {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

/* Responsive styles for destinations and offers */
@media screen and (max-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .offers-slider {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .offers-slider {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .destination-image {
        height: 220px;
    }
}

@media screen and (max-width: 576px) {
    .tabs-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    
    .tabs-nav li {
        white-space: nowrap;
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .destination-image {
        height: 200px;
    }
    
    .offer-highlights {
        grid-template-columns: 1fr;
    }
}

/* Animation for destination and offer cards */
.destination-card, .offer-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.destination-card.animate, .offer-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.destination-card.animate:nth-child(2),
.offer-card.animate:nth-child(2) {
    transition-delay: 0.2s;
}

.destination-card.animate:nth-child(3),
.offer-card.animate:nth-child(3) {
    transition-delay: 0.3s;
}

.destination-card.animate:nth-child(4),
.offer-card.animate:nth-child(4) {
    transition-delay: 0.4s;
}

.destination-card.animate:nth-child(5) {
    transition-delay: 0.5s;
}

.destination-card.animate:nth-child(6) {
    transition-delay: 0.6s;
}
/* Testimonials Section */
.testimonials-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/1920x1000?text=Background');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: white;
}

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote-icon {
    position: absolute;
    top: -30px;
    right: -20px;
    font-size: 80px;
    color: rgba(227, 6, 19, 0.2);
    z-index: 1;
}

.testimonials-slider {
    position: relative;
    z-index: 2;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 0 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-rating {
    color: #FFD700;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 80px;
    gap: 20px;
}

.stat-item {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: all var(--transition-speed) ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: var(--primary-color);
}

.stat-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all var(--transition-speed) ease;
}

.stat-item:hover .stat-icon {
    color: white;
}

.stat-info h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.stat-info span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-speed) ease;
}

.stat-item:hover .stat-info span {
    color: white;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
}

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

.card-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(227, 6, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.card-content p:last-child {
    margin-bottom: 0;
}

.social-media {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.social-media h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 16px;
    transition: all var(--transition-speed) ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form-container {
    flex: 0 0 60%;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-container h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group:nth-child(5) {
    grid-column: span 2;
}

.form-group:last-of-type + button {
    grid-column: span 2;
    margin-top: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.form-note i {
    color: var(--primary-color);
    font-size: 18px;
}

.form-note p {
    font-size: 13px;
    color: #666;
}

.map-container {
    margin-top: 60px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-map {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.placeholder-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #fff;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

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

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: var(--primary-color);
}

.footer-contact-item span {
    font-size: 14px;
    color: #bbb;
}

.footer-links h3,
.footer-destinations h3,
.footer-newsletter h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-destinations h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-destinations ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a,
.footer-destinations ul li a {
    color: #bbb;
    font-size: 14px;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.footer-links ul li a:hover,
.footer-destinations ul li a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.footer-links ul li a::before,
.footer-destinations ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-speed) ease;
}

.footer-links ul li a:hover::before,
.footer-destinations ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-newsletter p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #444;
    background-color: #333;
    color: white;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 5px 0px 0px 5px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.newsletter-form button:hover {
    background-color: #c7050f;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    background-color: #333;
    color: #bbb;
    font-size: 14px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #333;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 14px;
    color: #999;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-payments span {
    font-size: 14px;
    color: #999;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #c7050f;
    transform: translateY(-5px);
}

/* Responsive Styles for Testimonials and Contact */
@media screen and (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form-container {
        flex: 0 0 100%;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-media {
        grid-column: span 2;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-media {
        grid-column: span 1;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(5) {
        grid-column: span 1;
    }
    
    .form-group:last-of-type + button {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-info h3 {
        font-size: 30px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Animation for testimonials and contact */
.testimonial-item, .contact-card, .contact-form-container, .stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.testimonial-item.animate, .contact-card.animate, .contact-form-container.animate, .stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-card.animate:nth-child(2),
.stat-item.animate:nth-child(2) {
    transition-delay: 0.2s;
}

.contact-card.animate:nth-child(3),
.stat-item.animate:nth-child(3) {
    transition-delay: 0.3s;
}

.contact-card.animate:nth-child(4),
.stat-item.animate:nth-child(4) {
    transition-delay: 0.4s;
}

.contact-form-container.animate {
    transition-delay: 0.3s;
}

.whatsapp-floating-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.whatsapp-floating-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

/* Shine effect */
.whatsapp-floating-button a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,rgba(255,255,255,0.7),transparent);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.whatsapp-floating-button a:hover::before {
    left: 120%;
}

/* Icon Circle */
.w-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

/* Hover Animations */
.whatsapp-floating-button a:hover {
    transform: scale(1.09) translateY(-4px);
    box-shadow: 0 15px 35px rgba(37,211,102,0.6);
}

/* Pulse wave */
.whatsapp-floating-button::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    bottom: -5px;
    left: -10px;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {transform: scale(1); opacity: .8;}
    100% {transform: scale(1.8); opacity: 0;}
}


