/********** Template CSS **********/
:root {
    --primary: #477CDF;
    --secondary: #292e3f;
    --light: #F8F9FA;
    --dark: #182333;
    --bs-primary: var(--primary);
    --bs-secondary: var(--secondary);
    --bs-light: var(--light);
    --bs-dark: var(--dark);
    --bs-link-color: var(--primary);
    --bs-link-hover-color: var(--primary);
    --brand-blue: #3B6BF2;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
    line-height: 36px;
    text-align: center;
    padding: 0;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/* core Bootstrap class overrides */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    opacity: .9;
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    color: var(--light);
    background-color: var(--primary);
    border-color: var(--primary);
}
.bg-primary {
    background-color: var(--primary) !important;
}
.text-primary {
    color: var(--primary) !important;
}
.border-primary {
    border-color: var(--primary) !important;
}
.navbar .btn.btn-primary {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
}
.navbar .btn.btn-primary:hover {
    filter: brightness(0.95);
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
    letter-spacing: .02em;
    font-weight: 600;
    color: #1f2937;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
    .navbar .btn.btn-primary {
        margin-top: .75rem;
    }
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu .dropdown-item {
    padding: .55rem 1rem;
}
.navbar-nav .nav-link.active,
.navbar-nav .dropdown-toggle.active,
.dropdown-menu .dropdown-item.active {
    color: #0d6efd !important;
}
.dropdown-menu .dropdown-item.active {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

/*** Hero ***/
.hero {
    position: relative;
    overflow: hidden;
}
.hero > img {
    width: 100%;
    height: 60vh; /* Set height to 60% of the viewport height to prevent overlap */
    object-fit: cover;
    display: block;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,.55) 0%,
        rgba(0,0,0,.25) 40%,
        rgba(0,0,0,0) 100%
    );
}
.hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    padding: 0 1rem;
    max-width: 960px;
}
.hero-cta {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-cta .btn {
    min-width: 220px;
    padding: 12px 18px;
    font-weight: 600;
}
@media (max-width: 575.98px) {
    .hero-content {
        top: auto;
        bottom: 1.25rem;
        transform: translateX(-50%);
    }
    .hero h1 { font-size: 1.75rem; }
    .hero p  { font-size: 1rem; }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta .btn {
        width: 100%;
        min-width: 0;
    }
}

.hero-band { min-height: 360px; }
.hero-band .hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0;
}
.hero-band .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,18,34,.55), rgba(7,18,34,.55));
    z-index: 1;
}
.hero-band .container { z-index: 2; }
.hero-residential.hero-band { min-height: 360px; }
header.position-relative .display-4 { text-shadow: 0 4px 18px rgba(0,0,0,.35); }
header.position-relative .btn-outline-light { border-width: 2px; }
@media (max-width: 767.98px) {
    header.position-relative img { max-height: 420px; }
    header.position-relative .display-4 { font-size: 2rem; }
    header.position-relative .lead { font-size: 1rem; }
}

/* Page header for other pages like 'about.html' */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(img/hero.jpg) center center no-repeat;
    background-size: cover;
}
.page-header .display-4, .page-header .breadcrumb .text-white { text-shadow: 0 3px 12px rgba(0,0,0,.35); }
.page-header .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

/*** Facts ***/
.facts-card { outline: none; }
.facts-item {
    position: relative;
    overflow: hidden;
    height: 320px;
    border-radius: .75rem;
}
.facts-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .5s ease;
}
.facts-overlay {
    position: absolute; inset: 0;
    padding: 28px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
}
.facts-overlay h1.display-1 {
    position: absolute; top: -18px; right: 8px;
    font-size: 6rem; line-height: 1;
    color: rgba(255,255,255,.18);
    font-weight: 800;
    pointer-events: none;
}
.facts-cta { letter-spacing: .08em; }
.facts-item:hover .facts-img { transform: scale(1.08); }
.facts-item:hover .facts-cta i { transform: translateX(4px); transition: transform .2s; }
@media (max-width: 575.98px) {
    .facts-item { height: 260px; }
    .facts-overlay h1.display-1 { font-size: 4.5rem; }
}

/*** Features ***/
.features .feature-photo-wrap {
    min-height: 420px;
    border-radius: .75rem;
}
.features .feature-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}
.features .feature-stat {
    position: absolute; top: 18px; left: 18px;
    width: 180px; height: 180px;
    border-radius: .75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    overflow: hidden;
}
@media (max-width: 991.98px) {
    .features .feature-photo-wrap { min-height: 360px; }
    .features .feature-stat { width: 160px; height: 160px; }
}
.features .feature-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18));
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: .6;
    border-radius: 12px;
}

/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}
.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}
.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}
.service-item:hover .service-text * {
    color: #FFFFFF !important;
}
.service-item {
    border: 1px solid #e7eef8;
    transition: transform .2s ease, box-shadow .2s ease;
}
.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(14, 49, 117, 0.12);
}
.service-media { overflow: hidden; }
.service-img {
    width: 100%; height: 220px; object-fit: cover;
    transition: transform .5s ease;
}
.service-item:hover .service-img { transform: scale(1.06); }
.service-text a.small {
    letter-spacing: .08em; font-weight: 600; color: var(--bs-primary);
    text-decoration: none;
}
.service-text a.small i { transition: transform .2s; }
.service-text a.small:hover i { transform: translateX(4px); }
.services .row.g-4 > [class*="col-"] {
    display: flex;
}
.services .service-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.services .service-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.services .service-media .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@supports not (aspect-ratio: 1) {
    .services .service-media { position: relative; }
    .services .service-media::before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }
    .services .service-media .service-img {
        position: absolute;
        inset: 0;
    }
}
.services .service-text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.services .service-text .small {
    margin-top: auto;
}

/*** Appointment ***/
.appointment {
    background:
        linear-gradient(to right, rgba(47,90,176,.90), rgba(47,90,176,.88)),
        url("../img/feature.jpg") center/cover no-repeat;
    border-top: 2px solid #d8e9ff;
    border-bottom: 2px solid #d8e9ff;
}
.appointment .container { position: relative; }
.bg-form {
    background: rgba(255,255,255,.08) !important;
    backdrop-filter: blur(2px);
}
.appointment .form-control,
.appointment .form-select {
    border-radius: .6rem;
}
.appointment .form-control:focus,
.appointment .form-select:focus {
    box-shadow: 0 0 0 .2rem rgba(47,90,176,.25);
}
.appointment .form-floating > .form-control.bg-form,
.appointment .form-floating > .form-select.bg-form {
    background: rgba(0,0,0,.35);
    color: #fff;
}
.appointment .form-floating > label {
    color: rgba(255,255,255,.8);
}
.appointment .form-control::placeholder { color: transparent; }
.appointment .form-control:focus,
.appointment .form-select:focus {
    outline: none;
    box-shadow: 0 0 0 .25rem rgba(41,46,63,.25);
}
@media (max-width: 575.98px) {
    .appointment { padding-top: 48px !important; padding-bottom: 48px !important; }
}

/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}
.team-item:hover .team-text {
    width: 100%;
}
.team-text * {
    transition: .5s;
}
.team-item:hover .team-text * {
    letter-spacing: 2px;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}
.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}
#google-reviews .testimonial-item {
    background: #f8fafc;
    border: 1px solid #e8eef6;
    border-radius: .75rem;
    padding: 28px;
    min-height: 260px;
}
#google-reviews .testimonial-item img {
    width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
}
#google-reviews .fa-star { color: #f5c518; }
.owl-dots .owl-dot span {
    width: 10px; height: 10px; display: block;
    background: #c7d7ff; border-radius: 50%;
}
.owl-dots .owl-dot.active span { background: #2f5ab0; }

/*** Footer ***/
.footer {
    color: #292e3f;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #292e3f;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #292e3f;
    margin-right: 10px;
}
.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}
.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}
.footer .copyright a {
    color: var(--light);
}
.footer .copyright a:hover {
    color: var(--primary);
}
.site-footer {
    color: #cfe0ff;
    background: #0f1b2b;
}
.site-footer a { color: #cfe0ff; text-decoration: none; }
.site-footer a:hover { color: #5aa2ff; }
.footer-top {
    padding: 64px 0 48px;
    background: linear-gradient(180deg, #102036 0%, #0f1b2b 100%);
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-bottom {
    padding: 18px 0;
    background: #0c1624;
    font-size: .95rem;
    color: #9eb4db;
}
.footer-heading {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: .2px;
    margin-bottom: 14px;
}
.footer-list, .footer-links, .footer-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-list li, .footer-links li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 10px 0;
}
.footer-list i {
    color: #5aa2ff;
    margin-top: 3px;
    width: 18px;
    text-align: center;
}
.footer-links li a {
    position: relative;
    padding-left: 0;
}
.footer-links li a::before {
    content: "›";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #5aa2ff;
    margin-right: 8px;
    display: inline-block;
    transform: translateY(-1px);
}
.footer-links li a:hover { color: #87beff; }
.footer-hours li {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}
.footer-hours span {
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
}
.footer-hours em {
    font-style: normal;
    color: #b9cced;
    font-size: .95rem;
}
.footer-brand .brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.footer-brand .fa-bolt {
    color: #5aa2ff;
    font-size: 26px;
}
.footer-brand .brand-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.15;
    letter-spacing: .2px;
}
.footer-brand .brand-blurb {
    margin: 14px 0 18px;
    color: #b8c9ea;
}
.social-list {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.social-list a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    transition: all .25s ease;
    background: rgba(255,255,255,.03);
}
.social-list a:hover {
    border-color: #5aa2ff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(28, 120, 255, .25);
}
.mini-links {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mini-links a { color: #9eb4db; }
.mini-links a:hover { color: #cfe0ff; }
@media (min-width: 992px) {
    .footer-top .col-lg-4 { padding-right: 48px; }
}
@media (max-width: 767.98px) {
    .footer-top { padding: 48px 0 36px; }
    .footer-brand { text-align: left; }
}

/* Page-specific styles */
.work-gallery img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: .5rem;
    display: block;
}
section + section { scroll-margin-top: 96px; }
.service-card .service-img {
    height: 190px;
    object-fit: cover;
    object-position: center;
}
.grid-2-cols-sm {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media (max-width: 575.98px) {
    .grid-2-cols-sm { grid-template-columns: 1fr; }
}
section[id] { scroll-margin-top: 96px; }
.service-card a.stretched-link { font-weight: 600; }
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(img/hero.jpg) center center no-repeat;
    background-size: cover;
}
.page-header .display-4, .page-header .breadcrumb .text-white { text-shadow: 0 3px 12px rgba(0,0,0,.35); }
.page-header .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}
.hero-band {
    min-height: 360px;
}
.hero-band .hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0;
}
.hero-band .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,18,34,.55), rgba(7,18,34,.55));
    z-index: 1;
}
.hero-band .container {
    z-index: 2;
}
.text-white {
    color: #FFFFFF !important;
}
.hero-content .text-white {
    color: #FFFFFF;
}
.finance-hero .hero-overlay {
  position: absolute;
  inset: 0;
  /* This gradient is what you need to adjust */
  background: radial-gradient(90% 65% at 10% 50%, rgba(24, 63, 140, 0.45), rgba(20, 45, 100, 0.65));
}
/* This targets the h1 and p inside the hero-content div */
.hero-content h1,
.hero-content p {
  color: #ffffff !important;
}

/* This will also ensure the small text is white */
.hero-content h5 {
  color: #ffffff !important;
}
/* This rule has higher specificity and will override other color rules */
.hero .hero-content h1,
.hero .hero-content p,
.hero .hero-content h5 {
    color: #ffffff;
}

/* You might also need to ensure the button is properly visible */
.hero .btn.btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
}

.hero .btn.btn-outline-light:hover {
    background-color: #ffffff;
    color: #292e3f; /* Or another dark color from your palette */
}
/* Floating Sidebar (desktop) */
.floating-bar {
  position: fixed;
  top: 40%;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1100; /* bumped */
}
.floating-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 12px 14px; /* slightly larger touch target */
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: filter .2s ease, transform .1s ease;
  box-shadow: 0 8px 22px rgba(28, 120, 255, .18);
}
.floating-bar a:hover { filter: brightness(.95); transform: translateY(-1px); }
.floating-bar a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(59,107,242,.4);
}

/* FAB (mobile) */
.fab-mobile {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
  z-index: 1100;
}
.fab-container { position: relative; }
.fab-toggle {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(28, 120, 255, .25);
}
.fab-toggle:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(59,107,242,.4);
}
.fab-menu {
  display: none;
  position: absolute;
  bottom: 72px;
  right: 0;
  flex-direction: column;
  gap: 12px;
}
.fab-menu a {
  background: var(--primary);
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(28, 120, 255, .18);
}
.fab-menu a:hover { filter: brightness(.95); }

/* Show sidebar only on desktop */
@media (max-width: 991px) { .fab-desktop { display: none; } }
/* Show FAB only on desktop off */
@media (min-width: 992px) { .fab-mobile { display: none; } }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .floating-bar a,
  .fab-menu a { transition: none; }
}
/* Force consistent brand blue links in service cards */
.service-card a,
.service-card a:visited {
  color: #0d6efd; /* or #3b82f6 if that matches closer */
  font-weight: 600;
  text-decoration: none;
}

.service-card a:hover {
  color: #0b5ed7; /* darker hover shade */
  text-decoration: underline;
}

/* Fix "Learn more" bottom links */
.service-card .stretched-link {
  color: #0d6efd;
}
/* Service cards: brand blue links + subtle hover lift */
.service-card { position: relative; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.12); }

/* Make "Learn more" brand blue */
.service-card a.stretched-link,
.service-card a.stretched-link:visited { color: #0d6efd; font-weight: 600; text-decoration: none; }
.service-card a.stretched-link:hover { color: #0b5ed7; text-decoration: underline; }

/* Keep card images consistent */
.service-card .service-img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }

/* Optional: a soft border accent for the Financing card */
.service-card.border-primary { border-width: 2px !important; }
/* ---- Razorback Air card ---- */
.ac-wrap { display:flex; justify-content:center; padding:8px 0; }

.ac-card{
  width:100%;
  background:#0f5fb3;           /* cool blue */
  color:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}

.ac-title{ margin:0 0 12px; font-size:1.35rem; font-weight:700; letter-spacing:.2px; }

/* If you didn't already add these generic helpers earlier: */
.ac-card .grid{ display:grid; grid-template-columns:1fr; gap:14px; margin-bottom:14px; }
@media (min-width: 900px){ .ac-card .grid{ grid-template-columns:1fr 1fr; } }

.ac-card .field label{ display:block; font-size:.92rem; margin:0 0 6px; opacity:.95; }
.ac-card .field input,
.ac-card .field select,
.ac-card .field textarea{
  width:100%; padding:14px 16px; border:0; border-radius:12px;
  background:rgba(255,255,255,.14); color:#fff; outline:none;
}
.ac-card .field input::placeholder,
.ac-card .field textarea::placeholder{ color:rgba(255,255,255,.78); }

/* Make the open dropdown readable */
.ac-card select,
.ac-card option{ background:#fff !important; color:#111 !important; }

/* Checkbox + button */
.ac-card .checkbox{ display:flex; align-items:center; gap:10px; margin:6px 0 18px; font-size:.95rem; }
.ac-card .checkbox input{ width:20px; height:20px; accent-color:#fff; }

.ac-submit{
  width:100%; background:#fff; color:#111; border:0;
  padding:16px 18px; border-radius:14px; font-weight:700; font-size:1.05rem;
  cursor:pointer; transition:transform .04s ease, box-shadow .2s ease;
}
.ac-submit:hover{ box-shadow:0 6px 18px rgba(0,0,0,.18); }
.ac-submit:active{ transform:translateY(1px); }

/* Nice focus ring */
.ac-card input:focus,
.ac-card select:focus,
.ac-card textarea:focus{ box-shadow:0 0 0 3px rgba(255,255,255,.35); }
.promo-card {
  border-radius: 1rem;
  transition: transform .2s ease;
  overflow: hidden;
}
.promo-card:hover {
  transform: translateY(-4px);
}
.promo-card .card-body {
  padding: .9rem 1rem;
}
.promo-card img {
  background-color: #fff;
}
@media (max-width: 768px) {
  .promo-card img {
    max-height: 120px;
  }
}


