/* التصميم الرابع - التصميم الذهبي الفاخر */
/* Global Styles */
:root {
    --primary-color: #d97706; /* ذهبي */
    --primary-hover: #b45309;
    --secondary-color: #dc2626;
    --secondary-hover: #b91c1c;
    --dark-bg: #1c1917;
    --dark-card: #292524;
    --dark-text: #fef3c7;
    --light-bg: #fffbeb;
    --light-text: #92400e;
    --light-card: #ffffff;
    --whatsapp: #25d366;
    --whatsapp-hover: #128c7e;
    --accent-color: #fef3c7;
    --border-color: #fbbf24;
    --shadow-light: rgba(217, 119, 6, 0.2);
    --shadow-dark: rgba(217, 119, 6, 0.4);
    --gold-gradient: linear-gradient(135deg, #fbbf24, #d97706, #b45309);
}

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    text-align: right;
    color: var(--light-text);
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fed7aa 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%, #292524 50%, #1c1917 100%);
}

/* Header & Navigation - Luxury Design */
.navbar {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(254, 243, 199, 0.9)) !important;
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px var(--shadow-light), inset 0 1px 0 rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-bottom: 3px solid var(--primary-color);
}

body.dark-mode .navbar {
    background: linear-gradient(135deg, rgba(41, 37, 36, 0.95), rgba(28, 25, 23, 0.9)) !important;
    box-shadow: 0 8px 32px var(--shadow-dark), inset 0 1px 0 rgba(217, 119, 6, 0.3);
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.navbar-brand .logo-text {
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Tajawal', sans-serif;
    text-shadow: 2px 2px 4px rgba(217, 119, 6, 0.3);
    position: relative;
}

.navbar-brand .logo-text::after {
    content: '✨';
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

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

.navbar-brand img {
    height: 55px;
    margin-left: 15px;
    filter: drop-shadow(0 4px 8px rgba(217, 119, 6, 0.4));
}

.nav-link {
    color: var(--light-text) !important;
    font-weight: 700;
    padding: 1rem 2rem !important;
    transition: all 0.4s ease;
    border-radius: 15px;
    margin: 0 5px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-light);
}

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

/* Hero Section - Royal Design */
.hero-section {
    background: var(--gold-gradient);
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #b45309;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="royal" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23royal)"/></svg>') repeat;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 1;
}

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

/* Buttons - Premium Style */
.btn-primary {
    background: linear-gradient(135deg, #ffffff, #fef3c7);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 800;
    padding: 20px 45px;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px var(--shadow-light);
    border-color: #b45309;
}

.btn-secondary {
    background: transparent;
    border: 3px solid rgba(255,255,255,0.8);
    color: white;
    font-weight: 800;
    padding: 17px 42px;
    border-radius: 15px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    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 40px rgba(255,255,255,0.5);
    border-color: white;
}

/* Cards - Luxury Style */
.card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 2px solid rgba(217, 119, 6, 0.2);
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(254, 243, 199, 0.8));
    backdrop-filter: blur(20px);
    box-shadow: 0 12px 40px var(--shadow-light), inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 1;
}

body.dark-mode .card {
    background: linear-gradient(145deg, rgba(41, 37, 36, 0.95), rgba(28, 25, 23, 0.8));
    border: 2px solid rgba(217, 119, 6, 0.3);
    box-shadow: 0 12px 40px var(--shadow-dark), inset 0 1px 0 rgba(217, 119, 6, 0.2);
}

.card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px var(--shadow-light), inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: var(--primary-color);
}

body.dark-mode .card:hover {
    box-shadow: 0 25px 60px var(--shadow-dark), inset 0 1px 0 rgba(217, 119, 6, 0.4);
}

/* Footer - Elegant Design */
.bg-dark {
    background: linear-gradient(135deg, #292524, #1c1917) !important;
    position: relative;
    border-top: 5px solid var(--primary-color);
}

.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="luxury" width="60" height="60" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="rgba(217,119,6,0.1)"/><circle cx="15" cy="15" r="0.5" fill="rgba(217,119,6,0.05)"/><circle cx="45" cy="45" r="0.5" fill="rgba(217,119,6,0.05)"/></pattern></defs><rect width="60" height="60" fill="url(%23luxury)"/></svg>') repeat;
    z-index: 1;
}

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

/* Package Cards Theme 4 Specific */
.premium-package-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(254, 243, 199, 0.9));
    border: 2px solid rgba(217, 119, 6, 0.3);
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 50px var(--shadow-light), inset 0 1px 0 rgba(255,255,255,0.8);
}

body.dark-mode .premium-package-card {
    background: linear-gradient(145deg, rgba(41, 37, 36, 0.98), rgba(28, 25, 23, 0.9));
    border: 2px solid rgba(217, 119, 6, 0.4);
}

.package-price {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    filter: drop-shadow(2px 2px 4px rgba(217, 119, 6, 0.4));
    position: relative;
}

.package-price::after {
    content: '👑';
    position: absolute;
    top: -10px;
    left: -30px;
    font-size: 1.2rem;
    animation: crown 3s ease-in-out infinite;
}

@keyframes crown {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

/* Section Headers - Royal Typography */
.section-title {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    padding-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 120px;
    height: 8px;
    background: var(--gold-gradient);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.section-title::before {
    content: '◆';
    position: absolute;
    bottom: -20px;
    right: 50%;
    transform: translateX(50%);
    color: var(--primary-color);
    font-size: 2rem;
    text-shadow: 0 2px 8px var(--shadow-light);
}

/* Features Section - Diamond Icons */
.feature-icon {
    background: var(--gold-gradient);
    color: white;
    width: 90px;
    height: 90px;
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 30px;
    transition: all 0.6s ease;
    box-shadow: 0 15px 40px var(--shadow-light);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gold-gradient);
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-icon:hover {
    transform: translateY(-15px) rotate(45deg) scale(1.15);
    box-shadow: 0 25px 50px var(--shadow-light);
}

/* Theme 4 Specific Classes */
.theme4-gradient {
    background: var(--gold-gradient);
}

.theme4-luxury {
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(254, 243, 199, 0.1));
    backdrop-filter: blur(25px);
    border: 2px solid rgba(217, 119, 6, 0.3);
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light), inset 0 1px 0 rgba(255,255,255,0.5);
}

.theme4-shadow {
    box-shadow: 0 20px 50px var(--shadow-light);
}

.theme4-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme4-border {
    border: 3px solid var(--primary-color);
    border-image: var(--gold-gradient) 1;
}

/* Royal Animation */
.theme4-royal {
    animation: royal 8s ease-in-out infinite;
}

@keyframes royal {
    0%, 100% { transform: translateY(0px) scale(1); }
    25% { transform: translateY(-5px) scale(1.02); }
    75% { transform: translateY(5px) scale(0.98); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand .logo-text {
        font-size: 2.2rem;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 30px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .feature-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }
    
    .section-title {
        letter-spacing: 2px;
    }
}

/* Theme 4 Header Specific Styles */
.theme-4 .navbar {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(254, 243, 199, 0.95)) !important;
    backdrop-filter: blur(30px);
    border: 3px solid rgba(217, 119, 6, 0.3);
    border-bottom: 6px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(217, 119, 6, 0.25), inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
}

.theme-4 .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 1;
}

.theme-4 .navbar-brand .logo-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 2px 2px 4px rgba(217, 119, 6, 0.3);
}

.theme-4 .navbar-brand .logo-text::before {
    content: '👑';
    position: absolute;
    top: -15px;
    left: -40px;
    font-size: 2rem;
    animation: crown4 4s ease-in-out infinite;
}

@keyframes crown4 {
    0%, 100% { transform: rotate(-10deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.theme-4 .navbar-brand .logo-text::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 1.5rem;
    animation: sparkle4 3s ease-in-out infinite;
}

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

.theme-4 .nav-link {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-4 .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: left 0.5s ease;
    z-index: -1;
    opacity: 0.1;
}

.theme-4 .nav-link:hover::before {
    left: 0;
}

.theme-4 .nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

/* Theme 4 Footer Specific Styles */
.theme-4 .bg-dark {
    background: linear-gradient(135deg, #292524, #1c1917) !important;
    border-top: 8px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.theme-4 .bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury4" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(217,119,6,0.1)"/><circle cx="12.5" cy="12.5" r="1" fill="rgba(217,119,6,0.05)"/><circle cx="37.5" cy="37.5" r="1" fill="rgba(217,119,6,0.05)"/><path d="M25,10 L30,20 L25,30 L20,20 Z" fill="rgba(217,119,6,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury4)"/></svg>') repeat;
    z-index: 1;
}

.theme-4 .bg-dark::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gold-gradient);
    z-index: 2;
}

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

.theme-4 .bg-dark h5 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.theme-4 .bg-dark h5::before {
    content: '◆';
    position: absolute;
    top: 0;
    right: -30px;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 0 2px 8px rgba(217, 119, 6, 0.5);
    animation: diamond4 3s ease-in-out infinite;
}

@keyframes diamond4 {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(45deg) scale(1.2); }
}

.theme-4 .bg-dark h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

.theme-4 .bg-dark a {
    transition: all 0.4s ease;
    position: relative;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 600;
}

.theme-4 .bg-dark a:hover {
    color: var(--accent-color) !important;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.2), rgba(220, 38, 38, 0.2));
    transform: translateX(-12px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}

.theme-4 .social-icons a {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: var(--gold-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 12px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
}

.theme-4 .social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.theme-4 .social-icons a:hover::before {
    left: 100%;
}

.theme-4 .social-icons a:hover {
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.5);
}

.theme-4 .social-icons a i {
    font-size: 1.3rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Theme 4 Package Cards Specific Styles */
.theme-4 .premium-package-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(254, 243, 199, 0.95));
    border: 3px solid rgba(217, 119, 6, 0.3);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(217, 119, 6, 0.25), inset 0 1px 0 rgba(255,255,255,0.9);
}

.theme-4 .premium-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gold-gradient);
    z-index: 2;
}

.theme-4 .premium-package-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-card" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(217,119,6,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-card)"/></svg>') repeat;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.theme-4 .premium-package-card:hover::after {
    opacity: 1;
}

.theme-4 .premium-package-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 35px 70px rgba(217, 119, 6, 0.35), inset 0 1px 0 rgba(255,255,255,1);
    border-color: var(--primary-color);
}

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

.theme-4 .package-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.theme-4 .premium-package-card:hover .package-image-wrapper::before {
    opacity: 0.3;
}

.theme-4 .package-image-wrapper::after {
    content: '👑';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    z-index: 3;
    animation: crown4-package 5s ease-in-out infinite;
    filter: drop-shadow(2px 2px 8px rgba(217, 119, 6, 0.6));
}

@keyframes crown4-package {
    0%, 100% { transform: rotate(-10deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.1); }
    50% { transform: rotate(-5deg) scale(1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

.theme-4 .package-title {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.theme-4 .package-title::before {
    content: '◆';
    position: absolute;
    top: 0;
    right: -25px;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-shadow: 0 2px 8px rgba(217, 119, 6, 0.5);
    animation: diamond4-title 4s ease-in-out infinite;
}

@keyframes diamond4-title {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(45deg) scale(1.3); }
}

.theme-4 .package-price {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 2.5rem;
    position: relative;
    text-align: center;
    filter: drop-shadow(2px 2px 4px rgba(217, 119, 6, 0.4));
}

.theme-4 .package-price::before {
    content: '💎';
    position: absolute;
    top: -10px;
    left: -35px;
    font-size: 1.5rem;
    animation: diamond4-price 3s ease-in-out infinite;
}

@keyframes diamond4-price {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.theme-4 .package-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: royal4-price 8s ease-in-out infinite;
}

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

.theme-4 .package-info-icon {
    background: var(--gold-gradient);
    color: white;
    border-radius: 15px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}

.theme-4 .package-info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.theme-4 .package-info-icon:hover::before {
    left: 100%;
}

.theme-4 .package-info-icon:hover {
    transform: scale(1.2) rotate(25deg);
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.5);
}

.theme-4 .btn-book-now {
    background: var(--gold-gradient);
    border: 3px solid rgba(255,255,255,0.8);
    color: white;
    font-weight: 900;
    padding: 20px 40px;
    border-radius: 20px;
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.4);
}

.theme-4 .btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.theme-4 .btn-book-now:hover::before {
    left: 100%;
}

.theme-4 .btn-book-now:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(217, 119, 6, 0.6);
    border-color: white;
}

/* Theme 4 Hotel Cards Specific Styles */
.theme-4 .hotel-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(254, 243, 199, 0.95));
    border: 3px solid rgba(217, 119, 6, 0.3);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(217, 119, 6, 0.25), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: all 0.6s ease;
    position: relative;
}

.theme-4 .hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gold-gradient);
    z-index: 2;
}

.theme-4 .hotel-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-hotel" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(217,119,6,0.05)"/><circle cx="6.25" cy="6.25" r="0.5" fill="rgba(217,119,6,0.03)"/><circle cx="18.75" cy="18.75" r="0.5" fill="rgba(217,119,6,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-hotel)"/></svg>') repeat;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.theme-4 .hotel-card:hover::after {
    opacity: 1;
}

.theme-4 .hotel-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 70px rgba(217, 119, 6, 0.35), inset 0 1px 0 rgba(255,255,255,1);
    border-color: var(--primary-color);
}

.theme-4 .hotel-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 20px 20px 0 0;
}

.theme-4 .hotel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.theme-4 .hotel-card:hover .hotel-image::before {
    opacity: 0.3;
}

.theme-4 .hotel-image::after {
    content: '🏛️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3.5rem;
    z-index: 3;
    animation: palace4 6s ease-in-out infinite;
    filter: drop-shadow(2px 2px 8px rgba(217, 119, 6, 0.6));
}

@keyframes palace4 {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    25% { transform: rotate(2deg) scale(1.05); }
    50% { transform: rotate(-2deg) scale(1); }
    75% { transform: rotate(5deg) scale(1.05); }
}

.theme-4 .hotel-stars {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.theme-4 .hotel-stars::before {
    content: '👑';
    position: absolute;
    right: -35px;
    top: -5px;
    font-size: 1.3rem;
    animation: crown4-stars 4s ease-in-out infinite;
}

@keyframes crown4-stars {
    0%, 100% { transform: rotate(-10deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.2); }
}

.theme-4 .hotel-stars::after {
    content: '💎';
    position: absolute;
    left: -35px;
    top: -5px;
    font-size: 1.3rem;
    animation: diamond4-stars 3s ease-in-out infinite;
}

@keyframes diamond4-stars {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.theme-4 .hotel-name {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.6rem;
    margin-bottom: 18px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.theme-4 .hotel-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

.theme-4 .hotel-location {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(220, 38, 38, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(217, 119, 6, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-4 .hotel-location::before {
    content: '🌟';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    animation: sparkle4-location 3s ease-in-out infinite;
}

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

.theme-4 .hotel-price {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    position: relative;
    filter: drop-shadow(2px 2px 4px rgba(217, 119, 6, 0.4));
}

.theme-4 .hotel-price::before {
    content: '💰';
    position: absolute;
    top: -8px;
    left: -40px;
    font-size: 1.5rem;
    animation: money4 4s ease-in-out infinite;
}

@keyframes money4 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(10deg); }
    75% { transform: scale(1.1) rotate(-10deg); }
}

.theme-4 .hotel-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.1), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: royal4-hotel-price 8s ease-in-out infinite;
}

@keyframes royal4-hotel-price {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
}

.theme-4 .hotel-distance {
    background: var(--gold-gradient);
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    display: inline-block;
    margin-top: 18px;
    border: 3px solid rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.theme-4 .hotel-distance::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.theme-4 .hotel-distance:hover::before {
    left: 100%;
}

.theme-4 .btn-hotel-details {
    background: var(--gold-gradient);
    border: 3px solid rgba(255,255,255,0.8);
    color: white;
    font-weight: 900;
    padding: 18px 35px;
    border-radius: 20px;
    transition: all 0.6s ease;
    width: 100%;
    margin-top: 22px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
}

.theme-4 .btn-hotel-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.theme-4 .btn-hotel-details:hover::before {
    left: 100%;
}

.theme-4 .btn-hotel-details:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(217, 119, 6, 0.6);
    border-color: white;
}

/* Theme 4 Feature Icons Styles */
.theme-4 .feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(254, 243, 199, 0.95));
    border: 3px solid rgba(217, 119, 6, 0.3);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.2), inset 0 1px 0 rgba(255,255,255,0.8);
}

.theme-4 .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    z-index: 2;
}

.theme-4 .feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(217, 119, 6, 0.35), inset 0 1px 0 rgba(255,255,255,1);
    border-color: var(--primary-color);
}

.theme-4 .feature-icon {
    background: var(--gold-gradient);
    color: white;
    width: 110px;
    height: 110px;
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin: 0 auto 35px;
    transition: all 0.7s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(217, 119, 6, 0.4);
}

.theme-4 .feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.8s ease;
}

.theme-4 .feature-card:hover .feature-icon::before {
    left: 100%;
}

.theme-4 .feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(45deg);
    box-shadow: 0 30px 60px rgba(217, 119, 6, 0.6);
}

/* Theme 4 Package Icons Styles - Compact Diamond Layout */
.theme-4 .package-icons-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(145deg, rgba(217, 119, 6, 0.12), rgba(220, 38, 38, 0.12));
    border-radius: 20px;
    border: 3px solid rgba(217, 119, 6, 0.3);
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.3), inset 0 1px 0 rgba(255,255,255,0.6);
}

.theme-4 .package-icons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold-gradient);
    z-index: 2;
}

.theme-4 .package-icons-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-icons" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(217,119,6,0.08)"/><circle cx="10" cy="10" r="0.8" fill="rgba(217,119,6,0.05)"/><circle cx="30" cy="30" r="0.8" fill="rgba(217,119,6,0.05)"/><path d="M20,10 L25,15 L20,20 L15,15 Z" fill="rgba(217,119,6,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-icons)"/></svg>') repeat;
    z-index: 1;
    animation: royal4-bg 12s ease-in-out infinite;
}

@keyframes royal4-bg {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    33% { transform: scale(1.05) rotate(2deg); opacity: 0.8; }
    66% { transform: scale(1.02) rotate(-2deg); opacity: 1; }
}

.theme-4 .package-icon-item {
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 12px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(254, 243, 199, 0.1));
    border-radius: 18px;
    border: 2px solid rgba(217, 119, 6, 0.2);
    transition: all 0.6s ease;
    backdrop-filter: blur(10px);
}

.theme-4 .package-icon-item:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(254, 243, 199, 0.2));
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.4);
    border-color: var(--primary-color);
}

.theme-4 .package-icon {
    background: var(--gold-gradient);
    color: white;
    width: 50px;
    height: 50px;
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 12px;
    transition: all 0.8s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.5);
}

.theme-4 .package-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.8s ease;
}

.theme-4 .package-icon:hover::before {
    left: 100%;
}

.theme-4 .package-icon:hover {
    transform: scale(1.2) rotate(45deg);
    box-shadow: 0 30px 60px rgba(217, 119, 6, 0.7);
}

.theme-4 .package-icon-title {
    font-size: 0.75rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.5s ease;
    position: relative;
}

.theme-4 .package-icon-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.4s ease;
}

.theme-4 .package-icon-item:hover .package-icon-title::after {
    width: 100%;
}

.theme-4 .package-icon-item:hover .package-icon-title {
    transform: scale(1.05);
    filter: drop-shadow(2px 2px 6px rgba(217, 119, 6, 0.4));
}

/* Theme 4 Testimonials Styles - Luxury Royal Layout */
.theme-4 .testimonials-section {
    background: linear-gradient(145deg, rgba(217, 119, 6, 0.1), rgba(220, 38, 38, 0.08));
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 4px solid rgba(217, 119, 6, 0.3);
    box-shadow: 0 25px 60px rgba(217, 119, 6, 0.25), inset 0 1px 0 rgba(255,255,255,0.6);
    margin: 50px 0;
}

.theme-4 .testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gold-gradient);
    z-index: 2;
}

.theme-4 .testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-testimonials" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(217,119,6,0.08)"/><circle cx="10" cy="10" r="0.8" fill="rgba(217,119,6,0.05)"/><circle cx="30" cy="30" r="0.8" fill="rgba(217,119,6,0.05)"/><path d="M20,10 L25,15 L20,20 L15,15 Z" fill="rgba(217,119,6,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-testimonials)"/></svg>') repeat;
    z-index: 1;
    animation: royal4-testimonials 15s ease-in-out infinite;
}

@keyframes royal4-testimonials {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
    25% { transform: scale(1.02) rotate(1deg); opacity: 0.8; }
    50% { transform: scale(1.05) rotate(0deg); opacity: 1; }
    75% { transform: scale(1.02) rotate(-1deg); opacity: 0.8; }
}

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

.theme-4 .testimonials-section .section-title {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    margin-bottom: 80px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    filter: drop-shadow(2px 2px 4px rgba(217, 119, 6, 0.4));
}

.theme-4 .testimonials-section .section-title::before {
    content: '👑';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    animation: crown4-testimonials 5s ease-in-out infinite;
    filter: drop-shadow(2px 2px 8px rgba(217, 119, 6, 0.6));
}

@keyframes crown4-testimonials {
    0%, 100% { transform: translateX(-50%) rotate(-10deg) scale(1); }
    25% { transform: translateX(-50%) rotate(5deg) scale(1.1); }
    50% { transform: translateX(-50%) rotate(-5deg) scale(1); }
    75% { transform: translateX(-50%) rotate(10deg) scale(1.1); }
}

.theme-4 .testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 6px;
    background: var(--gold-gradient);
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.4);
    animation: royal4-line 8s ease-in-out infinite;
}

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

.theme-4 .testimonials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.theme-4 .testimonials-list .card {
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(254, 243, 199, 0.95));
    border: 3px solid rgba(217, 119, 6, 0.3);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    transition: all 0.7s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(217, 119, 6, 0.25), inset 0 1px 0 rgba(255,255,255,0.9);
}

.theme-4 .testimonials-list .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold-gradient);
    z-index: 2;
}

.theme-4 .testimonials-list .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-card-testimonials" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(217,119,6,0.05)"/><circle cx="7.5" cy="7.5" r="0.5" fill="rgba(217,119,6,0.03)"/><circle cx="22.5" cy="22.5" r="0.5" fill="rgba(217,119,6,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-card-testimonials)"/></svg>') repeat;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.theme-4 .testimonials-list .card:hover::after {
    opacity: 1;
}

.theme-4 .testimonials-list .card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 35px 80px rgba(217, 119, 6, 0.35), inset 0 1px 0 rgba(255,255,255,1);
    border-color: var(--primary-color);
}

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

.theme-4 .testimonial-rating {
    margin-bottom: 35px;
    text-align: center;
}

.theme-4 .testimonial-rating .fa-star {
    font-size: 1.8rem;
    margin: 0 4px;
    transition: all 0.4s ease;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(1px 1px 3px rgba(217, 119, 6, 0.4));
}

.theme-4 .testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    position: relative;
    padding: 35px;
    background: linear-gradient(145deg, rgba(217, 119, 6, 0.1), rgba(220, 38, 38, 0.1));
    border-radius: 20px;
    margin-bottom: 35px;
    border: 2px solid rgba(217, 119, 6, 0.2);
    font-style: italic;
    font-weight: 500;
}

.theme-4 .testimonial-text::before {
    content: '💎';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    background: var(--gold-gradient);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: diamond4-testimonials 4s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

@keyframes diamond4-testimonials {
    0%, 100% { transform: translateX(-50%) rotate(0deg) scale(1); }
    50% { transform: translateX(-50%) rotate(45deg) scale(1.2); }
}

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

.theme-4 .testimonial-author .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.8rem;
    color: white;
    transition: all 0.7s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(217, 119, 6, 0.4);
    border: 3px solid rgba(255,255,255,0.8);
}

.theme-4 .testimonial-author .avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.8s ease;
}

.theme-4 .testimonial-author .avatar:hover::before {
    left: 100%;
}

.theme-4 .testimonial-author .avatar:hover {
    transform: scale(1.2) rotate(20deg);
    box-shadow: 0 30px 60px rgba(217, 119, 6, 0.6);
    border-color: white;
}

.theme-4 .testimonial-author h5 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(1px 1px 3px rgba(217, 119, 6, 0.4));
}

.theme-4 .testimonial-author small {
    color: #92400e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Theme 4 Review Form Styles */
.theme-4 .review-form-section {
    background: linear-gradient(145deg, rgba(217, 119, 6, 0.12), rgba(220, 38, 38, 0.12));
    border-radius: 30px;
    border: 4px solid rgba(217, 119, 6, 0.3);
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(217, 119, 6, 0.3), inset 0 1px 0 rgba(255,255,255,0.6);
}

.theme-4 .review-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold-gradient);
    z-index: 2;
}

.theme-4 .review-form-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxury-form" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.2" fill="rgba(217,119,6,0.06)"/><circle cx="8.75" cy="8.75" r="0.6" fill="rgba(217,119,6,0.04)"/><circle cx="26.25" cy="26.25" r="0.6" fill="rgba(217,119,6,0.04)"/><path d="M17.5,8.75 L22.5,13.75 L17.5,18.75 L12.5,13.75 Z" fill="rgba(217,119,6,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23luxury-form)"/></svg>') repeat;
    z-index: 1;
    animation: royal4-form 12s ease-in-out infinite;
}

@keyframes royal4-form {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.05) rotate(2deg); opacity: 1; }
}

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

.theme-4 .review-form-section h3 {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(2px 2px 6px rgba(217, 119, 6, 0.4));
}

.theme-4 .review-form-section .form-control {
    border: 3px solid rgba(217, 119, 6, 0.3);
    border-radius: 20px;
    padding: 20px 25px;
    transition: all 0.6s ease;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    font-weight: 600;
}

.theme-4 .review-form-section .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.1);
    background: rgba(255,255,255,1);
    transform: scale(1.02);
}

.theme-4 .review-form-section .btn-primary {
    background: var(--gold-gradient);
    border: 3px solid rgba(255,255,255,0.8);
    color: white;
    font-weight: 900;
    padding: 20px 45px;
    border-radius: 20px;
    transition: all 0.7s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(217, 119, 6, 0.4);
}

.theme-4 .review-form-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.8s ease;
}

.theme-4 .review-form-section .btn-primary:hover::before {
    left: 100%;
}

.theme-4 .review-form-section .btn-primary:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(217, 119, 6, 0.6);
    border-color: white;
}

/* Theme 4 WhatsApp Button Styles - Luxury Gold */
.theme-4 .btn-premium-whatsapp {
    background: var(--gold-gradient) !important;
    border: 3px solid rgba(255,255,255,0.8) !important;
    color: white !important;
    font-weight: 900 !important;
    padding: 22px 40px !important;
    border-radius: 20px !important;
    transition: all 0.7s ease !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(217, 119, 6, 0.4) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

.theme-4 .btn-premium-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.8s ease;
}

.theme-4 .btn-premium-whatsapp:hover::before {
    left: 100%;
}

.theme-4 .btn-premium-whatsapp:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 30px 60px rgba(217, 119, 6, 0.6);
    border-color: white;
}

.theme-4 .btn-premium-whatsapp i {
    margin-left: 15px;
    font-size: 1.5rem;
    animation: royal4-whatsapp 5s ease-in-out infinite;
}

@keyframes royal4-whatsapp {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(10deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-10deg) scale(1.1); }
}

/* Theme 4 Floating WhatsApp Button */
.theme-4 .whatsapp-button {
    background: var(--gold-gradient) !important;
    box-shadow: 0 20px 45px rgba(217, 119, 6, 0.5) !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
}

.theme-4 .whatsapp-button:hover {
    background: linear-gradient(135deg, #dc2626, #d97706) !important;
    transform: scale(1.25) rotate(20deg) !important;
    box-shadow: 0 25px 55px rgba(217, 119, 6, 0.7) !important;
    border-color: white !important;
}
