/* ================================================
   Premium Theme CSS - المميز للنقل البري
   الألوان البنفسجية والذهبية المميزة
   ================================================ */

:root {
    /* Primary Purple Colors */
    --primary-purple: #700896;
    --secondary-purple: #410d7b;
    --dark-purple: #2d0640;
    --light-purple: rgba(112, 8, 150, 0.1);
    
    /* Gold Gradient Colors */
    --gold-primary: #ffd700;
    --gold-secondary: #ffb347;
    --gold-dark: #cc9900;
    
    /* Background Gradients */
    --gradient-primary: linear-gradient(135deg, #700896 0%, #410d7b 50%, #2d0640 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
    --gradient-gold-reverse: linear-gradient(135deg, #ffb347 0%, #ffd700 100%);
    
    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #ffffff;
    
    /* Box Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 30px 80px rgba(0, 0, 0, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Enhanced Typography */
.hero-title {
    font-family: 'Cairo', 'Almarai', sans-serif;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Text Gradients */
.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.highlight-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    opacity: 0.7;
}

/* Background Gradients */
.bg-gradient-gold {
    background: var(--gradient-gold) !important;
}

.bg-gradient-purple {
    background: var(--gradient-primary) !important;
}

/* Enhanced Buttons */
.btn-gradient-gold {
    background: var(--gradient-gold);
    border: none;
    color: var(--dark-purple);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-gradient-gold:hover {
    background: var(--gradient-gold-reverse);
    color: var(--dark-purple);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-gradient-gold:active {
    transform: translateY(-1px);
}

/* Button Shine Effect */
.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-gradient-gold:hover .btn-shine {
    left: 100%;
}

/* Hover Fill Effect */
.hover-fill {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    transition: width var(--transition-normal);
    z-index: -1;
}

.hover-fill:hover::before {
    width: 100%;
}

.hover-fill:hover {
    color: var(--dark-purple) !important;
    border-color: transparent;
}

/* Hover Lift Effect */
.hover-lift {
    transition: all var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Hero Section Enhancements */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    animation: floatAnimation 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 6, 64, 0.2);
    z-index: 2;
}

/* Hero Image Enhancements */
.hero-image-container {
    max-width: 600px;
    margin: 0 auto;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    opacity: 0.3;
    animation: rotateAnimation 10s linear infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: -10px;
    left: -10px;
    animation-delay: 3s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: -30px;
    animation-delay: 6s;
}

@keyframes rotateAnimation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-main-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-main-image:hover {
    transform: scale(1.05);
}

/* Image Overlay Features */
.image-overlay-features {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.feature-badge {
    position: absolute;
    z-index: 4;
}

.badge-top-right {
    top: 20px;
    right: 20px;
}

.badge-bottom-left {
    bottom: 20px;
    left: 20px;
}

/* Feature Cards */
.feature-item {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px);
}

.icon-wrapper {
    background: var(--gradient-gold);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

/* Premium Feature Cards */
.premium-feature-card {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all var(--transition-normal);
}

.premium-feature-card:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-bg {
    background: var(--gradient-gold);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.premium-feature-card:hover .feature-icon-bg {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Features Background Decoration */
.features-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.decoration-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.05);
    animation: patternAnimation 12s ease-in-out infinite;
}

.pattern-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.pattern-2 {
    bottom: 15%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes patternAnimation {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.1;
    }
}

/* Trust Indicators */
.trust-indicators {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.trust-item {
    transition: all var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-number {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Trust Metrics */
.trust-metric {
    transition: all var(--transition-normal);
}

.trust-metric:hover {
    transform: translateY(-5px);
}

.metric-icon {
    transition: all var(--transition-normal);
}

.trust-metric:hover .metric-icon {
    transform: scale(1.2);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    animation: elementFloat 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.element-inner {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

@keyframes elementFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-15px) translateX(10px);
    }
    66% {
        transform: translateY(-5px) translateX(-5px);
    }
}

/* Animation Classes */
.animate-slide-right {
    animation: slideInRight 1s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Backdrop Blur Support */
.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Enhanced Utilities */
.max-width-700 {
    max-width: 700px;
}

.min-vh-70 {
    min-height: 70vh;
}

.z-3 {
    z-index: 3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        margin-top: 2rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .decoration-circle {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-gradient-gold,
    .hover-fill {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .feature-item {
        margin-bottom: 1rem;
    }
    
    .trust-indicators {
        margin-top: 2rem;
    }
    
    .floating-shape {
        display: none;
    }
    
    .hero-bg-animation {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .premium-feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon-bg {
        width: 60px;
        height: 60px;
    }
    
    .hero-features .col-md-6 {
        margin-bottom: 1rem;
    }
}

/* Print Styles */
@media print {
    .floating-elements,
    .hero-bg-animation,
    .features-bg-decoration,
    .decoration-pattern,
    .floating-shape {
        display: none !important;
    }
    
    .hero-section,
    .features-section {
        background: white !important;
        color: black !important;
    }
    
    .text-gradient-gold,
    .highlight-text,
    .trust-number {
        color: #333 !important;
        -webkit-text-fill-color: #333 !important;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-section,
    .features-section {
        background: #000 !important;
        color: #fff !important;
    }
    
    .btn-gradient-gold {
        background: #ffff00 !important;
        color: #000 !important;
    }
}

/* Stats Section Enhancements */
.stats-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.decoration-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0.6;
    animation: dotFloat 4s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.dot-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 4s;
}

.decoration-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0.3;
    animation: lineMove 6s ease-in-out infinite;
}

.line-1 {
    top: 25%;
    left: 0;
    width: 100%;
    animation-delay: 1s;
}

.line-2 {
    bottom: 25%;
    left: 0;
    width: 100%;
    animation-delay: 4s;
}

@keyframes dotFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@keyframes lineMove {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(0);
        opacity: 0.3;
    }
}

/* Premium Stat Cards */
.premium-stat-card {
    transition: all var(--transition-normal);
    border: 1px solid rgba(112, 8, 150, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.premium-stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

.stat-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--light-purple), transparent);
    border-radius: 0 var(--radius-lg) 0 100%;
    opacity: 0.3;
    transition: all var(--transition-normal);
}

.premium-stat-card:hover .stat-bg-pattern {
    opacity: 0.5;
    transform: scale(1.1);
}

.stat-icon {
    transition: all var(--transition-normal);
}

.premium-stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.icon-circle {
    background: var(--gradient-gold);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.premium-stat-card:hover .icon-circle {
    background: var(--gradient-gold-reverse);
    box-shadow: var(--shadow-lg);
    transform: rotate(15deg);
}

.stat-number {
    transition: all var(--transition-normal);
}

.premium-stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-description {
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.premium-stat-card:hover .stat-description {
    opacity: 1;
    transform: translateY(0);
}

/* Mini Stat Cards */
.mini-stat-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.mini-stat-card:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mini-stat-number {
    transition: all var(--transition-normal);
}

.mini-stat-card:hover .mini-stat-number {
    transform: scale(1.1);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Page Title Enhancements */
.tf-page-title {
    min-height: 200px;
    display: flex;
    align-items: center;
    position: relative;
}

.page-title-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.decoration-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 70%;
    animation-delay: 6s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.3;
    }
}

.page-title-content {
    position: relative;
    z-index: 2;
}

.page-title-icon {
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.icon-wrapper {
    background: var(--gradient-gold);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.icon-wrapper:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Floating Car Icons */
.floating-cars-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-car {
    position: absolute;
    font-size: 2rem;
    animation: carFloat 6s ease-in-out infinite;
}

.car-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.car-2 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.car-3 {
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes carFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.2;
    }
    33% {
        transform: translateY(-15px) translateX(10px);
        opacity: 0.4;
    }
    66% {
        transform: translateY(-5px) translateX(-5px);
        opacity: 0.3;
    }
}

/* Gradient Gold for Car Service Pages */
.bg-gradient-gold {
    background: var(--gradient-gold) !important;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Car Cards Enhancement */
.card-product {
    transition: all var(--transition-normal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(112, 8, 150, 0.1);
    background: white;
}

.card-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.card-product-info .title {
    color: var(--primary-purple);
    font-weight: 600;
    transition: color var(--transition-normal);
    text-decoration: none;
}

.card-product-info .title:hover {
    color: var(--gold-primary);
}

.card-product-info .price {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
}

/* Car Type Badges */
.car-type .badge {
    background: var(--gradient-gold) !important;
    color: var(--dark-purple) !important;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all var(--transition-normal);
}

.card-product:hover .car-type .badge {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Car Features */
.car-features {
    border-top: 1px solid rgba(112, 8, 150, 0.1);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.car-features small {
    color: var(--primary-purple);
    opacity: 0.8;
    font-weight: 500;
}

/* Product Image Hover Effects */
.card-product-wrapper {
    position: relative;
    overflow: hidden;
}

.card-product-wrapper .product-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.card-product-wrapper .img-product {
    transition: transform var(--transition-slow);
}

.card-product:hover .img-product {
    transform: scale(1.05);
}

/* Click Effect for Car Details */
.card-product .title.link {
    position: relative;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.card-product .title.link:hover {
    color: var(--gold-primary) !important;
    transform: translateY(-2px);
}

.card-product .title.link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.card-product .title.link:hover::after {
    width: 100%;
}

/* Product Card Click Effects */
.card-product {
    cursor: pointer;
    position: relative;
}

.card-product::before {
    content: '👁️ عرض التفاصيل';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(112, 8, 150, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: all var(--transition-normal);
    z-index: 10;
    pointer-events: none;
}

.card-product:hover::before {
    opacity: 1;
}

/* List Layout Enhancements */
.card-product.list-layout {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.card-product.list-layout .card-product-wrapper {
    flex: 0 0 200px;
    margin-right: 1rem;
}

.card-product.list-layout .card-product-info {
    flex: 1;
    text-align: right;
}

.card-product.list-layout .car-type {
    margin: 0.5rem 0;
}

/* Collection Items */
.collection-item {
    transition: all var(--transition-normal);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.collection-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.collection-title {
    background: var(--gradient-gold);
    color: var(--dark-purple) !important;
    border: none;
    transition: all var(--transition-normal);
}

.collection-title:hover {
    background: var(--gradient-gold-reverse);
    transform: scale(1.05);
}

/* Responsive Design for Page Title */
@media (max-width: 768px) {
    .tf-page-title {
        min-height: 150px;
    }
    
    .page-title-content {
        padding: 2rem 0;
    }
    
    .page-title-icon .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .floating-cars-icons {
        display: none;
    }
    
    .decoration-shape {
        display: none;
    }
    
    .heading {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 576px) {
    .page-title-content p {
        font-size: 0.9rem;
    }
    
    .heading {
        font-size: 1.5rem !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
    }
    
    .premium-stat-card {
        background: rgba(45, 6, 64, 0.9) !important;
        border-color: var(--gold-primary);
    }
    
    .mini-stat-card {
        background: rgba(45, 6, 64, 0.7) !important;
    }
    
    .tf-page-title {
        background: linear-gradient(135deg, #2d0640 0%, #1a0428 100%) !important;
    }
} 

/* Car Type Cards in Homepage */
.car-type-card {
    transition: all var(--transition-normal);
    border: 1px solid rgba(112, 8, 150, 0.1);
    position: relative;
}

.car-type-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

.car-type-card .car-icon {
    transition: all var(--transition-normal);
}

.car-type-card:hover .car-icon {
    transform: scale(1.1);
}

.car-type-card .car-icon svg {
    transition: all var(--transition-normal);
}

.car-type-card:hover .car-icon svg {
    transform: rotate(5deg);
}

.capacity-badge .badge {
    background: var(--gradient-gold) !important;
    color: var(--dark-purple) !important;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.car-type-card:hover .capacity-badge .badge {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.car-type-card h4 {
    color: var(--primary-purple);
    transition: color var(--transition-normal);
}

.car-type-card:hover h4 {
    color: var(--gold-primary);
}

/* Pricing Info Section */
.pricing-info {
    border: 1px solid rgba(112, 8, 150, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

.pricing-info:hover::before {
    left: 100%;
}

/* WhatsApp Button Styles */
.btn-success {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border: none !important;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    color: white !important;
    position: relative;
    overflow: hidden;
}

.btn-success:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white !important;
}

.btn-success:focus,
.btn-success:active {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}

.btn-success .fab.fa-whatsapp {
    font-size: 1.1em;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Car Card WhatsApp Integration */
.list-product-btn .btn-success {
    position: relative;
    overflow: hidden;
}

.list-product-btn .btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.list-product-btn .btn-success:hover::before {
    left: 100%;
}

/* WhatsApp Button Icon Enhancement */
.btn-success i.fab.fa-whatsapp {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
}

.btn-success:hover i.fab.fa-whatsapp {
    transform: scale(1.1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
} 