/* --- AS MotoGears: ULTRA PRO UI --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    /* Brand Colors */
    --primary: #FF6B00; /* Vivid Orange */
    --primary-dark: #cc5500;
    --secondary: #0B0E14; /* Deepest Void */
    --accent: #00D2FF; /* Cyber Blue */
    --glass: rgba(255, 255, 255, 0.95);
    --glass-dark: rgba(11, 14, 20, 0.85);
    
    /* UI Variables */
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-glow: 0 5px 20px rgba(255, 107, 0, 0.4);
    --radius: 16px;
    --transition: cubic-bezier(0.23, 1, 0.32, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f2f4f8;
    color: #2d3436;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* --- GLAZE & GLASSMORPHISM UTILITIES --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
}

.glass-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* --- ANIMATIONS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* --- COMPONENTS --- */
.btn-glaze {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-glaze:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
    color: white;
}

.service-card {
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
    border: none;
    transition: all 0.4s var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-card .img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}

.service-card:hover img {
    transform: scale(1.1);
}

/* --- BADGES --- */
.badge-floating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--glass-dark);
    color: white;
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

/* --- FLOATING ACTION BUTTONS (SOS) - UPDATED SPLIT LAYOUT --- */
.floating-dock {
    position: fixed;
    bottom: 25px;
    left: 0;
    width: 100%; /* Full width to allow separation */
    padding: 0 25px; /* Spacing from screen edges */
    display: flex;
    justify-content: space-between; /* Pushes buttons to opposite corners */
    align-items: flex-end;
    z-index: 1000;
    pointer-events: none; /* Allows clicking through the empty space between buttons */
}

.dock-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    transition: transform 0.2s;
    pointer-events: auto; /* Re-enable clicks for the buttons */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 3px solid white; /* Adds visibility pop */
}

.dock-btn.whatsapp { 
    background: #25D366; 
}

.dock-btn.call { 
    background: var(--primary);
    animation: pulse-glow 2s infinite;
}

.dock-btn:hover { 
    transform: scale(1.15); 
    color: white; 
}

/* --- HERO SECTION --- */
.hero-glaze {
    /* UPDATED: Lighter overlay (0.2 and 0.5) so the image pops out */
    background: linear-gradient(rgba(11,14,20,0.2), rgba(11,14,20,0.5)), url('../images/hero_bg1.png');
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .hero-glaze {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 100px;
        background-attachment: scroll;
        clip-path: none;
    }

    h1.display-2, h1.display-3 {
        font-size: 2.2rem;
    }
    
    .hero-glaze p.lead {
        font-size: 1rem !important;
    }

    .container[style*="margin-top: -80px"] {
        margin-top: -30px !important;
    }
    
    .glass-panel .row > div {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container[style*="margin-top: -80px"] {
        margin-top: 0 !important;
    }
    
    /* Updated Mobile Dock Settings */
    .floating-dock {
        bottom: 20px;
        padding: 0 15px; /* Closer to edge on small screens */
    }
    
    .dock-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}