/* ========================================
   راحتتك - Professional Stylesheet
   ======================================== */

:root {
    --primary: #E31E24;
    --primary-dark: #C41A1F;
    --primary-darker: #A01518;
    --primary-light: #FFF0F0;
    --primary-glow: rgba(227, 30, 36, 0.3);
    --dark: #1A1A1A;
    --dark-2: #2D2D2D;
    --gray: #666;
    --gray-light: #999;
    --gray-lighter: #f8f9fa;
    --white: #FFFFFF;
    --success: #28a745;
    --danger: #dc3545;
    --wa-green: #25D366;
    --shadow-sm: 0 2px 10px rgba(0,0,0,.06);
    --shadow-md: 0 5px 25px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 50px rgba(0,0,0,.15);
    --shadow-glow: 0 5px 30px var(--primary-glow);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50%;
    --transition: all .3s cubic-bezier(.4,0,.2,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family:'Cairo',sans-serif; color:var(--dark); background:var(--white); line-height:1.7; overflow-x:hidden; }
a { text-decoration:none; color:inherit; transition:var(--transition); }
img { max-width:100%; height:auto; }
h1,h2,h3,h4,h5,h6 { font-family:'Cairo',sans-serif; font-weight:800; line-height:1.3; }

/* ========================================
   Preloader
   ======================================== */
#preloader {
    position: fixed; inset: 0; background: var(--white);
    display: flex; align-items: center; justify-content: center;
    z-index: 99999; transition: opacity .5s;
}
#preloader.loaded { opacity: 0; pointer-events: none; }
.loader { text-align: center; }
.loader p { font-weight: 800; font-size: 1.3rem; color: var(--dark); margin-top: 1rem; }
.loader-inner { position: relative; width: 80px; height: 80px; margin: 0 auto; }
.loader-circle { position: absolute; inset: 0; border: 3px solid transparent; border-radius: 50%; animation: preloader-spin 1.5s linear infinite; }
.loader-circle:nth-child(1) { border-top-color: var(--primary); animation-duration: 1s; }
.loader-circle:nth-child(2) { inset: 8px; border-right-color: var(--primary-dark); animation-duration: 1.5s; animation-direction: reverse; }
.loader-circle:nth-child(3) { inset: 16px; border-bottom-color: var(--primary); animation-duration: 2s; }
.loader-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 1.5rem; color: var(--primary-dark); animation: preloader-bounce 1s ease infinite; }
@keyframes preloader-spin { to { transform: rotate(360deg); } }
@keyframes preloader-bounce { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.2)} }

/* ========================================
   Text Gradient
   ======================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Section Common
   ======================================== */
.section-padding { padding: 5rem 0; }
.section-chip {
    display: inline-flex; align-items: center;
    background: var(--primary-light); color: var(--primary-darker);
    padding: .5rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: .9rem;
    margin-bottom: 1rem;
}
.section-title { font-size: 2.5rem; font-weight: 900; margin-bottom: .8rem; }
.section-desc { color: var(--gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ========================================
   Navbar
   ======================================== */
#mainNav { padding: 1rem 0; transition: var(--transition); z-index: 9999; }
#mainNav.scrolled { padding: .5rem 0; box-shadow: var(--shadow-md); background: rgba(255,255,255,.97) !important; backdrop-filter: blur(10px); }
.logo-icon { width: 45px; height: 45px; }
.brand-text { font-size: 1.3rem; color: var(--dark); }
.navbar-nav .nav-link { font-weight: 600; color: var(--dark) !important; padding: .5rem .8rem !important; position: relative; }
.navbar-nav .nav-link::after { content:''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { width: 100%; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary-darker) !important; }
.btn-order-main { background: var(--primary); color: var(--dark); font-weight: 700; padding: .5rem 1.2rem; border-radius: var(--radius-sm); border: none; }
.btn-order-main:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-track-nav { background: var(--dark); color: var(--white); font-weight: 600; padding: .5rem 1.2rem; border-radius: var(--radius-sm); border: none; }
.btn-track-nav:hover { background: var(--dark-2); transform: translateY(-2px); color: var(--white); }

/* ========================================
   Hero Section
   ======================================== */
.hero-section { background: linear-gradient(160deg, var(--primary-light) 0%, var(--white) 40%, var(--primary-light) 100%); position: relative; overflow: hidden; }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; }
.shape-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--primary), transparent 70%); top: -150px; left: -150px; opacity: .06; animation: drift 12s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: radial-gradient(circle, var(--primary-dark), transparent 70%); bottom: -100px; right: -100px; opacity: .08; animation: drift 10s ease-in-out infinite reverse; }
.shape-3 { width: 250px; height: 250px; background: radial-gradient(circle, var(--primary), transparent 70%); top: 40%; left: 60%; opacity: .05; animation: drift 14s ease-in-out infinite; }
.shape-4 { width: 150px; height: 150px; background: var(--primary); top: 20%; right: 20%; opacity: .03; animation: drift 8s ease-in-out infinite reverse; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.shape-5 { width: 100px; height: 100px; background: var(--primary-dark); bottom: 30%; left: 10%; opacity: .04; animation: drift 16s ease-in-out infinite; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
@keyframes drift { 0%,100%{transform:translate(0,0) scale(1)} 25%{transform:translate(15px,-20px) scale(1.02)} 50%{transform:translate(-10px,15px) scale(.98)} 75%{transform:translate(20px,10px) scale(1.01)} }

/* Particles */
.particle { position: absolute; width: 6px; height: 6px; background: var(--primary); border-radius: 50%; opacity: .15; }
.p1 { top: 15%; left: 20%; animation: particleFloat 7s ease-in-out infinite; }
.p2 { top: 25%; right: 15%; animation: particleFloat 5s ease-in-out infinite 1s; width: 4px; height: 4px; opacity: .1; }
.p3 { top: 60%; left: 30%; animation: particleFloat 9s ease-in-out infinite 2s; }
.p4 { top: 70%; right: 25%; animation: particleFloat 6s ease-in-out infinite .5s; width: 8px; height: 8px; opacity: .08; }
.p5 { top: 40%; left: 50%; animation: particleFloat 11s ease-in-out infinite 3s; width: 5px; height: 5px; }
.p6 { top: 80%; left: 60%; animation: particleFloat 8s ease-in-out infinite 1.5s; width: 3px; height: 3px; opacity: .12; }
.p7 { top: 10%; left: 70%; animation: particleFloat 10s ease-in-out infinite 4s; width: 7px; height: 7px; opacity: .06; }
.p8 { top: 50%; right: 10%; animation: particleFloat 7s ease-in-out infinite 2.5s; width: 4px; height: 4px; opacity: .1; }
@keyframes particleFloat { 0%,100%{transform:translateY(0) scale(1)} 33%{transform:translateY(-25px) scale(1.3)} 66%{transform:translateY(15px) scale(.8)} }

.hero-badge {
    display: inline-flex; align-items: center;
    background: var(--white); padding: .5rem 1.5rem;
    border-radius: 50px; font-weight: 600; font-size: .9rem;
    box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
    color: var(--primary-darker);
}
.hero-title { font-size: 3.5rem; font-weight: 900; line-height: 1.2; margin-bottom: 1.5rem; }
.hero-title .text-gradient { display: block; }
.hero-subtitle { font-size: 1.15rem; color: var(--gray); margin-bottom: 2rem; max-width: 480px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark); font-weight: 700; padding: 1rem 2rem;
    border-radius: var(--radius-md); border: none; font-size: 1.05rem;
    box-shadow: var(--shadow-glow); transition: var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px var(--primary-glow); color: var(--dark); }
.btn-hero-outline {
    background: var(--white); color: var(--dark); font-weight: 600;
    padding: 1rem 2rem; border-radius: var(--radius-md);
    border: 2px solid var(--dark); transition: var(--transition);
}
.btn-hero-outline:hover { background: var(--dark); color: var(--white); }

.hero-stats { display: flex; gap: 2rem; }
.hero-stat { display: flex; align-items: center; gap: .8rem; }
.hero-stat-icon { width: 50px; height: 50px; background: var(--primary-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--primary-darker); font-size: 1.1rem; }
.hero-stat h4 { font-size: 1.5rem; font-weight: 900; margin: 0; line-height: 1; color: var(--dark); }
.hero-stat span { font-size: .8rem; color: var(--gray); }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; min-height: 520px; }

/* Rotating Rings */
.hero-ring { position: absolute; border-radius: 50%; border: 2px dashed; }
.ring-outer { width: 420px; height: 420px; border-color: rgba(227,30,36,.12); animation: spinSlow 30s linear infinite; }
.ring-middle { width: 340px; height: 340px; border-color: rgba(227,30,36,.08); animation: spinSlow 20s linear infinite reverse; border-style: dotted; }
@keyframes spinSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* Ring dots */
.ring-dot { position: absolute; width: 10px; height: 10px; background: var(--primary); border-radius: 50%; }
.rd-1 { top: -5px; left: 50%; transform: translateX(-50%); opacity: .3; }
.rd-2 { bottom: -5px; left: 50%; transform: translateX(-50%); opacity: .2; }
.rd-3 { left: -5px; top: 50%; transform: translateY(-50%); opacity: .25; }
.rd-4 { right: -5px; top: 50%; transform: translateY(-50%); opacity: .15; }
.rd-5 { top: 10%; right: -5px; opacity: .2; width: 8px; height: 8px; }
.rd-6 { bottom: 15%; left: -4px; opacity: .15; width: 6px; height: 6px; }
.rd-7 { top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .1; width: 12px; height: 12px; }

/* Pulse rings */
.pulse-ring { position: absolute; border-radius: 50%; border: 2px solid var(--primary); opacity: 0; animation: pulseExpand 3s ease-out infinite; }
.pulse-1 { width: 200px; height: 200px; animation-delay: 0s; }
.pulse-2 { width: 200px; height: 200px; animation-delay: 1s; }
.pulse-3 { width: 200px; height: 200px; animation-delay: 2s; }
@keyframes pulseExpand { 0%{transform:scale(.8);opacity:.4} 100%{transform:scale(2.2);opacity:0} }

/* Core */
.hero-core { position: relative; z-index: 2; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; }
.core-glow { position: absolute; inset: -20px; background: radial-gradient(circle, rgba(227,30,36,.2) 0%, transparent 70%); border-radius: 50%; animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.15);opacity:1} }

.core-icon { width: 160px; height: 160px; background: linear-gradient(145deg, var(--primary), var(--primary-dark)); border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%; display: flex; align-items: center; justify-content: center; position: relative; animation: morphCore 8s ease-in-out infinite; box-shadow: 0 20px 60px rgba(227,30,36,.3), 0 0 0 8px rgba(227,30,36,.08); }
.core-icon i { font-size: 4.5rem; color: var(--white); filter: drop-shadow(0 4px 8px rgba(0,0,0,.2)); animation: bikeRide 2.5s ease-in-out infinite; }
@keyframes morphCore { 0%,100%{border-radius:40% 60% 55% 45% / 55% 40% 60% 45%} 25%{border-radius:55% 45% 40% 60% / 45% 55% 45% 55%} 50%{border-radius:45% 55% 60% 40% / 60% 45% 55% 45%} 75%{border-radius:60% 40% 45% 55% / 40% 60% 40% 60%} }
@keyframes bikeRide { 0%,100%{transform:translateX(0) rotate(0)} 25%{transform:translateX(6px) rotate(-2deg)} 75%{transform:translateX(-6px) rotate(2deg)} }

.core-ring { position: absolute; inset: -12px; border: 2px solid rgba(227,30,36,.15); border-radius: 50%; animation: spinSlow 12s linear infinite; border-top-color: var(--primary); }

/* Glass Cards */
.glass-card { position: absolute; background: rgba(255,255,255,.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: .8rem 1.2rem; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.6); display: flex; align-items: center; gap: .7rem; z-index: 5; border: 1px solid rgba(255,255,255,.5); transition: transform .3s ease; }
.glass-card:hover { transform: translateY(-4px) scale(1.03); }
.gc-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.gc-1 .gc-icon { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #16a34a; }
.gc-2 .gc-icon { background: linear-gradient(135deg, #fee2e2, #fecaca); color: var(--primary); }
.gc-3 .gc-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #d97706; }
.gc-text { display: flex; flex-direction: column; }
.gc-title { font-size: .85rem; font-weight: 700; color: var(--dark); line-height: 1.2; }
.gc-sub { font-size: .7rem; color: var(--gray); }

.gc-1 { top: 10%; left: -5%; animation: cardFloat1 6s ease-in-out infinite; }
.gc-2 { bottom: 25%; right: -8%; animation: cardFloat2 7s ease-in-out infinite; }
.gc-3 { bottom: 0%; left: 15%; animation: cardFloat3 8s ease-in-out infinite; }
@keyframes cardFloat1 { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-12px) translateX(5px)} }
@keyframes cardFloat2 { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(10px) translateX(-8px)} }
@keyframes cardFloat3 { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-8px) translateX(6px)} }

/* Floating Pins */
.floating-pin { position: absolute; z-index: 3; font-size: 1.2rem; opacity: .2; }
.fp-1 { top: 5%; right: 10%; color: var(--primary); animation: pinBounce 4s ease-in-out infinite; }
.fp-2 { bottom: 15%; left: 5%; color: var(--primary-dark); animation: pinBounce 5s ease-in-out infinite 1s; font-size: 1rem; }
@keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }

/* ========================================
   Stats Banner
   ======================================== */
.stats-banner { background: var(--dark); padding: 3rem 0; }
.stats-banner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-box { display: flex; align-items: center; gap: 1rem; }
.stat-icon { width: 60px; height: 60px; background: rgba(255,215,0,.15); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.5rem; flex-shrink: 0; }
.stat-info h3 { color: var(--primary); font-size: 1.8rem; font-weight: 900; margin: 0; }
.stat-info p { color: rgba(255,255,255,.7); margin: 0; font-size: .9rem; }

/* ========================================
   Service Cards
   ======================================== */
.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2.5rem 2rem; text-align: center; position: relative;
    overflow: hidden; height: 100%; border: 1px solid #eee;
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card-bg { position: absolute; top: -50px; right: -50px; width: 150px; height: 150px; background: var(--primary-light); border-radius: 50%; opacity: .5; transition: var(--transition); }
.service-card:hover .service-card-bg { transform: scale(1.5); opacity: .3; }
.service-card.featured { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border: none; }
.service-card.featured .service-card-bg { background: rgba(255,255,255,.2); }
.featured-badge { position: absolute; top: 15px; left: 15px; background: var(--dark); color: var(--white); padding: .3rem 1rem; border-radius: 50px; font-size: .75rem; font-weight: 700; z-index: 1; }
.service-icon-wrap { position: relative; z-index: 1; margin-bottom: 1.5rem; }
.service-icon { width: 80px; height: 80px; background: var(--primary-light); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 2rem; color: var(--primary-darker); transition: var(--transition); }
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); background: var(--primary); color: var(--dark); }
.service-card h3 { font-size: 1.3rem; margin-bottom: .8rem; position: relative; z-index: 1; }
.service-card p { color: var(--gray); font-size: .95rem; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.service-features { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: right; position: relative; z-index: 1; }
.service-features li { padding: .3rem 0; font-size: .9rem; color: var(--gray); display: flex; align-items: center; gap: .5rem; }
.service-features li i { color: var(--success); font-size: .75rem; }
.btn-service-card { background: var(--primary); color: var(--dark); font-weight: 700; padding: .7rem 1.5rem; border-radius: var(--radius-sm); border: none; position: relative; z-index: 1; transition: var(--transition); }
.btn-service-card:hover { background: var(--dark); color: var(--white); }

/* ========================================
   Process Cards
   ======================================== */
.process-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2.5rem 2rem; text-align: center; position: relative;
    border: 1px solid #eee; height: 100%; transition: var(--transition);
}
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.process-number { font-size: 4rem; font-weight: 900; color: var(--primary-light); position: absolute; top: 10px; left: 20px; line-height: 1; }
.process-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.8rem; color: var(--dark); }
.process-card h3 { font-size: 1.2rem; margin-bottom: .8rem; }
.process-card p { color: var(--gray); font-size: .95rem; margin-bottom: 1rem; }
.process-link { color: var(--primary-darker); font-weight: 700; display: inline-flex; align-items: center; gap: .3rem; }
.process-link:hover { gap: .6rem; }
.process-card.center-card { border-color: var(--primary); }

/* ========================================
   Pricing
   ======================================== */
.pricing-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2.5rem 2rem; text-align: center; border: 2px solid #eee;
    position: relative; height: 100%; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--primary); }
.popular-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--dark); padding: .3rem 1.5rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 700; font-size: .85rem; }
.pricing-icon { font-size: 2.5rem; color: var(--primary-darker); margin-bottom: 1rem; }
.pricing-header h3 { font-size: 1.2rem; margin: .5rem 0 1rem; }
.pricing-price { margin-bottom: 1.5rem; }
.pricing-price .price { font-size: 3.5rem; font-weight: 900; color: var(--dark); }
.pricing-price .currency { font-size: 1.2rem; color: var(--gray); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: right; }
.pricing-features li { padding: .5rem 0; display: flex; align-items: center; gap: .5rem; font-size: .95rem; }
.pricing-features li i { color: var(--success); }
.btn-pricing { background: var(--primary); color: var(--dark); font-weight: 700; padding: .8rem 2rem; border-radius: var(--radius-sm); border: none; width: 100%; }
.btn-pricing:hover { background: var(--dark); color: var(--white); }

/* ========================================
   Testimonials Swiper
   ======================================== */
.testimonials-swiper { padding-bottom: 3rem; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; border: 1px solid #eee; height: 100%;
}
.testimonial-stars { margin-bottom: 1rem; }
.testimonial-stars i { color: #f59e0b; font-size: .9rem; }
.testimonial-card p { font-style: italic; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.author-avatar { width: 45px; height: 45px; background: var(--primary-light); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: var(--primary-darker); }
.testimonial-author h5 { font-size: .95rem; margin: 0; }
.testimonial-author span { font-size: .8rem; color: var(--gray-light); }
.swiper-pagination-bullet { background: var(--primary) !important; }
.swiper-pagination-bullet-active { background: var(--primary-dark) !important; width: 30px; border-radius: 5px; }

/* ========================================
   CTA Section
   ======================================== */
.cta-card { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-xl); padding: 4rem; overflow: hidden; position: relative; }
.cta-card h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 1rem; color: var(--dark); }
.cta-card p { font-size: 1.1rem; color: var(--dark); opacity: .8; margin-bottom: 2rem; max-width: 500px; }
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-cta-primary { background: var(--dark); color: var(--white); font-weight: 700; padding: 1rem 2rem; border-radius: var(--radius-md); border: none; }
.btn-cta-primary:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-cta-whatsapp { background: var(--wa-green); color: var(--white); font-weight: 700; padding: 1rem 2rem; border-radius: var(--radius-md); border: none; }
.btn-cta-whatsapp:hover { background: #128C7E; color: var(--white); transform: translateY(-2px); }
.cta-visual { font-size: 8rem; color: var(--dark); opacity: .2; animation: bike-move 2s ease-in-out infinite; }

/* ========================================
   Contact Cards
   ======================================== */
.contact-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2.5rem; text-align: center; border: 1px solid #eee;
    transition: var(--transition); height: 100%;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card.wa-card { background: linear-gradient(135deg, var(--wa-green), #128C7E); border: none; color: var(--white); }
.contact-card.wa-card h4, .contact-card.wa-card p { color: var(--white); }
.contact-card.wa-card a { color: var(--white); }
.contact-card-icon { width: 70px; height: 70px; background: var(--primary-light); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.8rem; color: var(--primary-darker); }
.wa-card .contact-card-icon { background: rgba(255,255,255,.2); color: var(--white); }
.contact-card h4 { font-size: 1.2rem; margin-bottom: .5rem; }
.contact-card p { color: var(--gray); margin-bottom: 1rem; font-size: .9rem; }
.contact-card a { color: var(--primary-darker); font-weight: 700; }
.wa-card a { color: var(--white); }

/* ========================================
   Footer
   ======================================== */
.site-footer { background: var(--dark); color: var(--white); padding: 4rem 0 0; }
.footer-brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer-brand span { font-size: 1.3rem; font-weight: 800; }
.footer-about { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .8rem; }
.footer-social a { width: 42px; height: 42px; background: rgba(255,255,255,.1); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--dark); }
.site-footer h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.2rem; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: .6rem; }
.site-footer ul a { color: rgba(255,255,255,.6); font-size: .95rem; }
.site-footer ul a:hover { color: var(--primary); }
.footer-contact li { color: rgba(255,255,255,.6); font-size: .95rem; }
.site-footer hr { border-color: rgba(255,255,255,.1); margin: 2rem 0 1.5rem; }
.footer-bottom { text-align: center; padding-bottom: 1.5rem; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .9rem; }

/* ========================================
   WhatsApp Float
   ======================================== */
.whatsapp-float {
    position: fixed; bottom: 30px; left: 30px;
    width: 60px; height: 60px; background: var(--wa-green);
    color: var(--white); border-radius: var(--radius-full);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-tooltip {
    position: absolute; bottom: 70px; left: 0;
    background: var(--dark); color: var(--white);
    padding: .5rem 1rem; border-radius: var(--radius-sm);
    font-size: .8rem; font-weight: 600; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ========================================
   Back to Top
   ======================================== */
.back-to-top {
    position: fixed; bottom: 100px; left: 30px;
    width: 45px; height: 45px; background: var(--primary);
    color: var(--dark); border: none; border-radius: var(--radius-full);
    cursor: pointer; opacity: 0; visibility: hidden;
    transition: var(--transition); z-index: 998;
    box-shadow: var(--shadow-sm);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ========================================
    Responsive - Mobile First
    ======================================== */

/* Tablet (max 991px) */
@media (max-width: 991.98px) {
    /* Mobile Nav Menu */
    .navbar-collapse { 
        position: fixed; top: 0; right: -300px; width: 300px; height: 100vh;
        background: var(--white); box-shadow: -5px 0 40px rgba(0,0,0,.2);
        padding: 5rem 1.5rem 2rem; transition: var(--transition); z-index: 10001;
        overflow-y: auto; border-radius: 0;
    }
    .navbar-collapse.show { right: 0; }
    .navbar-toggler { display: flex; align-items: center; justify-content: center; border: none; padding: .6rem; background: var(--primary-light); border-radius: 10px; }
    .navbar-toggler:focus { box-shadow: none; outline: none; }
    .navbar-toggler-icon { width: 22px; height: 2px; background: var(--dark); position: relative; display: block; }
    .navbar-toggler-icon::before, .navbar-toggler-icon::after {
        content: ''; position: absolute; width: 100%; height: 100%; background: var(--dark); left: 0; transition: .3s;
    }
    .navbar-toggler-icon::before { top: -7px; }
    .navbar-toggler-icon::after { top: 7px; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-visual { min-height: 350px; }
    .hero-ring { transform: scale(.75); }
    .hero-core { transform: scale(.85); }
    .stats-banner-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { font-size: 2rem; }
    
    .hero-badge { font-size: .8rem; padding: .4rem 1rem; }
    .hero-subtitle { font-size: 1rem; }
    
    .glass-card { font-size: .8rem; padding: .6rem 1rem; }
    .gc-1 { left: 0; }
    .gc-2 { right: 0; }
    
    .cta-visual { font-size: 5rem; }
    
    /* Footer Mobile */
    .site-footer .row { text-align: center; }
    .footer-brand { justify-content: center; }
    .footer-about { text-align: center; }
    .footer-social { justify-content: center; }
    .site-footer ul { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; }
}

/* Mobile Large (max 767px) */
@media (max-width: 767.98px) {
    .section-padding { padding: 3rem 0; }
    .section-title { font-size: 1.7rem; }
    .section-desc { font-size: .95rem; }
    
    /* Hero Mobile */
    .hero-section { padding-top: 70px; min-height: auto; }
    .hero-section .row { min-height: auto; padding: 2rem 0; }
    .hero-title { font-size: 2rem; line-height: 1.3; }
    .hero-subtitle { font-size: .95rem; margin-bottom: 1.5rem; }
    .hero-buttons { flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
    .hero-buttons .btn { width: 100%; text-align: center; padding: 1rem; font-size: 1rem; border-radius: 14px; }
    .hero-stats { flex-direction: column; gap: .8rem; }
    .hero-stat { background: var(--white); padding: .8rem 1rem; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
    
    .hero-visual { min-height: 200px; margin-top: 1.5rem; }
    .hero-ring { transform: scale(.5); }
    .hero-core { transform: scale(.65); }
    .glass-card { display: none; }
    .floating-pin { display: none; }
    .particle { display: none; }
    
    /* Stats Banner Mobile */
    .stats-banner { padding: 2rem 0; }
    .stats-banner-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .stat-box { flex-direction: column; text-align: center; gap: .5rem; }
    .stat-icon { width: 45px; height: 45px; font-size: 1.2rem; border-radius: 12px; }
    .stat-info h3 { font-size: 1.4rem; }
    
    /* Service Cards Mobile */
    .service-card { padding: 1.8rem 1.2rem; }
    .service-icon { width: 65px; height: 65px; font-size: 1.6rem; }
    .service-card h3 { font-size: 1.1rem; }
    .service-features { font-size: .85rem; }
    .service-features li { padding: .2rem 0; }
    
    /* Process Cards Mobile */
    .process-card { padding: 2rem 1.2rem; }
    .process-number { font-size: 3rem; }
    .process-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .process-card h3 { font-size: 1.1rem; }
    
    /* Pricing Mobile */
    .pricing-card { padding: 2rem 1.2rem; }
    .pricing-price .price { font-size: 2.8rem; }
    
    /* CTA Mobile */
    .cta-card { padding: 2.5rem 1.5rem; border-radius: var(--radius-lg); }
    .cta-card h2 { font-size: 1.6rem; }
    .cta-card p { font-size: .95rem; }
    .cta-buttons { flex-direction: column; gap: .8rem; }
    .cta-buttons .btn { width: 100%; text-align: center; padding: 1rem; border-radius: 14px; }
    .cta-visual { display: none; }
    
    /* Contact Cards Mobile */
    .contact-card { padding: 2rem 1.5rem; }
    .contact-card-icon { width: 55px; height: 55px; font-size: 1.5rem; }
    
    /* Footer Mobile */
    .site-footer { padding: 3rem 0 0; }
    
    /* Floating Buttons Mobile */
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.6rem; bottom: 20px; left: 20px; }
    .whatsapp-tooltip { display: none; }
    .back-to-top { width: 40px; height: 40px; bottom: 80px; left: 20px; font-size: .9rem; }
    
    /* Swiper Mobile */
    .swiper-pagination { display: block !important; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-card p { font-size: .95rem; }
}

/* Mobile Small (max 575px) */
@media (max-width: 575.98px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    
    /* Hero Small Mobile */
    .hero-title { font-size: 1.6rem; }
    .hero-badge { font-size: .75rem; padding: .3rem .8rem; }
    .hero-subtitle { font-size: .9rem; }
    .hero-stat-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 10px; }
    .hero-stat h4 { font-size: 1.2rem; }
    .hero-stat span { font-size: .75rem; }
    
    .hero-ring { transform: scale(.4); }
    .hero-core { transform: scale(.55); }
    
    /* Section Small Mobile */
    .section-title { font-size: 1.4rem; }
    .section-chip { font-size: .78rem; padding: .35rem .9rem; margin-bottom: .8rem; }
    .section-desc { font-size: .88rem; }
    
    /* Stats Banner Small Mobile */
    .stats-banner-grid { grid-template-columns: 1fr; gap: .8rem; }
    .stat-box { flex-direction: row; }
    
    /* Service Cards Small Mobile */
    .service-card { padding: 1.5rem 1rem; }
    .service-icon { width: 55px; height: 55px; font-size: 1.3rem; }
    .service-card h3 { font-size: 1rem; }
    .service-card p { font-size: .88rem; }
    .service-features { font-size: .82rem; }
    
    /* Process Cards Small Mobile */
    .process-card { padding: 1.5rem 1rem; }
    .process-icon { width: 50px; height: 50px; font-size: 1.3rem; }
    .process-number { font-size: 2.5rem; }
    .process-card h3 { font-size: 1rem; }
    .process-card p { font-size: .88rem; }
    
    /* Pricing Small Mobile */
    .pricing-card { padding: 1.5rem 1rem; }
    .pricing-price .price { font-size: 2.2rem; }
    .pricing-price .currency { font-size: 1rem; }
    .pricing-features { font-size: .82rem; }
    .pricing-features li { padding: .35rem 0; }
    
    /* CTA Small Mobile */
    .cta-card { padding: 1.5rem 1rem; }
    .cta-card h2 { font-size: 1.3rem; }
    .cta-card p { font-size: .88rem; }
    
    /* Contact Small Mobile */
    .contact-card { padding: 1.5rem 1rem; }
    .contact-card-icon { width: 48px; height: 48px; font-size: 1.3rem; }
    .contact-card h4 { font-size: 1rem; }
    
    /* Testimonial Small Mobile */
    .testimonial-card { padding: 1.2rem; }
    .testimonial-card p { font-size: .88rem; }
    
    /* Footer Small Mobile */
    .site-footer h5 { font-size: 1rem; }
    .site-footer ul a { font-size: .85rem; }
    .footer-bottom p { font-size: .8rem; }
    
    /* Preloader Small Mobile */
    .loader-inner { width: 60px; height: 60px; }
    .loader p { font-size: 1.1rem; }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    .btn-hero-primary:active,
    .btn-hero-outline:active,
    .btn-order-main:active,
    .btn-track-nav:active,
    .btn-service-card:active,
    .btn-pricing:active,
    .btn-cta-primary:active,
    .btn-cta-whatsapp:active {
        transform: scale(.97);
        opacity: .9;
    }
    .service-card:active,
    .process-card:active,
    .pricing-card:active,
    .contact-card:active {
        transform: scale(.98);
    }
    .whatsapp-float:active {
        transform: scale(.95);
    }
}

/* Safe Area for notched phones */
@supports (padding-top: env(safe-area-inset-top)) {
    .hero-section { padding-top: calc(70px + env(safe-area-inset-top)); }
    .site-footer { padding-bottom: env(safe-area-inset-bottom); }
    .whatsapp-float { bottom: calc(20px + env(safe-area-inset-bottom)); }
    .back-to-top { bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* Prevent horizontal scroll on mobile */
html, body { overflow-x: hidden; }
body { -webkit-text-size-adjust: 100%; }
