/* 
========================================================================
   SHAM RIDE - Premium Dark & Gold Theme Stylesheet
   Designed with Luxury, Futuristic & Glassmorphic Aesthetics
========================================================================
*/

/* ---------------------------------------------------------------------
   1. CSS Variables & Theme Setup
   --------------------------------------------------------------------- */
:root {
    --bg-primary: #000000;
    --bg-secondary: #050505;
    --bg-surface: #0c0c0c;
    --bg-surface-elevated: #141414;
    --bg-surface-glass: rgba(12, 12, 12, 0.75);
    
    --gold-primary: #D4AF37;
    --gold-bright: #FFDF00;
    --gold-dark: #AA7C11;
    --gold-light: rgba(212, 175, 55, 0.15);
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --gold-gradient-hover: linear-gradient(135deg, #AA771C 0%, #FBF5B7 25%, #B38728 50%, #FCF6BA 75%, #BF953F 100%);
    --gold-glow: 0 0 20px rgba(212, 175, 55, 0.4);
    --gold-glow-weak: 0 0 15px rgba(212, 175, 55, 0.15);

    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #52525B;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-gold-hover: rgba(212, 175, 55, 0.6);
    
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 50px rgba(212, 175, 55, 0.02);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(16px);
    
    --font-arabic-body: 'Cairo', sans-serif;
    --font-arabic-heading: 'Tajawal', sans-serif;
    --font-english: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------------------
   2. Reset & General Styles
   --------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    direction: rtl; /* Set default text direction to Arabic (RTL) */
    overflow-x: hidden;
}

body {
    font-family: var(--font-arabic-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-arabic-heading);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    background: none;
    border: none;
    color: inherit;
    outline: none;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Section Formatting */
section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    section {
        padding: 4.5rem 0;
    }
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-tag {
    font-family: var(--font-english);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-tag::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 6px auto 0;
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #D4D4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
}

/* ---------------------------------------------------------------------
   3. Custom Glass & Gold UI Components
   --------------------------------------------------------------------- */

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: var(--gold-glow-weak);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
}

.btn-primary:active {
    transform: translateY(0) scale(0.97);
}

.btn-secondary {
    background: var(--bg-surface-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    background: var(--bg-surface);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-weak);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.97);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-gold);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-weak);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-surface-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.25rem;
    box-shadow: var(--shadow-glass);
    transition: all var(--transition-smooth);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(212,175,55,0.05) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.05);
}

/* ---------------------------------------------------------------------
   4. Floating Glass Header (Navbar)
   --------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.nav-wrapper {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 0.6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-glass);
    transition: all var(--transition-smooth);
}

.header.scrolled {
    top: 0;
}

.header.scrolled .nav-wrapper {
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 5, 5, 0.85);
    padding: 0.8rem 4rem;
}

@media (max-width: 991px) {
    .header.scrolled .nav-wrapper {
        padding: 0.8rem 2rem;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-english);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-arabic-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.2rem;
    display: block;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

/* Mobile Navigation Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-surface);
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right var(--transition-smooth);
        z-index: 1005;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .nav-cta {
        display: none; /* Hide standard Nav CTA on tablet/mobile */
    }
    
    /* Hamburger Active Animations */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--gold-primary);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--gold-primary);
    }
}

/* ---------------------------------------------------------------------
   5. Hero Section
   --------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    padding-top: 10rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    position: relative;
    background-image: 
        radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,1) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-bright);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 0.25rem;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.15));
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

@media (max-width: 991px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions .btn {
        width: 100%;
    }
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Premium Phone Frame Visualizer */
.phone-mockup-wrapper {
    position: relative;
    width: 320px;
    height: 640px;
    border-radius: 40px;
    background: #000;
    padding: 10px;
    box-shadow: 
        0 25px 50px -12px rgba(0,0,0,0.8),
        0 0 40px rgba(212,175,55,0.1),
        inset 0 0 2px 2px rgba(255,255,255,0.1);
    border: 3px solid #1f1f1f;
}

.phone-mockup-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    z-index: 15;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    background: #050505;
    border: 1px solid rgba(255,255,255,0.05);
}

/* Interactive simulated app screen */
.app-screen-simulator {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.app-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?q=80&w=600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.1);
}

.app-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(5,5,5,0.8) 100%);
    z-index: 1;
}

.app-header {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-profile {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-gradient);
    border: 1px solid var(--gold-bright);
}

.app-logo {
    font-size: 0.9rem;
    font-weight: 800;
    font-family: var(--font-english);
    color: var(--gold-primary);
}

.app-map-marker {
    position: absolute;
    top: 45%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 3s infinite ease-in-out;
}

.app-marker-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), var(--gold-glow-weak);
}

.app-marker-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold-primary);
}

.app-marker-pulse {
    width: 14px;
    height: 6px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    margin-top: 4px;
    animation: pulse 1.5s infinite;
}

.app-map-route {
    position: absolute;
    top: 40%;
    left: 20%;
    width: 120px;
    height: 80px;
    z-index: 2;
    pointer-events: none;
}

/* Dynamic CSS simulated road path line */
.app-road-line {
    stroke-dasharray: 8;
    animation: dash 15s linear infinite;
}

.app-bottom-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0c0c0c;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    padding: 1rem;
    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
}

.app-sheet-handle {
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin: 0 auto 0.75rem;
}

.app-sheet-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: right;
}

.app-sheet-dest {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.app-dest-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
}

.app-sheet-vehicles {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.app-vehicle-item {
    flex: 1;
    background: #141414;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.app-vehicle-item.selected {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.app-vehicle-icon {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.app-vehicle-name {
    font-size: 0.6rem;
    font-weight: 700;
    display: block;
}

.app-vehicle-price {
    font-size: 0.65rem;
    color: var(--gold-primary);
    font-family: var(--font-english);
    font-weight: bold;
}

.app-sheet-btn {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.75rem;
    border-radius: 30px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--gold-glow-weak);
}

/* Floating dynamic decorative items */
.hero-glow-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* ---------------------------------------------------------------------
   6. About Us Section (من نحن)
   --------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-content-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .about-content-left {
        grid-template-columns: 1fr;
    }
}

.about-card-stat {
    text-align: center;
    padding: 2rem 1.5rem;
}

.about-stat-number {
    font-family: var(--font-english);
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: block;
}

.about-stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.about-content-right {
    position: relative;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-vision-mission {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-vm-item {
    display: flex;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 18px;
    align-items: flex-start;
}

.about-vm-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-vm-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold-primary);
}

.about-vm-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    color: var(--gold-primary);
}

.about-vm-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ---------------------------------------------------------------------
   7. Our Services Section (خدماتنا)
   --------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: right;
    transition: all var(--transition-smooth);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: all var(--transition-fast);
}

.service-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: var(--gold-primary);
    transition: all var(--transition-fast);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
    background: var(--gold-gradient);
    border-color: transparent;
    box-shadow: var(--gold-glow);
}

.service-card:hover .service-icon-wrapper svg {
    fill: #000;
}

.service-card:hover .service-title {
    color: var(--gold-bright);
}

/* ---------------------------------------------------------------------
   8. Why Choose Us Section (لماذا تختارنا)
   --------------------------------------------------------------------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.25rem;
    background: rgba(255, 255, 255, 0.01);
}

.why-icon {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(212,175,55,0.2));
}

.why-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.why-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ---------------------------------------------------------------------
   9. Interactive Pricing Calculator (حاسبة الأسعار التقديرية)
   --------------------------------------------------------------------- */
.calc-section {
    background-image: 
        radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 991px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.calc-form-container {
    position: relative;
}

.calc-group {
    margin-bottom: 1.5rem;
}

.calc-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.calc-select-wrapper {
    position: relative;
    width: 100%;
}

.calc-select {
    width: 100%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 1.1rem 1.5rem;
    border-radius: 16px;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    transition: all var(--transition-fast);
}

.calc-select:focus {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow-weak);
}

.calc-select-wrapper::after {
    content: '▼';
    font-size: 0.75rem;
    color: var(--text-secondary);
    position: absolute;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Vehicle Picker */
.calc-vehicles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.calc-vehicle-option {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.25rem 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.calc-vehicle-option:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.calc-vehicle-option.selected {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.06);
}

.calc-vehicle-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.calc-vehicle-icon-img {
    height: 48px;
    width: auto;
    margin: 0 auto 0.75rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
    transition: all var(--transition-fast);
}

.calc-vehicle-option:hover .calc-vehicle-icon-img {
    transform: scale(1.05);
}

.calc-vehicle-name {
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.calc-vehicle-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: block;
}

.calc-result-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.02) 0%, rgba(0,0,0,0) 100%);
    border-color: rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
}

.calc-route-map-sim {
    position: relative;
    height: 180px;
    background: #080808;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.calc-route-map-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?q=80&w=600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) contrast(1.1);
}

/* Styled road path overlay in calculator */
.calc-map-marker {
    position: absolute;
    z-index: 5;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calc-marker-start {
    top: 60%;
    right: 25%;
}

.calc-marker-end {
    top: 35%;
    left: 25%;
}

.calc-marker-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.calc-marker-dot.start {
    background: #22C55E;
}

.calc-marker-dot.end {
    background: var(--gold-bright);
    box-shadow: var(--gold-glow);
}

.calc-marker-label {
    background: #000;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-top: 4px;
    white-space: nowrap;
}

.calc-price-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.calc-price-amount {
    font-family: var(--font-english);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold-bright);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    margin-bottom: 0.5rem;
}

.calc-price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 0.5rem;
}

.calc-meta-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.calc-meta-item {
    text-align: center;
}

.calc-meta-val {
    font-family: var(--font-english);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.calc-meta-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---------------------------------------------------------------------
   10. How It Works Section (كيف يعمل التطبيق)
   --------------------------------------------------------------------- */
.steps-wrapper {
    position: relative;
    margin-top: 4rem;
}

.steps-line {
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, rgba(212,175,55,0.05) 0%, rgba(212,175,55,0.4) 50%, rgba(212,175,55,0.05) 100%);
    z-index: 1;
}

@media (max-width: 991px) {
    .steps-line {
        display: none;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    text-align: center;
}

.step-number-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: var(--font-english);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-secondary);
    position: relative;
    box-shadow: var(--shadow-luxury);
    transition: all var(--transition-smooth);
}

.step-number-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    pointer-events: none;
    transition: all var(--transition-smooth);
}

.step-card:hover .step-number-circle {
    color: #000;
    background: var(--gold-gradient);
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: var(--gold-glow);
}

.step-card:hover .step-number-circle::after {
    border-color: var(--gold-bright);
    transform: rotate(45deg);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 220px;
    margin: 0 auto;
}

/* ---------------------------------------------------------------------
   11. Driver Recruitment Section (انضم كسائق)
   --------------------------------------------------------------------- */
.driver-section {
    background-image: 
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.driver-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .driver-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.driver-content-right {
    position: relative;
}

.driver-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.driver-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.driver-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.driver-perk-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all var(--transition-fast);
}

.driver-perk-card:hover {
    border-color: var(--border-gold);
    background: rgba(212,175,55,0.02);
}

.driver-perk-emoji {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    display: block;
}

.driver-perk-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.driver-form-container {
    position: relative;
}

.driver-form-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.driver-form-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
}

.driver-form-group {
    margin-bottom: 1.25rem;
}

.driver-input {
    width: 100%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.driver-input:focus {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow-weak);
}

.driver-checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.driver-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--gold-primary);
    cursor: pointer;
}

/* ---------------------------------------------------------------------
   12. App Download Section (تحميل التطبيق)
   --------------------------------------------------------------------- */
.download-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.download-glass-box {
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.8) 0%, rgba(20, 20, 20, 0.4) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 36px;
    padding: 4.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    box-shadow: var(--shadow-luxury);
    overflow: hidden;
    position: relative;
}

@media (max-width: 991px) {
    .download-glass-box {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 3rem;
        text-align: center;
    }
}

.download-content {
    position: relative;
    z-index: 5;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.download-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

@media (max-width: 991px) {
    .download-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

.download-badges {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .download-badges {
        justify-content: center;
    }
}

.download-badge {
    background: #000;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.6rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.download-badge:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow-weak);
    transform: translateY(-2px);
}

.download-badge-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-primary);
}

.download-badge:hover .download-badge-icon svg {
    fill: var(--gold-primary);
}

.download-badge-text {
    text-align: right;
}

.download-badge-small {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
}

.download-badge-large {
    font-family: var(--font-english);
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.download-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.download-phone-image {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    animation: float 4s infinite ease-in-out;
}

/* ---------------------------------------------------------------------
   13. FAQ Accordion (الأسئلة الشائعة)
   --------------------------------------------------------------------- */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.25rem;
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    text-align: right;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.faq-icon-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-smooth);
    font-size: 0.8rem;
}

.faq-header:hover .faq-question {
    color: var(--gold-bright);
}

.faq-header:hover .faq-icon-arrow {
    background: rgba(212,175,55,0.1);
    color: var(--gold-primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0 2rem;
}

.faq-content-inner {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1rem;
}

/* Active FAQ state */
.faq-item.active .faq-content {
    max-height: 200px; /* Adjust according to contents */
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
    background: var(--gold-primary);
    color: #000;
}

.faq-item.active .faq-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-item.active {
    border-color: var(--border-gold);
}

/* ---------------------------------------------------------------------
   14. Contact Us Section (تواصل معنا)
   --------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold-primary);
}

.contact-info-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-info-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-form-card {
    position: relative;
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ---------------------------------------------------------------------
   15. Footer (الفوتر الفاخر)
   --------------------------------------------------------------------- */
.footer {
    background: #000;
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 280px;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.footer-social-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social-item svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
}

.footer-social-item:hover {
    background: var(--gold-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--gold-glow-weak);
}

.footer-social-item:hover svg {
    fill: #000;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
    position: relative;
}

.footer-column-title::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold-primary);
    margin-top: 6px;
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--gold-bright);
    padding-right: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-link:hover {
    color: var(--gold-primary);
    cursor: pointer;
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ---------------------------------------------------------------------
   16. Overlay Popups & Modals (سياسة الخصوصية والشروط والأحكام)
   --------------------------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.5rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: 28px;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    box-shadow: var(--shadow-luxury);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 1.75rem 2.25rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.modal-close-btn:hover {
    background: rgba(212,175,55,0.1);
    color: var(--gold-primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2.25rem;
    overflow-y: auto;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.modal-body h3 {
    color: var(--gold-primary);
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body p {
    margin-bottom: 1rem;
}

.modal-body ul {
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    list-style-type: square;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

/* Simulated Alert Toast Popup */
.toast-alert {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--bg-surface);
    border: 1px solid var(--gold-primary);
    box-shadow: var(--shadow-luxury);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-alert.active {
    transform: translateY(0);
}

.toast-alert-icon {
    font-size: 1.5rem;
}

.toast-alert-text {
    font-size: 0.95rem;
    font-weight: 700;
}

/* ---------------------------------------------------------------------
   17. Performance & CSS Keyframes Animations
   --------------------------------------------------------------------- */

/* Scroll Trigger Animate Presets (Using JS and CSS together) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effect Highlights */
.glow-on-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.glow-on-hover:hover::after {
    transform: translateX(100%);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes dash {
    to {
        stroke-dashoffset: -40;
    }
}
