/* التصميم الثالث - التصميم البنفسجي العصري */
/* Global Styles */
:root {
    --primary-color: #8b5cf6; /* بنفسجي */
    --primary-hover: #7c3aed;
    --secondary-color: #ec4899;
    --secondary-hover: #db2777;
    --dark-bg: #1a1625;
    --dark-card: #2d1b3d;
    --dark-text: #f3e8ff;
    --light-bg: #faf7ff;
    --light-text: #4c1d95;
    --light-card: #ffffff;
    --whatsapp: #25d366;
    --whatsapp-hover: #128c7e;
    --accent-color: #f3e8ff;
    --border-color: #d8b4fe;
    --shadow-light: rgba(139, 92, 246, 0.15);
    --shadow-dark: rgba(139, 92, 246, 0.4);
}

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--light-text);
    background: linear-gradient(135deg, #faf7ff 0%, #f3e8ff 100%);
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d1b3d 100%);
}

/* Header & Navigation - Curved Design */
.navbar {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px var(--shadow-light);
    transition: all 0.3s ease;
    border: none;
    border-radius: 0 0 30px 30px;
    margin-bottom: 20px;
}

body.dark-mode .navbar {
    background: rgba(45, 27, 61, 0.95) !important;
    box-shadow: 0 8px 32px var(--shadow-dark);
}

.navbar-brand .logo-text {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Tajawal', sans-serif;
}

.navbar-brand img {
    height: 50px;
    margin-left: 15px;
    filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.3));
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 600;
    padding: 1rem 1.5rem !important;
    transition: all 0.4s ease;
    border-radius: 20px;
    margin: 0 5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    transform: translateY(-3px);
}

body.dark-mode .nav-link {
    color: var(--dark-text) !important;
}

/* Hero Section - Organic Shapes */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    overflow: hidden;
    border-radius: 0 0 50px 50px;
    margin-bottom: 30px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 30s linear infinite;
    z-index: 1;
}

@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Buttons - Soft Rounded Style */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px var(--shadow-light);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    font-weight: 700;
    padding: 16px 38px;
    border-radius: 50px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.9);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255,255,255,0.4);
}

/* Cards - Soft Shadows & Rounded */
.card {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: none;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px var(--shadow-light);
}

body.dark-mode .card {
    background: rgba(45, 27, 61, 0.9);
    box-shadow: 0 10px 40px var(--shadow-dark);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px var(--shadow-light);
}

body.dark-mode .card:hover {
    box-shadow: 0 25px 50px var(--shadow-dark);
}

/* Footer - Wave Design */
.bg-dark {
    background: linear-gradient(135deg, #2d1b3d, #1a1625) !important;
    position: relative;
    border-radius: 50px 50px 0 0;
    margin-top: 50px;
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(135deg, #2d1b3d, #1a1625);
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: 1;
}

.bg-dark .container {
    position: relative;
    z-index: 2;
}

/* Package Cards Theme 3 Specific */
.premium-package-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(243, 232, 255, 0.8));
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px var(--shadow-light);
}

body.dark-mode .premium-package-card {
    background: linear-gradient(145deg, rgba(45, 27, 61, 0.95), rgba(26, 22, 37, 0.8));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.package-price {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.3));
}

/* Section Headers - Artistic Style */
.section-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    padding-bottom: 25px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}

.section-title::before {
    content: '✦';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Features Section - Floating Icons */
.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px var(--shadow-light);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-icon:hover::before {
    opacity: 0.3;
}

.feature-icon:hover {
    transform: translateY(-10px) rotate(10deg) scale(1.1);
    box-shadow: 0 20px 40px var(--shadow-light);
}

/* Theme 3 Specific Classes */
.theme3-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.theme3-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
}

.theme3-shadow {
    box-shadow: 0 15px 40px var(--shadow-light);
}

.theme3-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme3-rounded {
    border-radius: 25px;
}

/* Floating Animation */
.theme3-float {
    animation: float3 6s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        border-radius: 0 0 20px 20px;
        margin-bottom: 10px;
    }
    
    .navbar-brand .logo-text {
        font-size: 2rem;
    }
    
    .hero-section {
        border-radius: 0 0 30px 30px;
        margin-bottom: 20px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        border-radius: 20px;
    }
    
    .bg-dark {
        border-radius: 30px 30px 0 0;
        margin-top: 30px;
    }
}

/* Theme 3 Header Specific Styles */
.theme-3 .navbar {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(25px);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 0 0 40px 40px;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
    position: relative;
}

.theme-3 .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 0 40px 40px;
}

.theme-3 .navbar-brand .logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.3));
}

.theme-3 .navbar-brand .logo-text::after {
    content: '✨';
    position: absolute;
    top: -10px;
    left: -35px;
    font-size: 1.8rem;
    animation: sparkle3 3s ease-in-out infinite;
}

@keyframes sparkle3 {
    0%, 100% { opacity: 0.6; transform: rotate(0deg) scale(1); }
    50% { opacity: 1; transform: rotate(180deg) scale(1.3); }
}

.theme-3 .nav-link {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.theme-3 .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .nav-link:hover::before {
    width: 120%;
    height: 120%;
}

.theme-3 .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Theme 3 Footer Specific Styles */
.theme-3 .bg-dark {
    background: linear-gradient(135deg, #2d1b3d, #1a1625) !important;
    border-radius: 50px 50px 0 0;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.theme-3 .bg-dark::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(135deg, #2d1b3d, #1a1625);
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: 1;
}

.theme-3 .bg-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.theme-3 .bg-dark .container {
    position: relative;
    z-index: 2;
}

.theme-3 .bg-dark h5 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
}

.theme-3 .bg-dark h5::before {
    content: '◆';
    position: absolute;
    top: 0;
    right: -25px;
    color: var(--secondary-color);
    font-size: 1.2rem;
    animation: pulse3 2s ease-in-out infinite;
}

@keyframes pulse3 {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.theme-3 .bg-dark a {
    transition: all 0.4s ease;
    position: relative;
    padding: 5px 10px;
    border-radius: 15px;
}

.theme-3 .bg-dark a:hover {
    color: #f3e8ff !important;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    transform: translateX(-10px);
}

.theme-3 .social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.theme-3 .social-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .social-icons a:hover::before {
    width: 200%;
    height: 200%;
}

.theme-3 .social-icons a:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
}

/* Theme 3 Package Cards Specific Styles */
.theme-3 .premium-package-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(243, 232, 255, 0.9));
    border: 2px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.theme-3 .premium-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.theme-3 .premium-package-card:hover::before {
    opacity: 1;
}

.theme-3 .premium-package-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

.theme-3 .package-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.theme-3 .package-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4));
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.theme-3 .premium-package-card:hover .package-image-wrapper::before {
    opacity: 1;
}

.theme-3 .package-image-wrapper::after {
    content: '✨';
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3rem;
    z-index: 3;
    animation: sparkle3-package 4s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.5));
}

@keyframes sparkle3-package {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.8; }
    25% { transform: rotate(90deg) scale(1.2); opacity: 1; }
    50% { transform: rotate(180deg) scale(1); opacity: 0.8; }
    75% { transform: rotate(270deg) scale(1.2); opacity: 1; }
}

.theme-3 .package-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    text-align: center;
}

.theme-3 .package-title::before {
    content: '◆';
    position: absolute;
    top: 0;
    right: -20px;
    color: var(--secondary-color);
    font-size: 1rem;
    animation: pulse3-title 2s ease-in-out infinite;
}

@keyframes pulse3-title {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.theme-3 .package-price {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 2.2rem;
    position: relative;
    text-align: center;
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.3));
}

.theme-3 .package-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: float3-price 6s ease-in-out infinite;
}

@keyframes float3-price {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.theme-3 .package-info-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.theme-3 .package-info-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .package-info-icon:hover::before {
    width: 200%;
    height: 200%;
}

.theme-3 .package-info-icon:hover {
    transform: scale(1.2) rotate(20deg);
    border-radius: 50%;
}

.theme-3 .btn-book-now {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 800;
    padding: 18px 35px;
    border-radius: 50px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.theme-3 .btn-book-now::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .btn-book-now:hover::before {
    width: 300px;
    height: 300px;
}

.theme-3 .btn-book-now:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.5);
}

/* Theme 3 Hotel Cards Specific Styles */
.theme-3 .hotel-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(243, 232, 255, 0.9));
    border: 2px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
    transition: all 0.6s ease;
    position: relative;
}

.theme-3 .hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.theme-3 .hotel-card:hover::before {
    opacity: 1;
}

.theme-3 .hotel-card:hover {
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 25px 55px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

.theme-3 .hotel-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    border-radius: 25px 25px 0 0;
}

.theme-3 .hotel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(236, 72, 153, 0.4));
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.theme-3 .hotel-card:hover .hotel-image::before {
    opacity: 1;
}

.theme-3 .hotel-image::after {
    content: '🏰';
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3rem;
    z-index: 3;
    animation: castle3 5s ease-in-out infinite;
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.5));
}

@keyframes castle3 {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.9; }
    25% { transform: rotate(5deg) scale(1.1); opacity: 1; }
    50% { transform: rotate(0deg) scale(1); opacity: 0.9; }
    75% { transform: rotate(-5deg) scale(1.1); opacity: 1; }
}

.theme-3 .hotel-stars {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
    font-weight: 900;
    margin: 18px 0;
    position: relative;
    text-align: center;
}

.theme-3 .hotel-stars::before {
    content: '✨';
    position: absolute;
    right: -30px;
    top: 0;
    font-size: 1.2rem;
    animation: sparkle3-stars 3s ease-in-out infinite;
}

@keyframes sparkle3-stars {
    0%, 100% { opacity: 0.7; transform: rotate(0deg) scale(1); }
    50% { opacity: 1; transform: rotate(180deg) scale(1.3); }
}

.theme-3 .hotel-name {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.theme-3 .hotel-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.theme-3 .hotel-location {
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
    position: relative;
    padding: 8px 15px;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 20px;
}

.theme-3 .hotel-location::before {
    content: '🌟';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.theme-3 .hotel-price {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.3));
}

.theme-3 .hotel-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: float3-hotel-price 6s ease-in-out infinite;
}

@keyframes float3-hotel-price {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

.theme-3 .hotel-distance {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    color: var(--primary-color);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.theme-3 .hotel-distance::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .hotel-distance:hover::before {
    width: 200%;
    height: 200%;
}

.theme-3 .btn-hotel-details {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.5s ease;
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.theme-3 .btn-hotel-details::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .btn-hotel-details:hover::before {
    width: 300px;
    height: 300px;
}

.theme-3 .btn-hotel-details:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
}

/* Theme 3 Feature Icons Styles */
.theme-3 .feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(243, 232, 255, 0.9));
    border: 2px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    transition: all 0.5s ease;
}

.theme-3 .feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

.theme-3 .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

.theme-3 .feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .feature-card:hover .feature-icon::before {
    width: 200%;
    height: 200%;
}

.theme-3 .feature-card:hover .feature-icon {
    transform: translateY(-10px) scale(1.15) rotate(15deg);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.5);
    border-radius: 50%;
}

/* Theme 3 Package Icons Styles - Compact Vertical Layout */
.theme-3 .package-icons-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 25px;
    border: 2px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.theme-3 .package-icons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    z-index: 1;
    animation: float3-bg 10s ease-in-out infinite;
}

@keyframes float3-bg {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 1; }
}

.theme-3 .package-icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    padding: 10px 15px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    transition: all 0.5s ease;
}

.theme-3 .package-icon-item:nth-child(even) {
    flex-direction: row-reverse;
}

.theme-3 .package-icon-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.theme-3 .package-icon-item:nth-child(even):hover {
    transform: translateX(-8px);
}

.theme-3 .package-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
    flex-shrink: 0;
}

.theme-3 .package-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .package-icon:hover::before {
    width: 200%;
    height: 200%;
}

.theme-3 .package-icon:hover {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.6);
}

.theme-3 .package-icon-title {
    font-size: 0.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    transition: all 0.4s ease;
    flex: 1;
}

.theme-3 .package-icon-item:hover .package-icon-title {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.3));
}

/* Theme 3 Testimonials Styles - Elegant Floating Layout */
.theme-3 .testimonials-section {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.05));
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    margin: 40px 0;
}

.theme-3 .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    z-index: 1;
    animation: float3-testimonials 12s ease-in-out infinite;
}

@keyframes float3-testimonials {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    33% { transform: scale(1.05) rotate(2deg); opacity: 0.9; }
    66% { transform: scale(1.02) rotate(-2deg); opacity: 1; }
}

.theme-3 .testimonials-section .container {
    position: relative;
    z-index: 2;
}

.theme-3 .testimonials-section .section-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    margin-bottom: 70px;
    text-align: center;
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.3));
}

.theme-3 .testimonials-section .section-title::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: sparkle3-testimonials 3s ease-in-out infinite;
}

@keyframes sparkle3-testimonials {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) rotate(0deg) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) rotate(180deg) scale(1.3); }
}

.theme-3 .testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: float3-line 6s ease-in-out infinite;
}

@keyframes float3-line {
    0%, 100% { width: 120px; }
    50% { width: 150px; }
}

.theme-3 .testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.theme-3 .testimonials-list .card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(243, 232, 255, 0.9));
    border: 2px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(25px);
    border-radius: 35px;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.theme-3 .testimonials-list .card:nth-child(even) {
    margin-right: 50px;
}

.theme-3 .testimonials-list .card:nth-child(odd) {
    margin-left: 50px;
}

.theme-3 .testimonials-list .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.theme-3 .testimonials-list .card:hover::before {
    opacity: 1;
}

.theme-3 .testimonials-list .card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-color);
}

.theme-3 .testimonials-list .card-body {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.theme-3 .testimonial-rating {
    margin-bottom: 30px;
    text-align: center;
}

.theme-3 .testimonial-rating .fa-star {
    font-size: 1.6rem;
    margin: 0 3px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 1px 2px rgba(251, 191, 36, 0.3));
}

.theme-3 .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.08));
    border-radius: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    font-style: italic;
}

.theme-3 .testimonial-text::before {
    content: '💜';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse3-heart 3s ease-in-out infinite;
}

@keyframes pulse3-heart {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.2); }
}

.theme-3 .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.theme-3 .testimonial-author .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.6rem;
    color: white;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

.theme-3 .testimonial-author .avatar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .testimonial-author .avatar:hover::before {
    width: 200%;
    height: 200%;
}

.theme-3 .testimonial-author .avatar:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.5);
}

.theme-3 .testimonial-author h5 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 8px;
    filter: drop-shadow(1px 1px 2px rgba(139, 92, 246, 0.3));
}

.theme-3 .testimonial-author small {
    color: #6b7280;
    font-weight: 600;
}

/* Theme 3 Review Form Styles */
.theme-3 .review-form-section {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 40px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.theme-3 .review-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    z-index: 1;
    animation: float3-form 10s ease-in-out infinite;
}

@keyframes float3-form {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(3deg); }
}

.theme-3 .review-form-section .container {
    position: relative;
    z-index: 2;
}

.theme-3 .review-form-section h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 35px;
    text-align: center;
    filter: drop-shadow(2px 2px 4px rgba(139, 92, 246, 0.3));
}

.theme-3 .review-form-section .form-control {
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    padding: 18px 25px;
    transition: all 0.5s ease;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);
}

.theme-3 .review-form-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(139, 92, 246, 0.1);
    background: rgba(255,255,255,1);
    transform: scale(1.02);
}

.theme-3 .review-form-section .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.theme-3 .review-form-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .review-form-section .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.theme-3 .review-form-section .btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.5);
}

/* Theme 3 WhatsApp Button Styles - Elegant Purple */
.theme-3 .btn-premium-whatsapp {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: white;
    font-weight: 800;
    padding: 20px 35px;
    border-radius: 50px;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(15px);
}

.theme-3 .btn-premium-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.theme-3 .btn-premium-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.theme-3 .btn-premium-whatsapp:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.5);
    border-color: var(--primary-color);
}

.theme-3 .btn-premium-whatsapp i {
    margin-left: 12px;
    font-size: 1.4rem;
    animation: float3-whatsapp 4s ease-in-out infinite;
}

@keyframes float3-whatsapp {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(5deg); }
    50% { transform: translateY(0px) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-5deg); }
}

/* Theme 3 Floating WhatsApp Button */
.theme-3 .whatsapp-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4) !important;
    backdrop-filter: blur(15px) !important;
}

.theme-3 .whatsapp-button:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
    transform: scale(1.2) rotate(15deg) !important;
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.6) !important;
}
