/* ===========================
   BASE RESET
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* ===========================
   CONTAINERS
=========================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===========================
   HEADER
=========================== */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links li a {
    text-decoration: none;
    color: #0d141a;
    font-weight: 500;
    position: relative;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #ff3b3f;
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #222;
    margin-bottom: 5px;
    border-radius: 2px;
}

.overlay-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.overlay-menu.active {
    display: flex;
}

.overlay-menu a {
    font-size: 2rem;
    color: #0d141a;
    text-decoration: none;
    font-weight: 600;
}

.overlay-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7) !important;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    margin-bottom: 30px;
}

.btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    background: #ff3b3f;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e63438;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
    padding: 80px 0;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-top-row {
    display: flex;
    gap: 40px;
}

.about-text {
    flex: 0 0 50%;
}

.about-text h2 {
    font-size: 2.2rem;
    color: #ff3b3f;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #56585E;
}

.about-stats {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    height: 100%;
}

.about-stats .stat {
    text-align: center;
}

.about-stats h3 {
    font-size: 2.5rem;
    color: #D7263D;
    margin-bottom: 5px;
}

.about-stats p {
    font-size: 1rem;
    color: #56585E;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* ===========================
   SERVICES SECTION
=========================== */
.services-container {
    padding: 80px 0;
    text-align: center;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,59,63,0.2);
}

.service-card h3 {
    color: #ff3b3f;
    margin: 15px 0 10px;
}

/* Services Page */
.services-page {
  background: #fdfdfd;
  padding: 60px 0;
  font-family: 'Arial', sans-serif;
}

.services-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.services-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.services-subtitle {
  font-size: 16px;
  color: #555;
}

.services-cta .btn-primary {
  background: #E53935;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.services-cta .btn-primary:hover {
  background: #c62828;
  transform: translateY(-2px);
}

.service-box {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.service-name {
  font-size: 20px;
  font-weight: 600;
  color: #222;
}

.service-price {
  font-size: 18px;
  font-weight: 700;
  color: #E53935;
}

.service-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.service-pill {
  background: #f2f2f2;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  color: #555;
}

.service-divider {
  height: 1px;
  background: #eee;
  margin-bottom: 15px;
}

.service-book-btn {
  display: inline-block;
  background: #E53935;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.service-book-btn:hover {
  background: #c62828;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .service-box {
    flex: 1 1 48%;
  }
}

@media (max-width: 768px) {
  .service-box {
    flex: 1 1 100%;
  }

  .services-topbar {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===========================
   SUBSCRIBE SECTION
=========================== */
.subscribe {
    position: relative;
    width: 100%;
}

.subscribe-bg {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: url('../images/Rider.png') center/cover no-repeat;
    background: url('../images/Rider.png') center/cover no-repeat !important;
}

.subscribe-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.subscribe-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.subscribe-container h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.subscribe-container p {
    font-size: 1.25rem;
}

.subscribe-container form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-container input {
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
}

.subscribe-container button {
    padding: 15px 30px;
    background: #ff3b3f;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-container button:hover {
    background: #e63438;
}

/* ===========================
   FOOTER SECTION (REFINED)
=========================== */

footer {
    background: #111;
    color: #fff;
    padding: 70px 0 30px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* TOP SECTION */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* BRAND */
.footer-logo img {
    width: 140px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #ff3b3f;
}

/* CONTACT FORM */
.footer-contact-form h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-contact-form p {
    margin-bottom: 10px;
}

.footer-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: none;
    font-size: 0.9rem;
    outline: none;
}

.footer-contact-form textarea {
    min-height: 90px;
    resize: vertical;
}

.footer-contact-form button {
    margin-top: 8px;
    padding: 11px;
    border-radius: 6px;
    border: none;
    background: #ff3b3f;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-contact-form button:hover {
    background: #e63438;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.85rem;
}

/* SOCIALS */
footer .socials {
    display: flex;
    gap: 14px;
}

footer .socials img {
    width: 30px;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

footer .socials img:hover {
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===========================
   SERVICES PAGE
=========================== */
.page-hero {
    padding: 70px 0 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.page-hero-container {
    text-align: center;
    max-width: 850px;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: #0d141a;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.15rem;
    color: #56585E;
    line-height: 1.7;
}

.services-page {
    padding: 70px 0;
}

.services-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

.services-title {
    font-size: 2rem;
    color: #0d141a;
    margin-bottom: 6px;
}

.services-subtitle {
    color: #56585E;
    font-size: 1.05rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-box {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px 22px;
    background: #fff;
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: rgba(255,59,63,0.25);
}

.service-box-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 14px;
}

.service-box h3 {
    font-size: 1.25rem;
    color: #0d141a;
    line-height: 1.3;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff3b3f;
    white-space: nowrap;
}

.service-price span {
    font-size: 1rem;
    font-weight: 700;
    margin-right: 2px;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.service-pill {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #eee;
    font-size: 0.95rem;
    color: #56585E;
    background: #fafafa;
}

.service-divider {
    height: 1px;
    background: #eee;
    margin: 16px 0;
}

.service-book-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 14px;
    border-radius: 12px;
    background: #ff3b3f;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.service-book-btn:hover {
    background: #e63438;
}

.pickup-strip {
    margin-top: 35px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
}

.pickup-strip-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.pickup-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
}

.pickup-title h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #0d141a;
}

.pickup-title p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

.pickup-prices-inline {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.98rem;
    color: #0d141a;
}

.pickup-prices-inline span {
    background: #fafafa;
    border: 1px solid #eee;
    padding: 7px 10px;
    border-radius: 999px;
}

.pickup-prices-inline b {
    margin-right: 6px;
    color: #0d141a;
}

.pickup-note-inline {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.4;
}

/* ===========================
   RESPONSIVE
=========================== */
@media(max-width: 992px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }

    .about-container { flex-direction: column; text-align: center; }
    .about-top-row { flex-direction: column; gap: 30px; }
    .about-text, .about-stats { flex: 1 1 100%; text-align: center; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .subscribe-container h2 { font-size: 2.2rem; }
    .subscribe-container p { font-size: 1.1rem; }
    .subscribe-container form { flex-direction: column; }

    .footer-top { flex-direction: column; align-items: center; text-align: center; gap: 35px; }
    .footer-links { justify-content: center; align-items: center; gap: 10px; }
    .footer-contact-form form { flex-direction: column; max-width: 100%; width: 100%; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }

    .service-grid { grid-template-columns: 1fr; }
    .services-topbar { flex-direction: column; align-items: flex-start; }
    .page-hero h1 { font-size: 2.1rem; }
}


/* Pricing Section */
.pricing-section {
  background: #fff;
  padding: 60px 0;
  font-family: 'Arial', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.pricing-intro {
  text-align: center;
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
  color: #555;
}

.pricing-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-column {
  flex: 1 1 48%;
}

.service-item {
  background: #fafafa;
  padding: 25px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tick {
  color: #E53935; /* bright red */
  font-weight: bold;
  font-size: 18px;
}

.service-price {
  color: #E53935; /* bright red */
  font-weight: 700;
  margin-left: auto;
  font-size: 18px;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #555;
}

.service-list li::before {
  content: "✔";
  color: #E53935;
  position: absolute;
  left: 0;
  font-size: 14px;
  top: 1px;
}

@media (max-width: 768px) {
  .pricing-grid {
    flex-direction: column;
  }
  .pricing-column {
    flex: 1 1 100%;
  }
}
/* ===========================
   BIKE 50-50 LAYOUT FIX
=========================== */

.bike-wrapper{
    display:flex;
    gap:60px;
    align-items:flex-start;
}

.gallery{
    flex:0 0 50%;
    max-width:50%;
}

.bike-right{
    flex:0 0 50%;
    max-width:50%;
}

/* Responsive */
@media(max-width: 992px){
    .bike-wrapper{
        flex-direction:column;
    }
    .gallery,
    .bike-right{
        flex:1 1 100%;
        max-width:100%;
    }
}


/* Gallery */
.gallery{
    display:flex;
    gap:18px;
}

.thumbnails{
    display:grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(7, 85px);
    gap:12px;
}

.thumb-img{
    width:85px;
    height:85px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:all .25s ease;
    border:2px solid transparent;
}

.thumb-img:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 20px rgba(0,0,0,.15);
}

.thumb-img.active{
    border-color:#ff2d2d;
}

/* Main Image */
.main-image-container{
    flex:1;
    height:580px;
    overflow:hidden;
    border-radius:16px;
    position:relative;
    background:#111;
}

#mainImg{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .15s ease, opacity .25s ease;
}

/* Info Section */
.bike-right h1{
    font-size:34px;
    margin-bottom:10px;
}

.bike-price{
    font-size:32px;
    font-weight:900;
    color:#ff2d2d;
    margin-bottom:8px;
}

.price-note{
    font-size:14px;
    color:#777;
    margin-bottom:25px;
}

/* Specs Grid */
.specs-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px 40px;
    margin-bottom:25px;
    font-size:15px;
}

.specs-grid div{
    display:flex;
    justify-content:space-between;
    border-bottom:1px solid #eee;
    padding-bottom:6px;
}

/* Enquiry Box */
.enquiry-box{
    margin-top:25px;
    padding:28px;
    border-radius:16px;
    background:#fff;
    border:1px solid #eee;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
    position:sticky;
    top:100px;
}

.enquiry-box h3{
    margin-bottom:18px;
}

.enquiry-box input,
.enquiry-box textarea{
    width:100%;
    padding:14px;
    border-radius:10px;
    border:1px solid #ddd;
    margin-bottom:14px;
    transition:.2s;
}

.enquiry-box input:focus,
.enquiry-box textarea:focus{
    border-color:#ff2d2d;
    box-shadow:0 0 0 3px rgba(255,45,45,.1);
    outline:none;
}

.enquiry-box button{
    width:100%;
    padding:16px;
    background:#ff2d2d;
    color:#fff;
    border:none;
    border-radius:10px;
    font-weight:700;
    font-size:15px;
    cursor:pointer;
    transition:.25s;
}

.enquiry-box button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 25px rgba(255,45,45,.35);
}

/* Premium Overlay */
.overlay{
    position:fixed;
    inset:0;
    backdrop-filter:blur(6px);
    background:rgba(0,0,0,.4);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999;
    animation:fadeIn .3s ease;
}

.overlay-box{
    background:#fff;
    padding:45px;
    border-radius:16px;
    text-align:center;
    max-width:420px;
    box-shadow:0 15px 50px rgba(0,0,0,.25);
}

@keyframes fadeIn{
    from{opacity:0}
    to{opacity:1}
}
/* ===========================
   BIKE DETAILS IMPROVEMENT
=========================== */
.bike-right h1 {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.bike-price {
    font-size: 34px;
    font-weight: 900;
    color: #ff2d2d;
    margin-bottom: 5px;
}

.price-note {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

/* WhatsApp circular button */
.whatsapp-btn {
    position: absolute;
	right: 20px;
	top: 180px;
}

.whatsapp-btn img {
    width: 100px;
    border-radius: 50%;
}

/* Specs Grid Highlight */
.specs-grid div {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff8f8;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
    transition: all 0.25s ease;
}

.specs-grid div:hover {
    background: #ffefef;
    box-shadow: 0 4px 15px rgba(255, 45, 45, 0.12);
}

.specs-grid span:first-child {
    color: #ff2d2d;
}

/* Description */
.bike-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* ===========================
   CONTACT & SERVICES MOBILE FIX
=========================== */

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media(max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-container iframe {
        width: 100% !important;
        height: 300px !important;
    }

    .card {
        padding: 20px;
    }
}

/* Services Page */
.pickup-strip-row {
    flex-wrap: wrap;
}
.pickup-prices-inline {
    flex-wrap: wrap;
    gap: 10px;
}
@media(max-width: 768px) {
    .pickup-prices-inline span {
        flex: 1 1 100%;
        text-align: left;
    }

    .service-grid {
        grid-template-columns: 1fr !important;
    }

    .service-box {
        width: 100%;
    }

    .services-topbar {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}
/* SERVICE GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-box h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-box .price {
    color: #e53935;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box ul {
    padding-left: 20px;
    margin: 0;
}

.service-box ul li {
    margin-bottom: 8px;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-box {
        padding: 15px;
    }
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
	a.btn.btn-primary {
		width: 200px;
	}
}
