/* intra-styles.css (Corrected and Complete) */
:root {
--gold: #D4AF37;
--light-gold: #F5E6B3;
--dark-gold: #A67C20;
--dark: #0D0D0D;
--darker: #030303;
--gray: #161616;
--light-gray: #D1CFCB;
--white: #F9F9F9;
--whatsapp: #25D366;
--error: #FF4D4D;
--success: #00B894;
--instagram: #E1306C;
--snapchat: #FFFC00;
--twitter: #1DA1F2;
--tiktok: #FF0050;
--glass: rgba(26, 26, 26, 0.1);
--blur-intensity: 12px;
--premium-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
--playful-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
  -webkit-tap-highlight-color: transparent;
}
html {
scroll-behavior: smooth;
}
body {
background-color: var(--dark);
color: var(--white);
overflow-x: hidden; /* Keep this to prevent horizontal scrollbars */
/* overflow-y: auto; Ensure vertical scroll is allowed by default */
min-height: 100vh;
display: flex;
flex-direction: column;
position: relative;
}
.top-company-banner {
background-color: var(--darker);
color: var(--light-gold);
text-align: center;
padding: 8px 0;
font-size: 0.9rem;
font-weight: 600;
border-bottom: 1px solid rgba(212, 175, 55, 0.1);
letter-spacing: 0.5px;
z-index: 1002;
position: relative;
}
.global-particles-background {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
z-index: -1; pointer-events: none; overflow: hidden;
}
.global-particle {
position: absolute; background: rgba(212, 175, 55, 0.1);
border-radius: 50%; animation: globalFloat 30s infinite ease-in-out;
will-change: transform, opacity;
}
@keyframes globalFloat {
0% { transform: translateY(15vh) translateX(2vw) scale(0.7); opacity: 0; }
20% { opacity: 0.8; }
50% { transform: translateY(-15vh) translateX(-2vw) scale(1.1); }
80% { opacity: 0.7; }
100% { transform: translateY(15vh) translateX(2vw) scale(0.7); opacity: 0; }
}
.section-particles-container {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
pointer-events: none;
overflow: hidden;
z-index: 0;
}

.cars-section-particle {
position: absolute;
background-color: rgba(212, 175, 55, 0.35);
border-radius: 50%;
animation: carsParticleFloat 15s infinite ease-in-out;
will-change: transform, opacity;
}
@keyframes carsParticleFloat {
0% { transform: translateY(50px) scale(0.9); opacity: 0; }
25% { opacity: 1; }
50% { transform: translateY(-50px) scale(1.3) translateX(20px); }
75% { opacity: 0.8; }
100% { transform: translateY(50px) scale(0.9) translateX(-20px); opacity: 0; }
}
.hero-enhancement {
position: absolute;
border-radius: 50%;
opacity: 0;
will-change: transform, opacity;
}
.hero-glow {
background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
animation: heroGlowAnimation 12s infinite ease-in-out;
}
@keyframes heroGlowAnimation {
0%, 100% { transform: scale(1); opacity: 0.3; }
50% { transform: scale(1.5); opacity: 0.6; }
}
.hero-streak {
width: 2px;
height: 100px;
background: linear-gradient(to bottom, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0));
animation: heroStreakAnimation 8s infinite linear;
transform-origin: top center;
}
@keyframes heroStreakAnimation {
0% { transform: translateY(-120%) rotate(20deg); opacity: 0; }
20% { opacity: 1; }
80% { opacity: 1; }
100% { transform: translateY(120vh) rotate(20deg); opacity: 0; }
}
.stat-item { position: relative; }
.stat-glint {
position: absolute;
width: 8px; height: 8px;
background-color: var(--light-gold);
border-radius: 50%; opacity: 0;
box-shadow: 0 0 10px var(--light-gold), 0 0 15px var(--light-gold);
animation: statGlintAnimation 1.5s ease-out forwards;
pointer-events: none;
}
@keyframes statGlintAnimation {
0% { transform: scale(0.5); opacity: 0; }
50% { transform: scale(1.2); opacity: 1; }
100% { transform: scale(0.8); opacity: 0; }
}
.loading-overlay {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: rgba(5,5,5,0.97);
display: none; flex-direction: column; justify-content: center; align-items: center;
z-index: 99999; opacity: 0; visibility: hidden;
transition: opacity 0.6s var(--premium-transition), visibility 0.6s var(--premium-transition);
backdrop-filter: blur(var(--blur-intensity));
}
.loading-overlay.active { opacity: 1; visibility: visible; display:flex; } /* Ensure display flex when active */
.loading-content { display: flex; flex-direction: column; align-items: center; text-align: center; } /* Always flex */
.loading-spinner {
width: 70px; height: 70px; border: 4px solid rgba(212, 175, 55, 0.2);
border-radius: 50%; border-top-color: var(--gold);
animation: spin 1.2s linear infinite; margin-bottom: 25px; position: relative;
}
.loading-spinner::after {
content: ''; position: absolute; top: -8px; left: -8px; right: -8px; bottom: -8px;
border: 2px solid rgba(212, 175, 55, 0.05); border-radius: 50%;
animation: spin 2.5s linear infinite reverse;
}
.loading-text { color: var(--gold); font-size: 2rem; font-weight: 600; margin-top: 15px; letter-spacing: 1.5px; }
@keyframes spin { to { transform: rotate(360deg); } }
.logo-loader {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: var(--darker);
display: flex; flex-direction: column;
justify-content: center; align-items: center; z-index: 100000;
animation: loaderOverallFadeOut 0.5s ease-out 3.3s forwards;
}
.logo-loader-content {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
.logo-loader .logo-img-container {
position: relative;
margin-bottom: 25px;
}
.logo-loader .logo-img {
width: 150px; height: 150px;
object-fit: contain;
opacity: 0;
transform: scale(0.7) translateY(20px);
filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.7));
animation: logoIconReveal 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}
.logo-loader .logo-img-glow {
position: absolute;
top: 50%; left: 50%;
width: 200px; height: 200px;
background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
border-radius: 50%;
transform: translate(-50%, -50%) scale(0.5);
opacity: 0;
animation: logoIconGlow 2s ease-out 0.5s forwards, pulseGlow 3s infinite 1.5s ease-in-out;
}
.logo-loader .text-container {
display: flex;
align-items: baseline;
opacity: 0;
transform: translateY(10px);
animation: logoTextReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) 1.2s forwards;
}
.logo-loader .company-name-loader {
color: var(--gold);
font-size: 2.5rem;
font-weight: 800;
letter-spacing: 2.5px;
text-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
margin-right: 10px;
}
.logo-loader .vip-tag-loader {
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white);
font-size: 0.8rem;
padding: 5px 15px;
border-radius: 20px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 3px 12px rgba(212, 175, 55, 0.25);
opacity: 0;
transform: scale(0.8) translateX(-10px);
animation: vipTagReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) 1.8s forwards;
}
@keyframes logoIconReveal {
to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes logoIconGlow {
to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes pulseGlow {
0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes logoTextReveal {
to { opacity: 1; transform: translateY(0); }
}
@keyframes vipTagReveal {
to { opacity: 1; transform: scale(1) translateX(0); }
}
@keyframes loaderOverallFadeOut {
to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.logo-loader.hidden {
visibility: hidden !important;
opacity: 0 !important;
pointer-events: none !important;
}
#scrollToTop {
position: fixed; bottom: 90px; right: 25px; background: var(--gold); color: var(--dark);
border: none; border-radius: 50%; width: 55px; height: 55px; font-size: 1.6rem;
cursor: pointer; opacity: 0; visibility: hidden; /* Start hidden */
transition: var(--playful-transition), opacity 0.4s ease, visibility 0.4s ease;
z-index: 9998; display: flex; align-items: center; justify-content: center;
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}
#scrollToTop:hover {
transform: scale(1.1) translateY(-6px); background: var(--light-gold);
box-shadow: 0 12px 35px rgba(245, 230, 179, 0.4);
}
#scrollToTop.visible { opacity: 1; visibility: visible; }
.app-header {
background: rgba(13,13,13,0.7);
padding: 12px 25px; position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
height: 75px; display: flex; align-items: center; justify-content: space-between;
backdrop-filter: blur(var(--blur-intensity));
border-bottom: 1px solid rgba(212, 175, 55, 0.15);
transition: height 0.3s var(--premium-transition), background 0.3s var(--premium-transition), box-shadow 0.3s var(--premium-transition);
}
.app-header.scrolled {
height: 65px; background: rgba(3,3,3,0.85);
box-shadow: 0 5px 25px rgba(0,0,0,0.4);
}
.app-header .logo { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.app-header .logo-img { height: 40px; width: auto; transition: var(--playful-transition); }
.app-header .logo:hover .logo-img { transform: rotate(10deg) scale(1.15); filter: drop-shadow(0 0 10px var(--gold)); }
.app-header .logo-text { color: var(--gold); font-weight: 800; font-size: 1.5rem; letter-spacing: 1.2px; text-shadow: 0 0 12px rgba(212, 175, 55, 0.25); }
.app-header .vip-tag {
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white); font-size: 0.75rem; padding: 5px 14px; border-radius: 20px;
font-weight: bold; margin-right: 12px; text-transform: uppercase; letter-spacing: 1px;
box-shadow: 0 3px 12px rgba(212, 175, 55, 0.25);
}
.app-header .header-contact a { color: var(--light-gray); transition: color 0.3s ease; font-size: 0.9rem; }
.app-header .header-contact a:hover { color: var(--gold); }
.app-header .header-contact i { margin-left: 5px; } /* For LTR, adjust if icon is on the right for RTL */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 65px; /* Default height */
    background-color: var(--darker);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1001;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 -3px 15px rgba(0,0,0,0.3);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px 5px;
    text-decoration: none;
    color: var(--light-gray);
    transition: color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.bottom-nav .nav-item i {
    font-size: 1.5rem; /* Default icon size */
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.bottom-nav .nav-item span {
    font-size: 0.75rem; /* Default text size */
    line-height: 1;
    transition: color 0.3s ease;
}

.bottom-nav .nav-item.active,
.bottom-nav .nav-item:hover {
    color: var(--gold);
}

.bottom-nav .nav-item.active i,
.bottom-nav .nav-item:hover i,
.bottom-nav .nav-item.active span,
.bottom-nav .nav-item:hover span {
    color: var(--gold);
}
.app-content {
flex: 1;
overflow-y: auto;
padding-top: 75px;
-webkit-overflow-scrolling: touch;
opacity: 0;
transition: opacity 0.5s ease-out;
padding-bottom: 100px !important; /* Ensure space for bottom nav */
}
.company-section {
padding: 50px 20px; text-align: center;
background: linear-gradient(to bottom, var(--darker) 0%, var(--dark) 100%);
position: relative; overflow: hidden;
}
.company-section::before {
content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background: url('/wp-content/uploads/2025/05/sasfafassfasfasfaasfasasa1-02.png') center/cover no-repeat;
opacity: 0.02; z-index: 0; filter: grayscale(50%);
}
.company-name-large {
font-size: 2.8rem; font-weight: 900; color: var(--gold); margin-bottom: 1rem;
text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); letter-spacing: 1.5px;
position: relative; z-index: 1; animation: fadeInUp 1s ease-out;
}
.company-slogan {
font-size: 1.4rem; color: var(--light-gold); line-height: 1.8; max-width: 750px;
margin: 0 auto; position: relative; z-index: 1;
animation: fadeInUp 1s ease-out 0.3s forwards; opacity: 0;
}
.app-hero {
position: relative; height: 75vh; min-height: 800px; overflow: hidden;
display: flex; justify-content: center; align-items: center; isolation: isolate;
background-color: var(--darker);
}
.app-hero::before {
content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3), rgba(0,0,0,0.7));
z-index: 1;
}
.app-hero-video {
position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
object-fit: cover; z-index: 0; transform: translate(-50%, -50%);
}
.app-hero-content {
position: relative; z-index: 2; padding: 20px; text-align: center;
max-width: 900px; margin: 0 auto;
}
.app-hero-title {
font-size: 3.5rem;
font-weight: 900; margin-bottom: 1.5rem;
text-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
line-height: 1.2; animation: fadeInUp 1.2s ease-out; letter-spacing: 1px;
}
.app-hero-subtitle {
font-size: 1.6rem; color: var(--light-gold); line-height: 1.7;
animation: fadeInUp 1.2s ease-out 0.4s forwards; opacity: 0;
max-width: 700px; margin: 0 auto;
}
.app-hero .hero-cta-button {
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white); font-weight: bold; padding: 14px 35px; border-radius: 50px;
transition: var(--premium-transition), transform 0.2s ease-out;
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
display: inline-block; text-decoration: none; margin-top: 0.5rem;
}
.app-hero .hero-cta-button:hover {
transform: translateY(-3px) scale(1.03);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
background: linear-gradient(135deg, var(--light-gold), var(--gold));
color: var(--dark);
}
.app-hero .hero-secondary-button {
border: 2px solid var(--gold); color: var(--gold); font-weight: bold;
padding: 12px 33px;
border-radius: 50px; transition: var(--premium-transition), transform 0.2s ease-out;
display: inline-block; text-decoration: none; margin-top: 0.5rem;
}
.app-hero .hero-secondary-button:hover {
background-color: rgba(212, 175, 55, 0.1);
transform: translateY(-3px);
color: var(--light-gold);
}
.app-section { padding: 4.5rem 1.5rem; position: relative; }
.app-section.bg-darker { background-color: var(--darker); }
.app-section.bg-gray { background-color: var(--gray); }
.app-section::before {
content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
background: url('https://www.transparenttextures.com/patterns/carbon-fibre-v2.png') repeat;
opacity: 0.015; z-index: 0; pointer-events: none;
}
.app-section-title {
font-size: 2.2rem; color: var(--gold); margin-bottom: 3rem;
display: flex; align-items: center; justify-content: space-between;
position: relative; z-index: 1; font-weight: 700;
text-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}
.app-section-title::after {
content: ''; flex: 1; margin-right: 25px; height: 1px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
opacity: 0.4;
}
.cars-carousel-wrapper {
position: relative;
margin-bottom: 10px;
}
.cars-carousel {
display: flex; overflow-x: auto; gap: 30px;
padding: 15px 5px 27px;
-webkit-overflow-scrolling: touch;
scroll-snap-type: x mandatory; scrollbar-width: none; position: relative; z-index: 1;
}
.cars-carousel::-webkit-scrollbar { display: none; }
.car-card-app {
min-width: 80%; max-width: 80vw; scroll-snap-align: start;
border-radius: 18px;
overflow: hidden; position: relative; height: 320px;
background: var(--gray);
box-shadow: 0 12px 30px rgba(0,0,0,0.35);
transition: var(--playful-transition), box-shadow 0.4s ease;
flex-shrink: 0; border: 1px solid rgba(212, 175, 55, 0.15);
will-change: transform, box-shadow;
}
.car-card-app:hover {
transform: translateY(-12px) scale(1.03);
box-shadow: 0 18px 40px rgba(0,0,0,0.45), 0 0 15px rgba(212,175,55,0.2);
}
.car-card-app img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease-out; }
.car-card-app:hover img { transform: scale(1.12); }
.car-card-overlay {
position: absolute; bottom: 0; left: 0; right: 0; padding: 30px;
background: linear-gradient(to top, rgba(0,0,0,0.85) 20%, transparent 100%);
}
.car-card-app .car-brand {
display: inline-flex; align-items: center;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white); padding: 0.9rem 1.8rem; border-radius: 50px;
font-weight: 700; text-decoration: none; font-size: 1.1rem;
transition: var(--playful-transition);
box-shadow: 0 5px 18px rgba(0,0,0,0.25);
text-transform: uppercase; letter-spacing: 1px;
}
.car-card-app .car-brand:hover {
background: linear-gradient(135deg, var(--light-gold), var(--gold)); color: var(--dark);
transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.car-card-app .car-brand i { margin-right: 12px; font-size: 1.1rem; }
.carousel-dots {
text-align: center;
padding-top: 10px;
padding-bottom: 20px;
}
.carousel-dots .dot {
display: inline-block;
width: 10px;
height: 10px;
border-radius: 50%;
background-color: rgba(212, 175, 55, 0.3);
margin: 0 5px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.carousel-dots .dot.active {
background-color: var(--gold);
transform: scale(1.2);
}
.quick-actions {
display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 25px; margin-top: 3rem; position: relative; z-index: 1;
}
.action-card {
background: var(--glass);
border-radius: 18px; padding: 30px 20px; display: flex; flex-direction: column;
align-items: center; text-decoration: none; color: var(--white);
transition: var(--playful-transition), background 0.3s ease, border-color 0.3s ease;
min-height: 170px; box-shadow: 0 8px 20px rgba(0,0,0,0.15);
border: 1px solid rgba(212, 175, 55, 0.1);
backdrop-filter: blur(5px);
will-change: transform, box-shadow;
}
.action-card:hover {
transform: translateY(-10px) scale(1.04);
box-shadow: 0 15px 35px rgba(0,0,0,0.25), 0 0 10px rgba(212,175,55,0.15);
background: rgba(212, 175, 55, 0.08);
border-color: rgba(212, 175, 55, 0.35);
}
.action-card i {
font-size: 2.2rem; color: var(--gold); margin-bottom: 20px;
transition: var(--playful-transition), color 0.3s ease;
}
.action-card:hover i { transform: scale(1.15) rotate(-5deg); color: var(--light-gold); }
.action-card span { font-size: 1.1rem; text-align: center; font-weight: 600; }
.contact-form {
background: rgba(20,20,20,0.7);
border-radius: 18px; padding: 35px; margin-top: 2rem;
box-shadow: 0 12px 30px rgba(0,0,0,0.25);
border: 1px solid rgba(212, 175, 55, 0.15);
backdrop-filter: blur(8px); position: relative; z-index: 1;
}
.form-group { margin-bottom: 28px; position: relative; }
.contact-form label {
display: block; margin-bottom: 12px; font-weight: 600;
color: var(--light-gold); font-size: 0.95rem;
}
.contact-form input, .contact-form textarea, .contact-form select {
width: 100%; padding: 18px 20px; background: rgba(10,10,10,0.8);
border: 1px solid rgba(212, 175, 55, 0.25); border-radius: 12px;
color: var(--white); font-size: 1rem; transition: var(--premium-transition);
backdrop-filter: blur(5px);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
border-color: var(--gold);
box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
background: rgba(5,5,5,0.9);
}
.contact-form input.invalid, .contact-form textarea.invalid { border-color: var(--error) !important; } /* Ensure invalid state overrides focus */
.contact-form input:focus.invalid, .contact-form textarea:focus.invalid { box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.3) !important; }

.required-field::after { content: "*"; color: var(--error); margin-right: 8px; }
.error-message { color: var(--error); font-size: 0.85rem; margin-top: 10px; display: none; }
.form-success {
background: rgba(0, 184, 148, 0.1); border: 1px solid var(--success);
color: var(--success); padding: 20px; border-radius: 12px; text-align: center;
margin-bottom: 25px; display: none; animation: fadeIn 0.5s ease-out; font-weight: 600;
box-shadow: 0 5px 15px rgba(0,184,148,0.15);
}
.contact-form button {
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white); border: none; padding: 18px 35px; border-radius: 50px;
font-weight: bold; cursor: pointer; width: 100%; font-size: 1.1rem;
transition: var(--premium-transition), transform 0.2s ease-out;
display: flex; align-items: center; justify-content: center; gap: 12px;
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
text-transform: uppercase; letter-spacing: 1.2px;
}
.contact-form button:hover {
background: linear-gradient(135deg, var(--light-gold), var(--gold)); color: var(--dark);
transform: translateY(-4px) scale(1.02);
box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}
.contact-form button:disabled {
background: var(--gray); color: var(--light-gray); cursor: not-allowed;
transform: none; box-shadow: none; opacity: 0.7;
}
.contact-form button .fas { font-size: 1rem; }
.cookie-consent {
position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%);
background: rgba(10,10,10,0.9); padding: 28px;
border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 18px;
z-index: 9999; display: none; box-shadow: 0 10px 35px rgba(0,0,0,0.5);
backdrop-filter: blur(var(--blur-intensity)); max-width: 90%; width: 500px;
animation: slideUp 0.6s ease-out;
}
.cookie-consent p { margin-bottom: 22px; line-height: 1.7; text-align: center; font-size: 1rem; color: var(--light-gray); }
.cookie-consent button {
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white); border: none; padding: 14px 28px; border-radius: 50px;
font-weight: bold; cursor: pointer; width: 100%; transition: var(--premium-transition);
font-size: 1rem; box-shadow: 0 5px 18px rgba(212, 175, 55, 0.25);
}
.cookie-consent button:hover {
background: linear-gradient(135deg, var(--light-gold), var(--gold)); color: var(--dark);
transform: translateY(-3px);
}
.contact-card {
background: rgba(20,20,20,0.7); border-radius: 18px; padding: 35px; margin-top: 3rem;
box-shadow: 0 12px 30px rgba(0,0,0,0.25);
border: 1px solid rgba(212, 175, 55, 0.15);
backdrop-filter: blur(8px); position: relative; z-index: 1;
}
.map-embed {
width: 100%; height: 320px; border: none; border-radius: 15px; margin-bottom: 30px;
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
border: 1px solid rgba(212, 175, 55, 0.1);
filter: grayscale(30%) contrast(1.1);
}
.contact-item {
display: flex; align-items: center; gap: 20px; margin-bottom: 20px;
text-decoration: none; color: var(--white); padding: 18px 22px; border-radius: 12px;
transition: var(--premium-transition);
background: rgba(10,10,10,0.6);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
border: 1px solid transparent;
}
.contact-item:hover {
background: rgba(212, 175, 55, 0.08);
transform: translateX(8px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
border-color: rgba(212, 175, 55, 0.2);
}
.contact-item i {
width: 45px; height: 45px; background: rgba(212, 175, 55, 0.1);
border-radius: 35%;
display: flex; align-items: center; justify-content: center;
margin-left: 15px; /* For LTR, adjust if icon is on the right for RTL */
color: var(--gold); font-size: 1.4rem; flex-shrink: 0;
transition: var(--premium-transition);
}
.contact-item:hover i { transform: scale(1.1) rotate(5deg); background: rgba(212, 175, 55, 0.15); }
.contact-item.whatsapp i { background: var(--whatsapp); color: white; }
.contact-item.whatsapp:hover i { background: #1ebe57; }
.contact-item span { font-weight: 600; font-size: 1rem; letter-spacing: 0.5px; }
.slide-panel-page {
display: none; position: fixed; top: 0;
left: 0; right: 0; bottom: 0;
background: var(--dark);
z-index: 10000;
padding: 30px; padding-top: 90px; /* Space for back button */
overflow-y: auto;
transform: translateX(100%); /* Start off-screen to the right for LTR, adjust for RTL if needed */
transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
will-change: transform;
}
.slide-panel-page.active {
transform: translateX(0);
/* display: block; /* JS handles this before adding .active */
}
/* Add some spacing between multiple back buttons at the top of a panel */
.slide-panel-page > .back-button + .back-button {
margin-left: 10px; /* Adjusted for RTL, assuming buttons flow right-to-left */
/* If your default layout is LTR and RTL is an override, use margin-right */
}
.cars-list-grid, .social-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 25px;
}
.cars-list-card, .social-card {
background: rgba(26,26,26,0.8); border-radius: 15px; overflow: hidden;
transition: var(--playful-transition), box-shadow 0.3s ease, border-color 0.3s ease;
box-shadow: 0 8px 20px rgba(0,0,0,0.2);
border: 1px solid rgba(212, 175, 55, 0.1);
backdrop-filter: blur(5px); text-decoration: none; color: var(--white);
display: flex; flex-direction: column; align-items: center;
will-change: transform, box-shadow;
}
.cars-list-card:hover, .social-card:hover {
transform: translateY(-10px) scale(1.03);
box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 0 10px rgba(212,175,55,0.1);
border-color: rgba(212, 175, 55, 0.3);
}
.cars-list-card img { width: 100%; height: 160px; object-fit: cover; transition: transform 0.7s ease-out; }
.cars-list-card:hover img { transform: scale(1.1); }
.cars-list-card .car-info { padding: 15px 10px; text-align: center; width: 100%; }
.cars-list-card .car-name { font-weight: 700; color: var(--gold); margin-bottom: 8px; font-size: 1.1rem; letter-spacing: 0.5px; }
.cars-list-card .car-desc { font-size: 0.9rem; color: var(--light-gray); }
.back-button {
display: inline-flex;
align-items: center; justify-content: center;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white); border: none; border-radius: 50px;
padding: 14px 28px; margin-bottom: 30px; font-weight: 700;
cursor: pointer; font-size: 1rem;
transition: var(--premium-transition), transform 0.2s ease-out;
box-shadow: 0 5px 18px rgba(212, 175, 55, 0.25);
text-transform: uppercase; letter-spacing: 1px; text-decoration: none;
}
.back-button:hover {
background: linear-gradient(135deg, var(--light-gold), var(--gold)); color: var(--dark);
transform: translateX(-8px) scale(1.02); /* Adjust for RTL if icon is on the left */
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}
.back-button i { margin-left: 10px; } /* For LTR icon positioning, adjust if icon is on the right for RTL */
.social-card { padding: 30px; min-height: 160px; justify-content: center; }
.social-card i { font-size: 2.5rem; margin-bottom: 18px; transition: var(--playful-transition), color 0.3s ease; }
.social-card:hover i { transform: scale(1.2) rotate(-5deg); }
.social-card span { font-size: 1.1rem; font-weight: 600; }
.social-card.instagram i { color: var(--instagram); }
.social-card.snapchat i { color: var(--snapchat); }
.social-card.twitter i { color: var(--twitter); }
.social-card.tiktok i { color: var(--tiktok); }
.social-card.whatsapp i { color: var(--whatsapp); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(35px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
from { opacity: 0; transform: translate(-50%, 25px); }
to { opacity: 1; transform: translate(-50%, 0); }
}
.animate-on-scroll { opacity: 0; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0) !important; }
.error-banner {
position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
background: var(--error); color: white; padding: 16px 28px;
border-radius: 12px; z-index: 100001; animation: fadeInUp 0.5s ease-out;
box-shadow: 0 8px 25px rgba(255,77,77,0.35); max-width: 90%;
text-align: center; font-weight: 600;
backdrop-filter: blur(5px);
}
.card-3d { transform-style: preserve-3d; transition: transform 0.6s ease-out; }
.card-3d:hover { transform: perspective(1200px) rotateY(8deg) rotateX(4deg) translateY(-10px); }
.gradient-text { background: linear-gradient(135deg, var(--gold), var(--light-gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.glow { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); transition: box-shadow 0.4s ease-out; }
.glow:hover { box-shadow: 0 0 25px rgba(212, 175, 55, 0.45); }
.parallax-section {
background-attachment: fixed; background-position: center;
background-repeat: no-repeat; background-size: cover;
position: relative; overflow: hidden;
}
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--gold); margin-bottom: 8px; }
.stat-label { font-size: 1.1rem; color: var(--light-gold); }
.faq-item {
margin-bottom: 18px; border-radius: 12px; overflow: hidden;
background: rgba(26,26,26,0.6); backdrop-filter: blur(5px);
border: 1px solid rgba(212, 175, 55, 0.1);
transition: background-color 0.3s ease;
}
.faq-item.active { background: rgba(212,175,55,0.05); }
.faq-question {
padding: 22px; background: rgba(10,10,10,0.3); cursor: pointer;
display: flex; justify-content: space-between; align-items: center;
font-weight: 600; color: var(--light-gold); transition: color 0.3s ease;
}
.faq-item.active .faq-question { color: var(--gold); }
.faq-question i { transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; color: var(--light-gray); line-height: 1.7;}
.faq-item.active .faq-answer { padding: 22px; max-height: 500px; }

/* --- Styles from PAGE*.txt / Product Pages --- */
.product-offer-panel {
font-family: 'El Messiri', sans-serif; /* Ensure El Messiri is used if specified */
}
.product-offer-panel .gold-gradient {
background: linear-gradient(135deg, #D4AF37 0%, #F4E5C2 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.product-offer-panel .luxury-card {
background: rgba(30, 30, 30, 0.8); /* Tailwind: bg-neutral-800/80 or similar */
backdrop-filter: blur(10px);
border: 1px solid rgba(212, 175, 55, 0.3); /* Tailwind: border-gold/30 */
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-offer-panel .luxury-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2); /* Tailwind: shadow-lg shadow-gold/20 */
border-color: rgba(212, 175, 55, 0.6); /* Tailwind: border-gold/60 */
}
.product-offer-panel .carousel-container {
perspective: 1000px;
}
.product-offer-panel .carousel-slide {
display: flex; /* Ensure this is present for translateX to work on children */
transform-style: preserve-3d;
transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.product-offer-panel .carousel-slide img {
min-width: 100%; /* Ensure images take full width of their slot */
flex-shrink: 0; /* Prevent shrinking */
}
.product-offer-panel .carousel-nav-dot {
width: 10px;
height: 10px;
background: rgba(255,255,255,0.3); /* Tailwind: bg-white/30 */
transition: all 0.3s ease;
border-radius: 50%; /* Tailwind: rounded-full */
cursor: pointer;
}
.product-offer-panel .carousel-nav-dot.active {
width: 30px;
background: #D4AF37; /* Tailwind: bg-gold */
border-radius: 5px; /* Tailwind: rounded */
}
.product-offer-panel .order-btn {
background: linear-gradient(135deg, #D4AF37 0%, #F4E5C2 100%);
color: #000; /* Tailwind: text-black */
font-weight: bold; /* Tailwind: font-bold */
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); /* Tailwind: shadow-md shadow-gold/40 */
}
.product-offer-panel .order-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6); /* Tailwind: shadow-lg shadow-gold/60 */
}
.product-offer-panel .guarantee-badge {
background: rgba(212, 175, 55, 0.1); /* Tailwind: bg-gold/10 */
border-left: 3px solid #D4AF37; /* Tailwind: border-l-4 border-gold */
}
.product-offer-panel .price-strike {
position: relative;
}
.product-offer-panel .price-strike::after {
content: '';
position: absolute;
left: 0;
top: 50%;
width: 100%;
height: 2px;
background: #D4AF37; /* Tailwind: bg-gold */
transform: rotate(-5deg);
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.product-offer-panel .floating {
animation: float 6s ease-in-out infinite;
}
.product-offer-panel .product-title {
text-align: center; /* Tailwind: text-center */
margin-bottom: 1rem; /* Tailwind: mb-4 */
}
/* Color Picker Styles */
.product-offer-panel .color-picker-container {
overflow-x: auto;
padding: 30px 0; /* Tailwind: py-8 */
margin: 30px 0; /* Tailwind: my-8 */
scrollbar-width: none; /* For Firefox */
}
.product-offer-panel .color-picker-container::-webkit-scrollbar {
display: none; /* For Chrome, Safari, Opera */
}
.product-offer-panel .color-picker {
display: flex;
gap: 20px; /* Tailwind: gap-5 */
padding: 0 10px; /* Tailwind: px-2.5 */
transition: transform 0.3s ease;
scroll-snap-type: x mandatory;
scroll-padding: 50%; /* Ensure snapped item is centered */
scroll-behavior: smooth;
}
.product-offer-panel .color-option {
display: flex;
flex-direction: column; /* Tailwind: flex-col */
align-items: center; /* Tailwind: items-center */
cursor: pointer;
transition: all 0.3s ease;
position: relative;
min-width: 80px; /* Adjust as needed */
scroll-snap-align: center; /* Snap to center */
}
.product-offer-panel .color-circle {
width: 50px; /* Tailwind: w-12 */
height: 50px; /* Tailwind: h-12 */
border-radius: 50%; /* Tailwind: rounded-full */
background: conic-gradient(from 0deg, var(--color) 0deg 180deg, rgba(var(--color-rgb), 0.5) 180deg 360deg);
border: 2px solid rgba(255, 255, 255, 0.3); /* Tailwind: border-2 border-white/30 */
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.product-offer-panel .color-option.selected .color-circle {
transform: scale(1.4);
border-color: #D4AF37; /* Tailwind: border-gold */
box-shadow: 0 0 15px rgba(212, 175, 55, 0.7); /* Tailwind: shadow-lg shadow-gold/70 */
}
.product-offer-panel .color-name {
position: absolute;
bottom: -25px; /* Adjust as needed */
font-size: 12px; /* Tailwind: text-xs */
color: #D4AF37; /* Tailwind: text-gold */
opacity: 0;
transition: opacity 0.3s ease;
white-space: nowrap;
text-align: center; /* Tailwind: text-center */
width: 100px; /* Ensure enough width for names */
left: 50%;
transform: translateX(-50%);
}
.product-offer-panel .color-option.selected .color-name,
.product-offer-panel .color-option:hover .color-name {
opacity: 1;
}
.product-offer-panel .carousel-prev,
.product-offer-panel .carousel-next {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: rgba(0,0,0,0.5); /* Tailwind: bg-black/50 */
color: white; /* Tailwind: text-white */
border: none;
border-radius: 50%; /* Tailwind: rounded-full */
width: 40px; /* Tailwind: w-10 */
height: 40px; /* Tailwind: h-10 */
display: flex;
align-items: center; /* Tailwind: items-center */
justify-content: center; /* Tailwind: justify-center */
cursor: pointer;
z-index: 10;
}
.product-offer-panel .carousel-prev { left: 1rem; } /* Tailwind: left-4 */
.product-offer-panel .carousel-next { right: 1rem; } /* Tailwind: right-4 */

/* Styles for Tire Dropdown in Product Panels */
.product-offer-panel .luxury-card .tire-select {
    font-size: 0.9rem;
    padding: 12px 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    /* Inherit from .contact-form select for base styling if not overridden by Tailwind */
    background-color: rgba(10,10,10,0.8);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px; /* from .contact-form select */
    color: var(--white);
}
.product-offer-panel .luxury-card .tire-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
    background: rgba(5,5,5,0.9);
}
.product-offer-panel .luxury-card .text-xs.text-light-gold {
    font-family: 'Cairo', sans-serif; /* Ensure Cairo is used if specified */
    color: var(--light-gold); /* Ensure color is applied */
}
/* --- End Styles from PAGE*.txt --- */

@media (max-width: 767px) {
.app-hero-title { font-size: 2.5rem; }
.app-hero-subtitle { font-size: 1.3rem; }
.company-name-large { font-size: 2rem; }
.company-slogan { font-size: 1.2rem; }
.app-section-title { font-size: 1.8rem; }
.stat-number { font-size: 2.2rem; }
.quick-actions { grid-template-columns: repeat(2, 1fr); }
.cars-list-grid, .social-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
.app-header .header-contact { display: none; }
.bottom-nav { height: 65px; } /* Ensure this is consistent */
.nav-item i { font-size: 1.4rem; }
.nav-item span { font-size: 0.7rem; }
#scrollToTop { bottom: 80px; width: 50px; height: 50px; font-size: 1.4rem; }
.cookie-consent { bottom: 80px; padding: 20px; width: calc(100% - 30px); }
.top-company-banner { font-size: 0.8rem; padding: 6px 0; }
.car-card-app { min-width: 75%; max-width: 75vw;}
.logo-loader .logo-img { width: 120px; height: 120px; }
.logo-loader .company-name-loader { font-size: 2rem; }
.logo-loader .vip-tag-loader { font-size: 0.7rem; padding: 4px 12px;}

.product-offer-panel .carousel-slide { height: 250px; } /* Adjust height for product carousels */
}

@media (min-width: 768px) {
.car-card-app { min-width: 45%; max-width: 45%; height: 350px; }
.app-hero-title { font-size: 4rem; }
.app-hero-subtitle { font-size: 1.8rem; }
.company-name-large { font-size: 3rem; }
.company-slogan { font-size: 1.6rem; }
.contact-form { max-width: 700px; margin-left: auto; margin-right: auto; }
.app-header .header-contact { display: flex; }

.product-offer-panel .carousel-slide { height: 400px; } /* Adjust height for product carousels */
}

@media (min-width: 992px) {
.app-section { padding: 5rem 3rem; }
.company-section { padding: 80px 20px; }
.car-card-app { height: 380px; }
.cars-list-card img { height: 180px; }

.product-offer-panel .carousel-slide { height: 500px; } /* Adjust height for product carousels */
}

body {
    min-height: 110vh !important; /* Ensure enough height for content */
}