@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff7200; --primary-dark: #e56500; --secondary: #1e3a8a; --secondary-light: #2563eb;
    --accent: #08dcd1; --accent-hover: #06b8b0; --bg: #0f172a; --card-bg: #beb8b8;
    --text-dark: #1a1a2e; --text-medium: #4a5568; --text-light: #718096; --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --radius: 16px; --radius-sm: 12px;
    --danger: #e53e3e; --danger-light: #fed7d7; --success: #38a169; --success-light: #c6f6d5;
    --warning: #d69e2e; --warning-light: #fefcbf;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg); color: var(--text-dark); overflow-x: hidden; line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #51cbf5 0%, #3b82f6 40%, #9d4edd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    height: 35px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: lighten;
}

/* ================= NAV LINKS ================= */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #3b82f6;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #3b82f6;
}

.nav-links a.active-link {
    color: #3b82f6;
}

.nav-links a.active-link::after {
    width: 100%;
}

/* ================= HAMBURGER MENU (mobile only) ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #e2e8f0;
    border-radius: 2px;
    transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ================= LOGIN / SIGNUP BUTTONS ================= */
.btn-small-primary {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    padding: 8px 16px;
    border-radius: 8px;
    color: white !important;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    border: none;
}

.btn-small-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* ================= SHARED BUTTONS ================= */
.btn {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.25);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(59, 130, 246, 0.35);
}

/* ================= CONTACT HERO ================= */
.contact-hero {
    padding: 90px 60px 70px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), radial-gradient(circle at top, #1e293b, #0b1220);
}

.contact-hero-content {
    max-width: 760px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    background: rgba(59, 130, 246, 0.1);
    color: #93c5fd;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.7;
}






.contact-section { padding: 80px 20px; max-width: 1200px; margin: 0 auto;  }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.bikesh-card {
    background-image: url("shankar.jpg"); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px; transition: all 0.4s ease; box-shadow: var(--shadow); position: relative; overflow: hidden;
    background-size: cover; object-fit: cover; display: block; width: 100%; height: 220px;
}
.bikesh-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary-light));
    transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease;
}
.bikesh-card:hover::before { transform: scaleY(1); }
.bikesh-card:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); border-color: rgba(255,114,0,0.2); }
.info-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 28px; transition: all 0.4s ease; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.info-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
   background: linear-gradient(90deg, #3b82f6, #8b5cf6), var(--secondary-light);
    transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease;
}
.info-card:hover::before { transform: scaleY(1); }
.info-card:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); border-color: rgba(255,114,0,0.2); }
.info-icon {
    width: 50px; height: 50px;  background: linear-gradient(90deg, #3b82f6, #8b5cf6), var(--secondary-light);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px; margin-bottom: 16px; transition: all 0.3s ease;
}
.info-card:hover .info-icon { transform: scale(1.1) rotate(-5deg); }
.info-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.info-card p { color: var(--text-medium); font-size: 0.95rem; line-height: 1.6; }
.info-card a { color: linear-gradient(90deg, #3b82f6, #8b5cf6); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.info-card a:hover { color: var(--primary-dark); }
.social-links { display: flex; gap: 12px; margin-top: 12px; }
.social-btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px;
    border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: all 0.3s ease; border: none; cursor: pointer;
}
.social-btn.whatsapp { background: #25D366; color: white; box-shadow: 0 4px 15px rgba(37,211,102,0.3); }
.social-btn.whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.social-btn.facebook { background: #1877F2; color: white; box-shadow: 0 4px 15px rgba(24,119,242,0.3); }
.social-btn.facebook:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(24,119,242,0.4); }
.form-card {
    background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 40px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.form-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary-light)); }
.form-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.form-card .subtitle { color: var(--text-medium); font-size: 0.95rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; position: relative; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color:linear-gradient(90deg, #3b82f6, #8b5cf6); margin-bottom: 8px; }
.form-group label i { color: linear-gradient(90deg, #3b82f6, #8b5cf6); margin-right: 6px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
    font-family: inherit; font-size: 0.95rem; color: var(--text-dark); background: var(--bg); transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(255,114,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
    padding: 16px; background:linear-gradient(90deg, #3b82f6, #8b5cf6), var(--primary-dark);
    color: white; border: none; border-radius: var(--radius-sm); font-family: inherit;
    font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,114,0,0.3); position: relative; overflow: hidden;
}
.submit-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s ease; }
.submit-btn:hover::before { left: 100%; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,114,0,0.4); }
.submit-btn:active { transform: translateY(0); }
.submit-btn i { transition: transform 0.3s ease; }
.submit-btn:hover i { transform: translateX(4px); }
.msg { display: none; padding: 16px; border-radius: var(--radius-sm); font-weight: 600; margin-top: 16px; text-align: center; animation: fadeInUp 0.5s ease; }
.msg.show { display: block; }
.msg.success { background: var(--success-light); border: 1px solid var(--success); color: #22543d; }
.msg.error { background: var(--danger-light); border: 1px solid var(--danger); color: #742a2a; }





















/* ================= MAP ================= */
.map-section {
    padding: 0;
    background: #0b1220;
}

.map-placeholder {
    height: 320px;
    background:
        linear-gradient(rgba(11,18,32,0.75), rgba(11,18,32,0.85)),
        repeating-linear-gradient(45deg, #1e293b 0 2px, #0f172a 2px 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.map-pin {
    font-size: 2.4rem;
}

.map-placeholder p {
    color: #cbd5e1;
    font-weight: 500;
}

/* ================= FAQ ================= */
.faq-section {
    padding: 80px 20px;
    background: #0f172a;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #e2e8f0;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 20px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-toggle {
    font-size: 1.3rem;
    color: #3b82f6;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 22px 20px;
}

.faq-answer p {
    color: #94a3b8;
    line-height: 1.6;
}

/* ================= FOOTER ================= */
footer {
    padding: 20px;
    text-align: center;
    background: #020617;
    color: #94a3b8;
    font-size: 14px;
}

/* =====================================================
   RESPONSIVE MOBILE FIXES
   ===================================================== */

/* ---- Tablets & small laptops ---- */
@media (max-width: 992px) {
    .navbar {
        padding: 16px 32px;
    }

    .contact-hero {
        padding: 70px 32px 50px;
    }

    .contact-hero h1 {
        font-size: 2.4rem;
    }

    .contact-section {
        padding: 60px 32px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ---- Mobile phones & small tablets ---- */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 24px;
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 24px;
    }

    .nav-links a.btn-small-primary {
        display: inline-block;
        width: calc(100% - 48px);
        margin: 8px 24px;
        text-align: center;
    }

    .contact-hero {
        padding: 50px 24px 40px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 50px 20px;
    }

    .contact-form-card {
        padding: 26px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .map-placeholder {
        height: 240px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
}

/* ---- Small phones ---- */
@media (max-width: 420px) {
    .navbar {
        padding: 14px 16px;
    }

    .logo {
        font-size: 20px;
        gap: 8px;
    }

    .logo-icon {
        height: 28px;
    }

    .contact-hero h1 {
        font-size: 1.7rem;
    }

    .contact-info h2,
    .contact-form-card h2 {
        font-size: 1.5rem;
    }

    .info-item {
        gap: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}







```css
/* =========================================================
   MOBILE RESPONSIVE DESIGN
   ========================================================= */

/* ================= TABLETS ================= */

@media (max-width: 992px) {

    .navbar {
        padding: 16px 30px;
    }

    .contact-hero {
        padding: 75px 30px 55px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-section {
        padding: 60px 25px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .form-card {
        width: 100%;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

    /* ---------- BODY ---------- */

    body {
        width: 100%;
        overflow-x: hidden;
    }


    /* ---------- NAVBAR ---------- */

    .navbar {
        position: relative;
        width: 100%;
        padding: 14px 20px;
        min-height: 64px;
    }

    .logo {
        font-size: 21px;
        gap: 9px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        object-fit: contain;
    }


    /* ---------- HAMBURGER ---------- */

    .menu-toggle {
        display: flex;
        flex-shrink: 0;
    }


    /* ---------- MOBILE NAVIGATION ---------- */

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 0;

        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        border-top: 1px solid rgba(255,255,255,0.05);
        border-bottom: 1px solid rgba(255,255,255,0.1);

        max-height: 0;
        overflow: hidden;

        opacity: 0;
        visibility: hidden;

        transition:
            max-height 0.35s ease,
            opacity 0.25s ease,
            visibility 0.25s ease;

        z-index: 999;
    }

    .nav-links.active {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 8px 0 14px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;

        padding: 13px 22px;

        font-size: 0.95rem;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.active-link {
        background: rgba(59,130,246,0.12);
    }


    /* ---------- LOGIN / SIGNUP ---------- */

    .nav-links .btn-small-primary {
        display: block;

        width: calc(100% - 40px);

        margin: 7px 20px;

        padding: 11px 16px;

        text-align: center;

        border-radius: 9px;
    }


    /* ---------- HERO ---------- */

    .contact-hero {
        width: 100%;

        padding: 55px 20px 45px;

        min-height: auto;
    }

    .contact-hero-content {
        width: 100%;
        max-width: 650px;
    }

    .eyebrow {
        font-size: 0.75rem;
        padding: 6px 13px;
        margin-bottom: 15px;
    }

    .contact-hero h1 {
        font-size: 2rem;
        line-height: 1.2;

        margin-bottom: 15px;
    }

    .contact-hero p {
        font-size: 0.95rem;
        line-height: 1.7;
    }


    /* ---------- CONTACT SECTION ---------- */

    .contact-section {
        width: 100%;

        padding: 45px 16px;
    }

    .contact-grid {
        display: flex;
        flex-direction: column;

        width: 100%;

        gap: 25px;
    }


    /* ---------- CONTACT INFORMATION ---------- */

    .contact-info {
        display: flex;
        flex-direction: column;

        width: 100%;

        gap: 16px;
    }


    /* ---------- IMAGE CARD ---------- */

    .bikesh-card {
        width: 100%;
        height: 345px;

        padding: 20px;

        border-radius: 14px;
    }


    /* ---------- INFO CARD ---------- */

    .info-card {
        width: 100%;

        padding: 21px;

        border-radius: 14px;
    }

    .info-card:hover {
        transform: translateY(-3px);
    }

    .info-icon {
        width: 45px;
        height: 45px;

        margin-bottom: 12px;

        font-size: 18px;
    }

    .info-card h3 {
        font-size: 1rem;
    }

    .info-card p {
        font-size: 0.9rem;

        overflow-wrap: anywhere;
    }


    /* ---------- SOCIAL BUTTONS ---------- */

    .social-links {
        display: flex;
        flex-wrap: wrap;

        gap: 9px;

        margin-top: 12px;
    }

    .social-btn {
        flex: 1 1 auto;

        justify-content: center;

        min-width: 120px;

        padding: 10px 14px;

        font-size: 0.82rem;
    }


    /* ---------- FORM CARD ---------- */

    .form-card {
        width: 100%;

        padding: 25px 18px;

        border-radius: 14px;
    }

    .form-card h2 {
        font-size: 1.35rem;

        line-height: 1.4;
    }

    .form-card .subtitle {
        font-size: 0.88rem;

        line-height: 1.6;

        margin-bottom: 22px;
    }


    /* ---------- FORM ROW ---------- */

    .form-row {
        display: flex;
        flex-direction: column;

        gap: 0;

        width: 100%;
    }

    .form-group {
        width: 100%;

        margin-bottom: 17px;
    }

    .form-group label {
        font-size: 0.82rem;
    }


    /* ---------- INPUTS ---------- */

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;

        min-width: 0;

        padding: 13px 14px;

        font-size: 16px;

        border-radius: 10px;
    }

    .form-group textarea {
        min-height: 140px;
    }


    /* ---------- SUBMIT BUTTON ---------- */

    .submit-btn {
        width: 100%;

        min-height: 52px;

        padding: 14px;

        font-size: 0.95rem;
    }


    /* ---------- MESSAGES ---------- */

    .msg {
        width: 100%;

        padding: 13px;

        font-size: 0.85rem;

        line-height: 1.5;
    }


    /* ---------- MAP ---------- */

    .map-section {
        width: 100%;
    }

    .map-placeholder {
        width: 100%;

        height: 230px;

        padding: 20px;

        text-align: center;
    }

    .map-pin {
        font-size: 2rem;
    }

    .map-placeholder h3 {
        font-size: 1.1rem;
    }

    .map-placeholder p {
        font-size: 0.85rem;

        max-width: 90%;

        line-height: 1.5;
    }


    /* ---------- FAQ ---------- */

    .faq-section {
        width: 100%;

        padding: 50px 16px;
    }

    .faq-section h2 {
        font-size: 1.7rem;

        line-height: 1.3;

        margin-bottom: 25px;
    }

    .faq-list {
        width: 100%;

        gap: 10px;
    }

    .faq-item {
        width: 100%;

        border-radius: 11px;
    }

    .faq-question {
        width: 100%;

        padding: 16px;

        gap: 12px;

        font-size: 0.9rem;

        line-height: 1.5;
    }

    .faq-question span:first-child {
        min-width: 0;
    }

    .faq-toggle {
        flex-shrink: 0;

        font-size: 1.2rem;
    }

    .faq-answer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .faq-item.open .faq-answer {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
    }

    .faq-answer p {
        font-size: 0.85rem;

        line-height: 1.6;
    }


    /* ---------- FOOTER ---------- */

    footer {
        width: 100%;

        padding: 18px 15px;

        font-size: 12px;

        line-height: 1.5;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .navbar {
        padding: 12px 15px;
    }

    .logo {
        font-size: 19px;
    }

    .logo-icon {
        width: 29px;
        height: 29px;
    }

    .menu-toggle {
        width: 26px;
        height: 19px;
    }


    /* HERO */

    .contact-hero {
        padding: 45px 16px 38px;
    }

    .contact-hero h1 {
        font-size: 1.65rem;
    }

    .contact-hero p {
        font-size: 0.88rem;
    }


    /* CONTACT */

    .contact-section {
        padding: 35px 13px;
    }

    .contact-info {
        gap: 13px;
    }

    .bikesh-card {
        height: 175px;
    }

    .info-card {
        padding: 18px;
    }


    /* FORM */

    .form-card {
        padding: 22px 15px;
    }

    .form-card h2 {
        font-size: 1.2rem;
    }

    .form-card .subtitle {
        font-size: 0.82rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;

        font-size: 16px;
    }

    .form-group textarea {
        min-height: 125px;
    }


    /* SOCIAL */

    .social-links {
        flex-direction: column;
    }

    .social-btn {
        width: 100%;
        min-width: 0;
    }


    /* MAP */

    .map-placeholder {
        height: 210px;
    }


    /* FAQ */

    .faq-section {
        padding: 42px 13px;
    }

    .faq-section h2 {
        font-size: 1.45rem;
    }

    .faq-question {
        padding: 14px;

        font-size: 0.84rem;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }

}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .navbar {
        padding: 11px 12px;
    }

    .logo {
        font-size: 17px;
    }

    .logo-icon {
        width: 26px;
        height: 26px;
    }

    .contact-hero h1 {
        font-size: 1.45rem;
    }

    .contact-hero p {
        font-size: 0.82rem;
    }

    .contact-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .form-card {
        padding: 19px 13px;
    }

    .info-card {
        padding: 16px;
    }

    .faq-section {
        padding-left: 10px;
        padding-right: 10px;
    }

}
```


