/* ==================================
   Base & Resets
   ================================== */
:root {
    --primary-color: #E21836;
    /* Hero MotoCorp Red */
    --primary-dark: #b81028;
    --primary-light: #ff4d66;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-bg: #f5f7fa;
    --text-main: #222222;
    --text-muted: #666666;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --transition-speed: 0.3s;
    --bottom-nav-height: 70px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Accounts for fixed header */
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

/* ==================================
   Typography & Shared
   ================================== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.sub-title {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-title.light-title h2 {
    color: var(--white);
}

.section-title.light-title p {
    color: rgba(255, 255, 255, 0.7);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rounded-image {
    border-radius: var(--radius-lg);
}

.relative {
    position: relative;
}

/* ==================================
   Header & Desktop Nav (Fixed)
   ================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Smooth transition */
}

/* Scroll state for header */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: height 0.4s ease;
}

.header.scrolled .header-content {
    height: 70px;
    /* Instead of hard height change on scroll, it shrinks smoothly */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-bg);
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.desktop-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: color var(--transition-speed);
    position: relative;
}

.desktop-nav a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.desktop-nav a:hover:not(.btn-primary)::after,
.desktop-nav a.active:not(.btn-primary)::after {
    width: 100%;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(226, 24, 54, 0.3);
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(226, 24, 54, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-main);
    cursor: pointer;
}

/* ==================================
   Mobile Side Drawer
   ================================== */
.side-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.side-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #eee;
}

.drawer-header h2 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 800;
}

.close-drawer {
    background: var(--light-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-drawer:hover {
    background: var(--primary-color);
    color: var(--white);
}

.drawer-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-links a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: all var(--transition-speed);
}

.drawer-links a i {
    width: 24px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.drawer-links a:hover {
    background-color: rgba(226, 24, 54, 0.05);
    color: var(--primary-color);
    transform: translateX(5px);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ==================================
   Hero Slider
   ================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    padding: 0;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.slide.active img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    color: var(--white);
    transform: translateY(40px);
    opacity: 0;
    transition: all 1s ease forwards 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(226, 24, 54, 0.4);
}

.slide-content h2 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--dark-bg);
    padding: 18px 40px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-hero:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.slider-controls button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 10;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ==================================
   About Us Section
   ================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.experience-badge h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 900;
    line-height: 1;
}

.experience-badge p {
    font-weight: 700;
    color: var(--text-main);
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.a-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.05rem;
}

.a-feat i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ==================================
   Products Section (Isotope/Filter Grid)
   ================================== */
.products-section {
    background-color: var(--white);
}

.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 30px;
    border-radius: 30px;
    background: var(--light-bg);
    border: 2px solid transparent;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Outfit';
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: rgba(226, 24, 54, 0.05);
    border-color: rgba(226, 24, 54, 0.3);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(226, 24, 54, 0.3);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(226, 24, 54, 0.2);
}

.product-image {
    position: relative;
    height: 240px;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}

.product-card:hover .product-image img {
    transform: scale(1.08) translateX(5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--dark-bg);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 1px;
}

.product-details {
    padding: 25px;
}

.product-details h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
    font-weight: 800;
}

.specs {
    margin-bottom: 25px;
}

.specs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.specs li i {
    color: var(--primary-color);
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.btn-outline {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.product-card:hover .btn-outline {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Hide animation class for filtering */
.hidden {
    display: none !important;
}

/* ==================================
   Services / Why Choose Us Section
   ================================== */
.payment-section {
    position: relative;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle geometric pattern overlay */
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    transition: all 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(226, 24, 54, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(226, 24, 54, 0.2), transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(226, 24, 54, 0.3);
}

.premium-card:hover .icon-wrap {
    background: var(--primary-color);
}

.premium-card i {
    font-size: 2rem;
    color: var(--primary-light);
    transition: color 0.4s;
}

.premium-card:hover i {
    color: var(--white);
}

.premium-card h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.premium-card p {
    color: rgba(255, 255, 255, 0.6);
}

.services-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.dark-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
}

.dark-chip:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.dark-chip i {
    color: inherit;
}

/* ==================================
   Testimonials Section
   ================================== */
.testimonials-section {
    background: var(--light-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.t-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.t-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(226, 24, 54, 0.1);
    line-height: 1;
    font-family: serif;
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.t-card h4 {
    font-weight: 800;
    color: var(--dark-bg);
}

/* ==================================
   Enquiry Form (Glassmorphism Enhancements)
   ================================== */
.enquiry-section {
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    overflow: hidden;
}

/* Decorative Blur Orbs */
.enquiry-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(226, 24, 54, 0.3) 0%, transparent 60%);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 0;
}

.enquiry-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    filter: blur(40px);
    border-radius: 50%;
    z-index: 0;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 5fr 7fr;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.enquiry-info {
    padding: 60px;
    color: var(--white);
    background: rgba(226, 24, 54, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enquiry-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.enquiry-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.c-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.c-method h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.c-method span {
    color: rgba(255, 255, 255, 0.7);
}

.enquiry-form {
    padding: 60px;
    background: rgba(255, 255, 255, 0.98);
}

.form-group {
    margin-bottom: 25px;
}

.form-group.row {
    display: flex;
    gap: 20px;
}

.col-half {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark-bg);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #eef0f2;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background: #f8f9fa;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(226, 24, 54, 0.08);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(226, 24, 54, 0.3);
}

/* ==================================
   Footer
   ================================== */
.footer {
    background-color: var(--darker-bg);
    color: var(--white);
    padding: 80px 0 20px;
    padding-bottom: calc(20px + var(--bottom-nav-height));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    max-width: 350px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.4s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(226, 24, 54, 0.3);
}

.footer-links h3 {
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

/* ==================================
   Mobile App-Like Bottom Nav
   ================================== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    border-top: 1px solid #eaeaea;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #a0a0a0;
    flex: 1;
    height: 100%;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-item i {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.nav-item span {
    font-size: 0.75rem;
    font-weight: 700;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item.active i {
    transform: translateY(-3px) scale(1.1);
}

.pulse-nav {
    position: relative;
}

.pulse-nav i {
    color: var(--primary-color);
}

.pulse-nav::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 25px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulsePing 2s infinite;
}

@keyframes pulsePing {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* ==================================
   Responsive Media Queries
   ================================== */
@media (max-width: 1024px) {
    .glass-panel {
        grid-template-columns: 1fr;
    }

    .enquiry-info {
        padding: 40px;
    }

    .slide-content h2 {
        font-size: 4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 75px;
    }

    .header.scrolled .header-content {
        height: 65px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* Activate Bottom App Nav */
    .bottom-nav {
        display: flex;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .slide-content h2 {
        font-size: 3rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .btn-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .form-group.row {
        flex-direction: column;
        gap: 0;
    }

    .footer {
        padding-bottom: calc(40px + var(--bottom-nav-height));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .slider-controls {
        bottom: 30px;
        right: 30px;
    }

    .slider-controls button {
        width: 50px;
        height: 50px;
    }
}