/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: #f5f7fa;
    color: #1f1f1f;
}

/* TOP BAR */
.topbar {
    background: #224880;
    color: white;
    font-size: 0.9rem;
    padding: 6px 40px;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left span,
.topbar-left a {
    margin-right: 16px;
    color: white;
    text-decoration: none;
}

/* HEADER */
.header {
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo img { height: 65px; }

.nav a {
    margin: 0 14px;
    color: #224880;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}
.nav a:hover { color: #17365e; }
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #224880;
    transition: 0.25s;
}
.nav a:hover::after { width: 100%; }

.request-btn {
    padding: 10px 20px;
    background: #224880;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(34,72,128,0.35);
}

/* HERO */
.hero {
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.hero-box {
    position: absolute;
    background: rgba(0, 49, 92, 0.88);
    padding: 36px 46px;
    border-radius: 20px;
    text-align: center;
    color: white;
    max-width: 580px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}
.hero-box h1 {
    font-size: 2.4rem;
    font-weight: 800;
}
.hero-box h2 {
    font-size: 1.8rem;
    margin-top: 4px;
}
.hero-box p {
    margin-top: 12px;
    opacity: 0.9;
}

/* PRICES */
.prices-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: -80px;
    padding: 0 40px 60px;
}
.price-card {
    background: #ffffff;
    width: 260px;
    padding: 30px 20px;
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    text-align: center;
    transition: 0.3s ease;
}
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(34,72,128,0.25);
}
.price-icon {
    width: 42px;
    margin-bottom: 10px;
}
.price-number {
    font-size: 2rem;
    color: #1E428A;
    font-weight: 800;
    margin: 5px 0;
}
.updated {
    font-size: 0.9rem;
    opacity: 0.65;
}

/* ABOUT */
/* ================= ABOUT SECTION FIX ================= */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* balanced two-column layout */
    align-items: start;
    gap: 40px;
    padding: 60px 40px;
}

.about-left {
    width: 100%;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}
.about-left h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0A3D80;   /* SAME BLUE AS OUR SERVICES */
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


.stat-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1E428A;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-images img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.about-section h2 {
    color: #1A73E8;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .about-section {
        grid-template-columns: 1fr;
    }
}


/* SERVICES */
.services-section {
    padding: 70px 40px;
    background: #ffffff;
    text-align: center;
}
.services-section h2 {
    font-size: 2.1rem;
    color: #224880;
    font-weight: 800;
}
.section-desc {
    color: #555;
    margin-bottom: 30px;
}
.section-desc {
    font-weight: 500;        /* slightly bold */
    color: #333;             /* darker text */
    font-size: 18px;
    margin-top: 10px;
    text-align:center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.service-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}
.service-card {
    padding-top: 20px;
    padding-bottom: 30px;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(34,72,128,0.32);
    border: 2px solid #224880;
}

/* INDUSTRIES */
.industries-section {
    background: #eef3f9;
    padding: 70px 40px;
    text-align: center;
}
.industries-section h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #224880;
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 22px;
}
.industry-item {
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 600;
    color: #224880;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.industry-item:hover {
    background: #224880;
    color: #ffffff;
    transform: translateY(-6px);
}

/* REQUEST FORM */
.request-section {
    padding: 70px 40px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}
.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #224880;
}
.section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.7;
}
.diesel-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.form-group {
    text-align: left;
}
.form-group.full {
    grid-column: span 2;
}
.diesel-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
.diesel-form input,
.diesel-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #cccccc;
    font-size: 0.98rem;
}
.submit-btn {
    grid-column: span 2;
    padding: 14px;
    background: #224880;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
}

/* FOOTER */
.footer {
    background: #224880;
    color: #ffffff;
    padding: 40px 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.footer-col a {
    color: #dfe8f5;
    display: block;
    margin: 6px 0;
    text-decoration: none;
}
.footer-col a:hover {
    color: #ffffff;
}

/* FADE-UP ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .prices-section { flex-wrap: wrap; margin-top: 0; }
    .about-section { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .prices-section,
    .services-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .header { flex-direction: column; gap: 10px; }
}
/* ===== FIX ABOUT SECTION STATS SIDE-BY-SIDE ===== */

.about-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    margin-top: 30px !important;
}

.stat-box {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1E428A;
}
/* ===== HOME HERO (clean + doesn't hide Prices) ===== */
.hero{
  position: relative;
  min-height: 70vh;          /* KEY: smaller than full screen */
  max-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 60px;
}

/* background image covers the whole hero */
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 1;
}

/* text box */
.hero-box{
  position: relative;
  z-index: 2;
  max-width: 560px;
}

/* Mobile */
@media (max-width: 900px){
  .hero{ padding: 30px; min-height: 60vh; }
  .hero-box{ max-width: 100%; }
}

/* Top Bar Social Icons */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 1rem;
    transition: 0.3s;
}

.social-icon:hover {
    color: #d0e6ff;
}
.footer-social img {
    width: 28px;
    margin: 0 8px;
    opacity: .8;
    transition: .3s;
}


.service-card .service-icon {
    font-size: 48px;
    color: #1e3c72; /* Your theme blue */
    margin-bottom: 15px;
}
/* --- Services Title Styling --- */
.services-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0D4C92, #1A73E8);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    /* animation */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 1s ease forwards;
}

/* --- Small Icon Next to the Title --- */
/* SERVICE ICONS – size + solid PetroLine blue */
.service-card .service-icon {
    width: 55px;              /* icon size */
    height: 55px;
    display: block;
    margin: 0 auto 12px;      /* center + small gap below */
    object-fit: contain;

    /* force icon to PetroLine blue (#1E428A) */
    filter: brightness(0) saturate(100%)
            invert(20%) sepia(50%) saturate(1200%)
            hue-rotate(200deg) brightness(90%) contrast(95%);
}

/* --- Fade + Slide Animation --- */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Icon Smooth Floating Animation --- */
@keyframes iconFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}
/* --- Matching Gradient for About Title --- */
.about-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0D4C92, #1A73E8);
    -webkit-background-clip: text;
    color: transparent;

    /* same animation as Our Services */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 1s ease forwards;
}
.service-icon {
    width: 60px;   /* change this value */
    height: 60px;  /* change this value */
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover animation */
.service-card:hover .service-icon {
    transform: scale(1.15);
    filter: brightness(1.2);
}

}
/* Force all service icons to match PetroLine blue color */
.service-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px auto;
    filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(95%);
    transition: 0.2s ease;
}

/* Slight hover effect - clean and modern */
.service-icon:hover {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(9%) sepia(81%) saturate(4100%) hue-rotate(210deg) brightness(85%) contrast(96%);
}
.service-icon-wrapper {
    width: 85px;
    height: 85px;
    margin: 0 auto 15px auto;
    background: #0a3d8c10; /* very soft blue */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service-card .service-icon {
    width: 65px !important;
    height: 65px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 15px auto !important;
}

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18) !important;
}
/* --- CLEAN FINAL SERVICE ICON SYSTEM --- */

.service-card {
    position: relative;
    padding: 30px 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(34,72,128,0.25);
}

/* icon size + dark blue color */
.service-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;

    /* apply PetroLine dark blue */
    filter: brightness(0) saturate(100%) invert(15%) sepia(95%)
            saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(95%);
    
    transition: 0.3s ease;
}

/* hover animation */
.service-card:hover .service-icon {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(9%) sepia(81%)
            saturate(4100%) hue-rotate(210deg) brightness(85%) contrast(96%);
}/* SERVICE CARD POP HOVER */
.service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* ICON SIZE */
.service-icon {
    width: 70px;
    height: auto;
    transition: transform 0.25s ease, filter 0.25s ease;
}

/* ICON ON HOVER - CHANGE COLOR */
.service-card:hover .service-icon {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(20%) sepia(80%) saturate(2500%) hue-rotate(200deg);
}



/* === FINAL SERVICE ICON STYLE (CLEAN + WORKING) === */

.service-card {
    padding: 30px 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    animation: float 5s ease-in-out infinite;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.22);
}

.service-icon {
    width: 65px;
    height: auto;
    margin: 0 auto 12px;
    display: block;
    object-fit: contain;

    /* PetroLine Blue */
    filter: brightness(0) saturate(100%) invert(15%) sepia(95%)
            saturate(2000%) hue-rotate(200deg) brightness(90%) contrast(95%);
    transition: 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15);
    filter: brightness(0) saturate(100%) invert(9%) sepia(81%)
            saturate(4100%) hue-rotate(210deg) brightness(85%) contrast(96%);
}

/* Float Animation */
@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.3s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }
.service-card:nth-child(4) { animation-delay: 0.9s; }
.service-card:nth-child(5) { animation-delay: 1.2s; }
/* Restore icon hover effect */
.service-card:hover .service-icon {
    filter: brightness(0) saturate(100%) invert(29%) sepia(90%) saturate(1500%) hue-rotate(195deg) brightness(100%) contrast(95%);
    transition: 0.3s ease-in-out;
}
/* Center wrapper for title + icon */
.services-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

/* Style the icon above services title */
.services-title-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;

    /* STOP rotation or animation from global fade-up */
    transform: none !important;
    animation: none !important;
}

/* Style title text */


/* Keep hover animation ONLY for service cards */
.service-card:hover .service-icon {
    transform: scale(1.1);
    transition: 0.3s ease;
}
/* Center everything in the SERVICES section */
.services-section {
    text-align: center;
}

/* Wrapper: icon + title in a centered row */
.services-title-wrapper {
    display: inline-flex;          /* shrink to content */
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 8px auto;       /* center horizontally */
}

/* Services title text: black */
.services-title {
    color: #111;                   /* black-ish */
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
/* ================================
   STOP TITLE ICON FROM MOVING
   ================================ */
.title-icon {
    width: 42px;              /* control size */
    height: auto;
    display: block;

    animation: none !important;
    transform: none !important;
    transition: none !important;
}
.services-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.industries-title {
    color: #5fa8ff; /* light blue */
}
.industries-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1A73E8; /* light blue */
}

.social-icon {
    width: 42px;
    height: 42px;
    background: #163e7a; /* same family as header */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1); /* white icons */
}

/* Hover = light blue (like header) */
.social-icon:hover {
    background: #5fa8ff;
    transform: translateY(-3px);
}
.site-footer {
    background: #0f2f5c;
    color: #fff;
    font-size: 15px;
}



.footer-logo {
    width: 200px;       /* was ~160 */
    max-width: 100%;
    margin-bottom: 20px;
}


.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #dbe7ff;
    text-decoration: none;
}

.footer-col a:hover {
    color: #6fb6ff;
}
.footer-col {
    padding-top: 5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: #5fa8ff;
    transform: translateY(-3px);
}

.footer-col input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-top: 10px;
}


/* FOOTER BASE */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e9f2;
    color: #1c2b4a;
    font-size: 15px;
}





/* HEADINGS */
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0f2f5c;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #425b84;
    text-decoration: none;
}

.footer-col a:hover {
    color: #3b82f6;
}

/* SOCIAL ICONS */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-socials img {
    width: 20px;
    height: 20px;
}

.footer-socials a:hover {
    background: #3b82f6;
}

/* NEWSLETTER */
.newsletter-box {
    display: flex;
    margin-top: 12px;
}

.newsletter-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #dbe3f0;
    border-radius: 6px 0 0 6px;
    outline: none;
}

.newsletter-box button {
    padding: 10px 18px;
    border: none;
    background: #0f2f5c;
    color: #fff;
    font-weight: 600;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-box button:hover {
    background: #3b82f6;
}

/* BOTTOM BAR */
.footer-bottom {
    background: #0f2f5c;   /* SAME as header */
    color: #ffffff;
    text-align: center;
    padding: 18px;
    font-size: 14px;
}


.footer-brand p {
    max-width: 320px;
    line-height: 1.6;
    margin-top: 10px;
}
.footer {
    background: #ffffff;
    border-top: 1px solid #e5e9f0;
    margin-top: 60px;
}



.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0f2f5a;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    color: #555;
    text-decoration: none;
}

.footer-col p {
    line-height: 1.8;
    color: #555;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials img {
    width: 36px;
    transition: transform 0.3s;
}

.footer-socials img:hover {
    transform: scale(1.1);
}

.newsletter-box {
    display: flex;
    margin-top: 15px;
}

.newsletter-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px 0 0 6px;
}

.newsletter-box button {
    background: #0f2f5a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

.footer-bottom {
    background: #0f2f5a; /* SAME AS HEADER */
    color: #ffffff;
    text-align: center;
    padding: 18px 10px;
    font-size: 14px;
}

.footer-socials img {
    background: #f2f6fb;
    padding: 10px;
    border-radius: 50%;
}

.footer-socials img:hover {
    background: #e6f0ff;
}
.footer{
    background:#123563;
    color:#fff;
    padding:60px 0 20px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer h3,
.footer h4{
    margin-bottom:15px;
}

.footer p{
    color:#d6e2f3;
    line-height:1.6;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

.footer ul li a{
    color:#d6e2f3;
    text-decoration:none;
}

.footer ul li a:hover{
    color:#6bb8ff;
}

/* SOCIAL ICONS */
.footer-socials{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.footer-socials a{
    width:42px;
    height:42px;
    background:#1f4f88;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.footer-socials img{
    width:18px;
    height:18px;
}

.footer-socials a:hover{
    background:#6bb8ff;
}

/* BOTTOM */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.2);
    margin-top:40px;
    padding-top:15px;
    text-align:center;
    font-size:14px;
    color:#c7d9ef;
}

/* ===== FIXES / OVERRIDES (clean, no duplicates) ===== */

/* Prevent any unwanted spinning on title icons */
.title-icon,
.section-icon,
.about-icon-img,
.services-icon-img,
.industry-icon-img {
  animation: none !important;
  transform: none;
}

/* Generic title icon sizing */
.title-icon,
.section-icon,
.about-icon-img,
.services-icon-img,
.industry-icon-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  vertical-align: middle;
}

/* Center section titles that include an icon */
.services-title,
.about-title,
.industries-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  margin: 0 auto 8px;
}

/* Services card icons sizing */
.service-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
  transition: transform 200ms ease, filter 200ms ease, opacity 200ms ease;
}

/* Light-blue hover effect on service icons */
.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.15) saturate(1.35);
}

/* Hover light-blue for section title icons (About + Industries + Services) */
.services-title img:hover,
.about-title img:hover,
.industries-title img:hover,
.title-icon:hover {
  filter: brightness(1.2) saturate(1.35);
}

/* ===== FOOTER (white background + blue copyright bar) ===== */
.footer {
  background: #ffffff;
  color: #1c2b3a;
  padding: 56px 0 0;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  color: #1b6fd8;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.footer-brand h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #0e2d57;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #0e2d57;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-contact p {
  margin: 10px 0;
}

/* Social icons in one line */
        

/* Responsive footer */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: #2f80ed;
}

.footer-social a:hover img {
  filter: brightness(0) invert(1);
}
/* === FOOTER FIX (FORCE CLEAN LAYOUT) === */

.footer-social {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5fb;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: #2f80ed;
}

.footer-social a:hover img {
  filter: brightness(0) invert(1);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e6e6e6;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  color: #0b2d5c;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p,
.footer-col a {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footer-col a:hover {
  color: #1e88e5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* SOCIAL ICONS */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.footer-social img:hover {
  transform: translateY(-3px);
}

/* COPYRIGHT BAR */
.footer-bottom {
  background: #0b2d5c;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  margin-top: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}
@media (max-width: 768px){
  .contact-hero{
    align-items: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ================= SAFE FOOTER OVERRIDES ================= */

/* limit footer width */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* prevent huge height */
.footer {
  padding: 40px 0 0 !important;
}

/* FIX social icons clarity */
.footer-social img,
.footer-socials img {
  filter: none !important;
  opacity: 1 !important;
}

/* clean hover (no blur) */
.footer-social a:hover img,
.footer-socials a:hover img {
  filter: none !important;
  transform: scale(1.05);
}

/* newsletter alignment */
.newsletter-box,
.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-box input,
.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
}

.newsletter-box button,
.newsletter-form button {
  padding: 10px 18px;
  background: #0f2f5c;
  color: #fff;
  border: none;
  border-radius: 0 6px 6px 0;
}

/* footer columns tighter */
.footer-col {
  max-width: 350px;
}
/* ===== FOOTER VISUAL WIDTH FIX ===== */

/* full-width background */
.site-footer {
  background: #ffffff;
  padding-top: 8px;
}


/* mobile */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ===== REMOVE EXCESS SPACE BEFORE FOOTER ===== */
.request-section {
  padding-bottom: 30px !important;
}

.site-footer {
  margin-top: 0 !important;
  padding-top: 8px !important;
}

.footer-social a:hover {
  background: #1e88e5;
  color: #fff;
  transform: translateY(-3px);
}
/* ================= SAFE FINAL FOOTER FIX ================= */

/* footer base */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e9f2;
  padding-top: 24px;
}

/* control visual width */
.site-footer .footer-inner {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}

/* layout */
.site-footer .footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}

/* text */
.site-footer .footer-col p {
  margin: 6px 0;
  line-height: 1.5;
}

/* social */
.site-footer .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

/* copyright bar – FIXED FULL WIDTH */
.site-footer .footer-bottom {
  width: 100%;
  background: #0b2d5c;
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  margin-top: 24px;
}

/* mobile */
@media (max-width: 768px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .footer-social {
    justify-content: center;
  }
}

/* === SMALL SAFE FOOTER FIX === */
.site-footer {
  padding-top: 20px;
}

.footer-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-bottom {
  margin-top: 20px;
}
/* ===== FINAL FOOTER SIZE & ALIGNMENT FIX ===== */

/* Reduce overall footer height */
.site-footer {
  padding-top: 12px;
}

/* Reduce container vertical padding */
.site-footer .footer-container {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Reduce space before copyright */
.site-footer .footer-bottom {
  margin-top: 16px;
  padding: 12px;
}

/* Push logo & brand content more to the left */
.site-footer .footer-container {
  align-items: flex-start;
}

/* Remove extra spacing above logo */
.footer-logo {
  margin-top: 0;
  margin-left: 0;
}

/* Make first column hug the left edge */
.site-footer .footer-col:first-child {
  padding-left: 0;
}
/* ===== ACTUAL FOOTER HEIGHT REDUCTION ===== */

/* 1. Make logo smaller */
.footer-logo {
  max-width: 140px;   /* was too big */
  margin-bottom: 8px;
}

/* 2. Tighten description text */
.site-footer .footer-col p {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* 3. Reduce social icons vertical impact */
.footer-social {
  margin-top: 8px;
}

.footer-social img {
  width: 32px;
  height: 32px;
}

/* 4. Reduce newsletter block height */
.newsletter h4 {
  margin-bottom: 6px;
}

.newsletter-form {
  margin-top: 6px;
}

/* 5. Pull first column more to the left */
.site-footer .footer-inner {
  padding-left: 0;
}

.site-footer .footer-col:first-child {
  padding-left: 0;
}
/* === CONTACT + NEWSLETTER SIDE BY SIDE === */

.footer-contact {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-contact .contact-info {
  flex: 1;
}

.footer-contact .newsletter {
  flex: 1;
  text-align: right;
}

.footer-contact .newsletter-form {
  justify-content: flex-end;
}
/* === FORCE NEWSLETTER TO STACK CORRECTLY === */

.footer-contact .newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-contact .newsletter h4 {
  margin: 0 0 12px 0;
}

.footer-contact .newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 0;
}
/* ===== FINAL NEWSLETTER COLUMN FIX ===== */

/* make footer 4 columns */
.site-footer .footer-container {
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
}

/* newsletter spacing */
.footer-newsletter p {
  font-size: 13px;
  margin-bottom: 10px;
}

/* keep input visible */
.footer-newsletter .newsletter-form {
  display: flex;
}

.footer-newsletter input {
  flex: 1;
}
/* ===== FINAL TOP BAR SOCIAL FIX (LOCKED) ===== */

.topbar {
  background: #224880;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Social container */
.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Icon buttons */
.topbar-social a {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;   /* force white */
  font-size: 16px;
  text-decoration: none;
}

/* Hover */
.topbar-social a:hover {
  background: rgba(255, 255, 255, 0.35);
}
/* ================= CONTACT PAGE ================= */

.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url("images/contact-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-box h2,
.contact-form-box h2 {
  margin-bottom: 20px;
  color: #0b2d5c;
}

.contact-info-box p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #333;
}

.contact-info-box i {
  color: #0b2d5c;
  margin-right: 8px;
}

.contact-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  background: #0b2d5c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.contact-social a:hover {
  background: #123b73;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form button {
  background: #0b2d5c;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #123b73;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

/* ===== FORCE HEADER STYLES ON ALL PAGES ===== */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 60px;
}

.main-nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #0b2d5c;
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a.active {
  color: #123b73;
}

.cta-btn {
  background: #0b2d5c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn:hover {
  background: #123b73;
}
/* Fix footer overlap on contact page */
.contact-section {
  margin-bottom: 80px;
}
.contact-social a {
  font-size: 16px;
}
/* CONTACT SOCIAL ICONS — INLINE SVG */

.contact-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  background: #0b2d5c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-social svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}
/* CONTACT SOCIAL ICONS — INLINE SVG */

.contact-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.contact-social a {
  width: 38px;
  height: 38px;
  background: #0b2d5c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-social svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* Contact page: keep layout centered and avoid excessive whitespace */
.contact-section {
  align-items: start;
}

.contact-info-box,
.contact-form-box {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* ===== Contact page background graphics ===== */
body.contact-page {
  background: #f3f6fb;
  position: relative;
  overflow-x: hidden;
}

body.contact-page::before,
body.contact-page::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,47,92,0.14), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

body.contact-page::before {
  top: 180px;
  left: -220px;
}

body.contact-page::after {
  top: 320px;
  right: -240px;
}

.contact-section,
.contact-hero,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ===== Contact social icons – outline style (like header) ===== */
.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.15); /* soft transparent */
  border: 1.5px solid #ffffff;
  color: #ffffff;

  text-decoration: none;
  transition: all 0.25s ease;
}

.contact-social a i {
  font-size: 17px;
  color: #ffffff;
}

/* Hover effect like header */
.contact-social a:hover {
  background: #ffffff;
}

.contact-social a:hover i {
  color: #0b2d5c;
}
/* ===== Contact: Make Get in Touch box blue + white text ===== */
.contact-info-box{
  background: #1f4e86;       /* same blue bar */
  color: #fff;
}

.contact-info-box h2{
  color: #fff;
}

.contact-info-box p{
  color: rgba(255,255,255,0.92);
}

.contact-info-box p i{
  color: #fff;
}
/* ===== Social icons perfectly centered ===== */

/* circles */
.contact-social a{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.70);
}

/* the icon itself */
.contact-social a i{
  display: block;
  line-height: 1;
  font-size: 18px;
  margin: 0;
  padding: 0;
  transform: translateY(0.5px); /* tiny optical fix for FA icons */
  color: #fff !important;
}
/* ===== CONTACT SOCIAL: ONLY hover becomes full white ===== */
.contact-info-box .contact-social a{
  background: transparent !important;
  border: 2px solid rgba(255,255,255,0.75) !important;
  color: #fff !important;

  width: 46px;
  height: 46px;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-info-box .contact-social a i{
  color: #fff !important;
  font-size: 18px;
  line-height: 1;
  display: block;
}

/* ✅ hover: full white circle */
.contact-info-box .contact-social a:hover{
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.contact-info-box .contact-social a:hover i{
  color: #1f4e86 !important;
}
/* ===== CONTACT PAGE HEADER IMAGE ===== */
.contact-hero{
  position: relative;
  height: 320px;

  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("images/contact-header.jpeg") center / cover no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;

  align-items: flex-start;   /* ← LEFT */
  text-align: left;          /* ← LEFT */
  padding-left: 120px;       /* ← SPACING */

  color: #ffffff;
}


/* text styling */
.contact-hero h1{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hero p{
  font-size: 16px;
  opacity: 0.95;
}
@media (max-width: 768px){
  .contact-hero{
    height: 260px;
    padding: 0 20px;
  }

  .contact-hero h1{
    font-size: 32px;
  }
}
/* ===== INDEX HERO: place text card nicely (fix jump + sizing) ===== */
.hero{
  position: relative;
  overflow: hidden;
}

/* the blue card */
.hero-box{
  position: absolute !important;
  left: 60px;             /* move card to left */
  bottom: 60px;           /* move card down */
  right: auto !important;
  top: auto !important;

  max-width: 520px;       /* control card width */
  padding: 36px 42px;
  border-radius: 22px;
  z-index: 2;
}

/* make headline not insanely huge */
.hero-box h1{
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 10px 0;
}

.hero-box h2{
  font-size: 30px;
  margin: 0 0 14px 0;
}

.hero-box p{
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 900px){
  .hero-box{
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 22px;
  }

  .hero-box h1{ font-size: 34px; }
  .hero-box h2{ font-size: 24px; }
}
/* ===== HERO (FULL COVER FIX) ===== */


/* make image a real background layer */
.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;/* HERO: show part of next section (Prices) on page load */
.hero{
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;

  height: clamp(420px, 58vh, 560px); /* ✅ not full screen */
}

  object-fit: cover;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* blue text box overlays image */
.hero-box{
  position: absolute;
  left: 60px;              /* change to right:60px if you want it right */
  bottom: 60px;
  z-index: 2;
  max-width: 580px;
}

/* mobile */
@media (max-width: 900px){
  .hero-box{
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}
@media (max-width: 768px){
  .hero{
    height: 420px;
  }
}
// Force-show any fade-up already in viewport on page load
window.addEventListener("load", () => {
  document.querySelectorAll(".fade-up").forEach(el => {
    const r = el.getBoundingClientRect();
    const inView = r.top < window.innerHeight * 0.9 && r.bottom > 0;
    if (inView) el.classList.add("visible");
  });
});
/* ===== Stop hero from overlapping next section ===== */
.hero {
  margin-bottom: 120px; /* creates breathing space below hero */
}
/* ===== Prices must sit above hero visually ===== */
.prices-section {
  position: relative;
  z-index: 5;
  margin-top: -50px; /* pulls prices upward cleanly */
}
/* =====================
   MOBILE FIXES
===================== */
@media (max-width: 768px) {

  /* HERO / HEADER */
  .hero,
  .hero-section {
    height: auto;
    padding: 60px 20px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    margin: 0;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content h2 {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 15px;
  }

  /* PRICE CARDS */
  .prices-grid,
  .cards,
  .price-cards {
    grid-template-columns: 1fr;
  }

  /* CONTACT PAGE */
  .contact-wrapper,
  .contact-container {
    grid-template-columns: 1fr;
  }

  /* BUTTONS */
  button,
  .btn {
    width: 100%;
  }
}
/* =========================
   MOBILE FIXES (GLOBAL)
========================= */
@media (max-width: 768px) {

  /* HERO */
  .hero {
    height: auto !important;
    padding: 20px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .hero-box {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  /* HEADER / NAV */
  .header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .request-btn {
    width: 100%;
    text-align: center;
  }

  /* REQUEST DIESEL FORM */
  .request-section {
    padding: 45px 16px !important;
  }

  .diesel-form {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
    gap: 14px !important;
  }

  .form-group.full {
    grid-column: span 1 !important;
  }

  .submit-btn {
    grid-column: span 1 !important;
    width: 100%;
  }

  /* PRICE CARDS spacing */
  .prices-section {
    margin-top: 20px !important;
    padding: 0 14px;
  }
}
