/* PrimeTime Wheels & Tires - Dark Theme Styles */
/* FAILSAFE BG (do not remove) */

/* Base Styles */
/* ===== HARD BACKGROUND OVERRIDE (force dark + image) ===== */

/* =========================
   GLOBAL BACKGROUND SYSTEM
   ========================= */

html, body {
  margin: 0;
  min-height: 100%;
}

/* HOME PAGE – image background */
.bg-home {
  background-color: #0d0d0d;
}

.bg-home::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/images/rims-bg.jpg") repeat ;
  background-size: 600px;
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
}

/* INTERIOR PAGES – clean dark background */
.bg-dark {
  background-color: #121212 !important; /* light black */
}

/* Make 100% sure interior pages NEVER render the rims overlay */
.bg-dark::before {
  content: none !important;
  background: none !important;
}




/* Keep site content above the background layer */
section, header, footer, nav {
  position: relative;
  z-index: 1;
}





a {
  color: #fb8b23;
  text-decoration: none;
}

a:hover {
  color: #ffb55d;
}

/* Header & Navigation */
header {
  background-color: #131313;
  width: 100%;
  border-bottom: 1px solid #222;
}

.contact-bar {
  padding: 8px 0;
  background-color: #131313;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.contact-info li {
  display: flex;
  align-items: center;
}

.contact-info li i {
  margin-right: 6px;
  color: #fb8b23;
  font-size: 16px;
}

.contact-info a {
  color: #fb8b23;
  text-decoration: underline;
}

nav {
  background-color: #131313;
  border-top: 1px solid #222;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav li a {
  display: block;
  padding: 15px 20px;
  color: #e5e5e5;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}

nav li a:hover,
nav li a.active {
  background-color: #222;
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 90vh; /* or whatever you want */
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
}

/* Services Section */
.services {
  padding: 80px 20px;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 30px;
  flex: 1 1 220px;
  max-width: 270px;
}

.service-card i {
  font-size: 40px;
  color: #fb8b23;
  margin-bottom: 15px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #fff;
}

.service-card p {
  margin: 0;
  color: #bbb;
  font-size: 14px;
}

/* Gallery Slider */
.gallery-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-slide {
  display: none;
  width: 100%;
}

.gallery-slide {
  display: none;
  width: 100%;
}

/* Logo sizing */
header img, nav img {
  max-width: 100%;
  height: auto;
  display: block;
}


img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-slide.active {
  display: block;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.slider-nav.prev {
  left: 15px;
}

.slider-nav.next {
  right: 15px;
}

/* Financing CTA */
.financing-cta {
  padding: 60px 20px;
  text-align: center;
}

.financing-cta h2 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}

.financing-cta p {
  margin-bottom: 20px;
  color: #ccc;
}

.financing-cta a.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #444;
  color: #fff;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.financing-cta a.btn:hover {
  background-color: #555;
}

/* Reviews Section */
.reviews {
  padding: 60px 20px;
  text-align: center;
  background-color: #131313;
}

.reviews h2 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}

.reviews-widget {
  max-width: 800px;
  margin: 0 auto;
  color: #aaa;
}

/* Modal Quote Form */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: #131313;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #444;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  color: #fff;
}

.modal-header,
.modal-body {
  margin-bottom: 15px;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #fff;
}

.modal-body input,
.modal-body textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #1f1f1f;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
}

.modal-body button {
  width: 100%;
  padding: 12px;
  border: none;
  background-color: #444;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.modal-body button:hover {
  background-color: #555;
}

/* Footer */
footer {
  background-color: #131313;
  color: #777;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

/* Navigation layout with logo */
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.site-logo {
  max-height: 80px;
  width: auto;
  height: auto;
  display: block;
}



/* Home page slider using <li> slides */
.gallery-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 20px;
}

.home-slider {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slider__slide {
  display: none;
}

.gallery-slide.active,
.slider__slide.active {
  display: block;
}

.slider__slide img,
.gallery-slide img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}



/* Masonry grid for home page */
.masonry {
  column-count: 3;
  column-gap: 15px;
  padding: 20px;
}

.masonry img {
  width: 100%;
  max-height: 220px;
  display: block;
  object-fit: contain;
}

@media(max-width: 900px) {
  .masonry { column-count: 2; }
}

@media(max-width: 600px) {
  .masonry { column-count: 1; }
}

.video-slider {
  position: relative;
  max-width: 800px;
  margin: 30px auto;
}

.video-slide {
  display: none;        /* hide all by default */
}

.video-slide.active {
  display: block;       /* only the active one shows */
}

.video-slide video {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  background: #000;
}

/* Arrows */
.video-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
}

.video-arrow.prev { left: 10px; }
.video-arrow.next { right: 10px; }



/* Financing partner buttons (mobile-friendly) */
.aff-btn,
.sf-btt {
  display: block;
  width: 320px;       /* desktop target width */
  max-width: 100%;
  height: auto;
  margin: 16px auto 0;
  margin-top: 80px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* Only apply hover effects on devices that actually hover (avoids weird mobile zoom) */
@media (hover: hover) and (pointer: fine) {
  .aff-btn:hover,
  .sf-btt:hover {
    transform: scale(1.54);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.30);
  }
}


/* ---------- Mobile improvements ---------- */
@media (max-width: 768px) {
  /* Prevent "fixed" backgrounds from janking on mobile */
  body { background-attachment: scroll; }

  /* Header spacing */
  .contact-info { gap: 10px; font-size: 13px; padding: 0 12px; }
  .contact-info li { white-space: normal; }

  /* Stack logo + menu */
  .nav-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav li a {
    padding: 12px 14px;
    font-size: 13px;
  }

  /* Hero shouldn't rely on inline padding hacks */
  .hero {
    height: 28vh;
    background-size: cover;
  }

  /* Cards expand nicely */
  .service-card {
    max-width: 520px;
  }

  /* Make modal more usable */
  .modal-content {
    margin: 18% auto;
    width: calc(100% - 24px);
  }
}

/* ===== Services page polish ===== */
.services-lead{
  max-width: 1000px;
  margin: 22px auto 14px;
  padding: 18px 18px;
  background: rgba(15,15,15,0.90);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  color: #f2f2f2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.85);
  line-height: 1.7;
}

/* Keep the buttons aligned with the panel width */
.services-actions{
  max-width: 1000px;
  margin: 0 auto 26px;
  padding: 0 6px;
}


.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn-primary{
  background: #1e4fd8; /* blue */
  color: #fff;
}

.btn-primary:hover{
  filter: brightness(1.08);
}

.btn-ghost {
  background: rgba(0,0,0,0.35); /* instead of transparent */
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}


.btn-ghost:hover{
  border-color: rgba(255,255,255,0.45);
}

/* How it Works: stronger panel + cleaner steps */
.how-it-works{
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 22px 18px;
  background: rgba(15,15,15,0.90);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
}

.steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step{
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
}

@media (max-width: 820px){
  .steps{ grid-template-columns: 1fr; }
}


.step-num{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fb8b23; /* bronze accent already used in your theme */
  color: #111;
  font-weight: 900;
}

.step h4{
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
}

.step p{
  margin: 0;
  color: #bdbdbd;
  font-size: 13px;
}

@media (max-width: 820px){
  .steps{ grid-template-columns: 1fr; }
}

/* ===== Financing Call To Action ===== */

.financing-cta {
    background: linear-gradient(
        rgba(0,0,0,0.20),
        rgba(0, 0, 0, 0.075)
    ),
    url('images/approve.png') center/90% no-repeat;
    
    padding: 70px 20px;
    text-align: center;
    border-radius: 14px;
    margin: 60px auto;
    max-width: 1100px;
}

.financing-cta h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 15px;
}

.financing-cta p {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Apply Now button */
.financing-cta .btn {
    background: #ff7a00;     /* rich orange */
    color: #ff7e28;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s ease;
}

.financing-cta .btn:hover {
    background: #ff9421;
    transform: translateY(-2px);
}

/* === Financing CTA Button: Orange + Glow + Hover Animation === */
.financing-cta a,
.financing-cta .btn,
.financing-cta a.btn {
  background-color: #ff7a00 !important;
  color: #000 !important;
  border: none !important;
  padding: 14px 34px !important;
  border-radius: 30px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px;
  display: inline-block !important;

  /* Glow */
  box-shadow: 0 0 12px rgba(255, 122, 0, 0.55),
              0 0 30px rgba(255, 122, 0, 0.25) !important;

  /* Smooth animation */
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease !important;

  /* Subtle attention pulse */
  animation: ptGlowPulse 2.2s infinite ease-in-out;
}

/* Hover: lift + stronger glow */
.financing-cta a:hover,
.financing-cta .btn:hover {
  background-color: #ff9a2e !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 18px rgba(255, 122, 0, 0.75),
              0 0 45px rgba(255, 122, 0, 0.35) !important;
}

/* Optional: remove pulse on hover so it feels responsive */
.financing-cta a:hover,
.financing-cta .btn:hover {
  animation: none;
}

/* Glow pulse animation */
@keyframes ptGlowPulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.45),
                0 0 26px rgba(255, 122, 0, 0.18);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 122, 0, 0.70),
                0 0 42px rgba(255, 122, 0, 0.30);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.45),
                0 0 26px rgba(255, 122, 0, 0.18);
  }
}

/* Video Section Heading */
.video-intro {
  text-align: center;
  margin: 60px auto 25px;
  max-width: 900px;
  animation: fadeSlideUp 1.2s ease-out forwards;
}

/* HEADING */
.video-intro h2 {
  font-size: 34px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff9f2d;
  margin-bottom: 12px;

  text-shadow:
    0 0 5px rgba(255, 140, 0, 0.6),
    0 0 15px rgba(255, 140, 0, 0.7),
    0 0 30px rgba(255, 100, 0, 0.9);

  animation: glowPulse 2.5s ease-in-out infinite alternate,
             floatText 6s ease-in-out infinite;
}

/* PARAGRAPH */
.video-intro p {
  font-size: 17px;
  color: #e0e0e0;
  line-height: 1.7;
  opacity: 0;
  animation: fadeIn 1.6s ease-out 0.5s forwards;
}

/* 🔥 Animations */
@keyframes glowPulse {
  from {
    text-shadow:
      0 0 5px rgba(255, 140, 0, 0.5),
      0 0 12px rgba(255, 140, 0, 0.6),
      0 0 22px rgba(255, 100, 0, 0.7);
  }
  to {
    text-shadow:
      0 0 10px rgba(255, 180, 80, 0.8),
      0 0 25px rgba(255, 140, 0, 0.9),
      0 0 45px rgba(255, 80, 0, 1);
  }
}

@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.video-section {
  background: radial-gradient(circle at top, #111 0%, #050505 60%);
  padding: 80px 20px 60px;
}

/* ===== Header Orange Theme ===== */

.contact-info,
.contact-info li,
.contact-info a {
  color: #ff9a2e !important;   /* strong orange */
}

.contact-info i {
  color: #ff9a2e !important;
}

.contact-info a:hover {
  color: #ffc27a !important;   /* lighter orange on hover */
}

/* Keep header background dark for contrast */
header,
.contact-bar,
nav {
  background-color: rgba(19, 19, 19, 0.96);
}

/* ===== Force Orange Header Text ===== */

.contact-bar *,
.contact-info *,
.contact-info li,
.contact-info li *,
.contact-info i {
  color: #ff9a2e !important;
}

/* Hover glow */
.contact-info a:hover {
  color: #ffc27a !important;
}


/* ===== Services page: bigger text + solid panel ===== */
.services-lead{
  max-width: 1050px;
  margin: 18px auto 14px;
  padding: 18px 18px;
  font-size: 18px;
  line-height: 1.75;
  color: #f2f2f2 !important;
  opacity: 1 !important;

  background: rgba(12,12,12,0.90);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  text-shadow: 0 2px 7px rgba(0,0,0,0.85);
}

/* Keep buttons aligned with the lead panel */
.services-actions{
  max-width: 1050px;
  margin: 0 auto 24px;
  padding: 0 6px;
}


/* ================================
   GLOBAL TEXT + HEADING ANIMATIONS
   ================================ */

/* Default readable text everywhere */
body {
  color: #e5e5e5;
}

/* Global "hero intro" style for ANY main heading block */
.page-intro,
.video-intro {
  text-align: center;
  margin: 60px auto 25px;
  max-width: 900px;
  padding: 0 16px;
  animation: fadeSlideUp 1.2s ease-out forwards;
}

/* Apply the glowing headline style to ALL major headings */
h1, h2 {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff9f2d;
  margin-bottom: 12px;
  text-shadow:
    0 0 5px rgba(255, 140, 0, 0.6),
    0 0 15px rgba(255, 140, 0, 0.7),
    0 0 30px rgba(255, 100, 0, 0.9);
  animation: glowPulse 2.5s ease-in-out infinite alternate,
             floatText 6s ease-in-out infinite;
}

/* Give h3/h4 a lighter but consistent glow */
h3, h4 {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.85);
}

/* Global paragraph animation + readability */
p {
  color: #e0e0e0;
  line-height: 1.7;
}

/* Only animate intro paragraphs (not every single paragraph on the site) */
.page-intro p,
.video-intro p {
  opacity: 0;
  animation: fadeIn 1.6s ease-out 0.4s forwards;
}

/* Animations */
@keyframes glowPulse {
  from {
    text-shadow:
      0 0 5px rgba(255, 140, 0, 0.5),
      0 0 12px rgba(255, 140, 0, 0.6),
      0 0 22px rgba(255, 100, 0, 0.7);
  }
  to {
    text-shadow:
      0 0 10px rgba(255, 180, 80, 0.8),
      0 0 25px rgba(255, 140, 0, 0.9),
      0 0 45px rgba(255, 80, 0, 1);
  }
}

@keyframes floatText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ===== Services Actions: centered + solid bar ===== */
.services-actions{
  max-width: 1050px;
  margin: 0 auto 28px;
  padding: 16px;
  display: flex;
  justify-content: center;   /* centers the buttons */
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;

  background: rgba(12,12,12,0.92);     /* solid background */
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

/* Make buttons a consistent width so they align nicely */
.services-actions .btn{
  min-width: 260px;
  justify-content: center;
}

/* Mobile: full-width buttons */
@media (max-width: 560px){
  .services-actions .btn{
    width: 100%;
    min-width: 0;
  }
}

/* ===== How It Works: stronger layout ===== */
.how-it-works{
  max-width: 1050px;
  margin: 0 auto 46px;
  padding: 28px 20px;

  background: rgba(12,12,12,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.40);
}

.how-it-works h3{
  text-align: center;
  font-size: 24px;
  margin: 0 0 18px;
  color: #fff;
}

.steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step{
  padding: 16px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;

  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.step:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.22);
}

.step-num{
  width: 38px;
  height: 38px;
  font-size: 15px;
}

.step h4{
  font-size: 16px;
  margin: 0 0 6px;
}

.step p{
  font-size: 14px;
  color: #d6d6d6;
  line-height: 1.55;
}

@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr; }
}

/* ===== ORANGE BUTTON OUTLINE SYSTEM ===== */

/* Base outline for all buttons */
.btn{
  position: relative;
  border: 2px solid rgba(255, 122, 0, 0.65);   /* orange outline */
  box-shadow:
    0 0 0 1px rgba(255,122,0,0.25),
    0 6px 16px rgba(0,0,0,0.35);
}

/* Stronger outline + glow on hover */
.btn:hover{
  border-color: #ff9a2e;
  box-shadow:
    0 0 10px rgba(255,122,0,0.55),
    0 0 22px rgba(255,122,0,0.35),
    0 10px 24px rgba(0,0,0,0.45);
  transform: translateY(-2px);
}

/* ORANGE PRIMARY / QUOTE BUTTON */
.btn-quote,
.btn-primary{
  border-color: #ff7a00;
}

/* Dark call button keeps orange outline but darker fill */
.btn-call{
  border-color: rgba(255,122,0,0.55);
}

/* Remove ugly focus outlines but keep accessibility */
.btn:focus{
  outline: none;
}
.btn:focus-visible{
  box-shadow:
    0 0 0 3px rgba(255,122,0,0.55),
    0 0 16px rgba(255,122,0,0.45);
}


/* ===== CONTACT WIDGET: FORCE CENTER + MAX WIDTH ===== */
.contact-form-section{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 44px 16px;
}

.contact-widget{
  width: min(560px, 100%);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(12,12,12,0.94);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 42px rgba(0,0,0,0.55);
}

/* Header bar */
.contact-widget__header{
  padding: 18px 20px 16px;
  background: linear-gradient(rgba(255,122,0,0.12), rgba(0,0,0,0));
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.contact-widget__header h3{
  margin: 0 0 6px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-widget__header p{
  margin: 0;
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.55;
}

/* Form area */
.contact-widget__form{
  padding: 18px 20px 22px;
}

/* Input rows */
.field{
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 12px 12px;
  margin-bottom: 12px;

  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
}

.field i{
  color: #ff9a2e;
  font-size: 16px;
  width: 18px;
  text-align: center;
}

.field input,
.field textarea{
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
}

.field textarea{
  resize: vertical;
  min-height: 120px;
}

.field:focus-within{
  border-color: rgba(255,122,0,0.75);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.18);
}

.contact-widget__btn{
  width: 100%;
  justify-content: center;
  border-radius: 14px;
  padding: 14px 18px;
}

