/* =========================================================
   OC Auto Glass Repair — Common UI Stylesheet
   Covers: Hero, Quote, Why Choose Us, Services, Credentials,
           CTA, Testimonials, Areas, Contact
   ========================================================= */

/* ── Design tokens — amber brand from logo ───────────────── */
/* style.css defines :root first; oc-common inherits those values.
   Tokens here are kept as fallbacks only. */
:root {
  --oc-primary: #F5A623;
  --oc-primary-dark: #D4891A;
  --oc-primary-light: #FFC55A;
  --oc-accent: #F5A623;
  --oc-text: #111111;
  --oc-muted: #888888;
  --oc-bg-light: #F7F7F7;
  --oc-bg-dark: #111111;
  --oc-navy: #111111;
  --oc-white: #FFFFFF;
  --oc-shadow-sm: 0 2px 12px rgba(245, 166, 35, .10);
  --oc-shadow-md: 0 6px 28px rgba(245, 166, 35, .18);
  --oc-radius: 12px;
  --oc-radius-lg: 20px;
  --oc-transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

/* ── Section spacing helper ──────────────────────────────── */
.oc-section {
  padding: 80px 0;
}

.oc-section-sm {
  padding: 56px 0;
}

/* ── Section title block ─────────────────────────────────── */
.oc-section-title {
  margin-bottom: 48px;
}

.oc-section-title .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--oc-primary);
  margin-bottom: 10px;
}

.oc-section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--oc-text);
  line-height: 1.25;
  margin-bottom: 16px;
}

.oc-section-title p {
  font-size: 1.05rem;
  color: var(--oc-muted);
  max-width: 680px;
}

.oc-section-title.text-center p {
  margin-inline: auto;
}

/* ── Divider line accent ─────────────────────────────────── */
.oc-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--oc-primary), var(--oc-accent));
  border-radius: 2px;
  margin: 0 auto 28px;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
#hero-home {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Full-bleed background image */
#hero-home .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

#hero-home:hover .hero-bg-img {
  transform: scale(1);
}

/* Multi-layer gradient overlay — deep navy → transparent */
#hero-home .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg,
      rgba(26, 26, 46, 0.92) 0%,
      rgba(26, 26, 46, 0.74) 55%,
      rgba(26, 26, 46, 0.18) 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

/* Content column */
#hero-home .hero-content {
  position: relative;
  z-index: 2;
}

/* Eyebrow badge */
#hero-home .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, .15);
  border: 1px solid rgba(255, 193, 7, .45);
  color: var(--oc-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

/* Main headline */
#hero-home .hero-content h1 {
  font-family: 'Playfair Display', serif;
  color: var(--oc-white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .30);
}

/* Sub-description */
#hero-home .hero-content p.hero-desc {
  color: rgba(255, 255, 255, .85);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 28px;
}

/* Bullet checklist */
#hero-home .hero-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}

#hero-home .hero-bullets li {
  color: var(--oc-white);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

#hero-home .hero-bullets li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background: var(--oc-accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23111111'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* CTA buttons row */
#hero-home .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Primary phone CTA */
.btn-hero-primary {
  background: var(--oc-primary);
  color: var(--oc-white) !important;
  border: none;
  padding: 15px 34px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 24px rgba(245, 166, 35, .45);
  transition: all var(--oc-transition);
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: var(--oc-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, .55);
  color: var(--oc-white) !important;
}

.btn-hero-primary .btn-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Secondary ghost CTA */
.btn-hero-ghost {
  background: transparent;
  color: var(--oc-white) !important;
  border: 2px solid rgba(255, 255, 255, .55);
  padding: 13px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--oc-transition);
  text-decoration: none;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--oc-white);
  color: var(--oc-white) !important;
  transform: translateY(-2px);
}

/* Trust bar inside hero */
#hero-home .hero-trust-bar {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

#hero-home .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .80);
  font-size: 0.88rem;
  font-weight: 500;
}

#hero-home .trust-item .trust-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--oc-accent);
  flex-shrink: 0;
}

/* Scroll-down caret */
#hero-home .scroll-caret {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .50);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: heroBounce 1.8s ease-in-out infinite;
  text-decoration: none;
  z-index: 3;
}

#hero-home .scroll-caret i {
  font-size: 1.2rem;
}

@keyframes heroBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* ── Hero responsive ─────────────────────────────────────── */
@media (max-width: 991px) {
  #hero-home {
    min-height: 80vh;
  }

  #hero-home .hero-overlay {
    padding: 100px 0 64px;
  }

  #hero-home .hero-content h1 {
    font-size: clamp(1.75rem, 5vw, 2.4rem);
  }
}

@media (max-width: 575px) {
  #hero-home {
    min-height: 100svh;
  }

  #hero-home .hero-overlay {
    padding: 88px 0 56px;
  }

  #hero-home .hero-bullets {
    flex-direction: column;
    gap: 10px;
  }

  #hero-home .hero-trust-bar {
    gap: 16px;
  }

  .btn-hero-primary,
  .btn-hero-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   GET FREE QUOTE SECTION
   ═══════════════════════════════════════════════════════════ */
.quote-section {
  background: var(--oc-bg-light);
}

.quote-intro ul.quote-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quote-intro ul.quote-bullets li {
  padding: 8px 0;
  font-size: 1rem;
  color: var(--oc-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-intro ul.quote-bullets li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--oc-primary);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

.quote-form-card {
  background: var(--oc-white);
  border-radius: var(--oc-radius-lg);
  box-shadow: var(--oc-shadow-md);
  padding: 40px 36px;
}

.quote-form-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--oc-text);
  text-align: center;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US SECTION
   ═══════════════════════════════════════════════════════════ */
.why-section {
  background: var(--oc-white);
}

.why-card {
  background: var(--oc-bg-light);
  border-radius: var(--oc-radius);
  padding: 30px 26px;
  height: 100%;
  border: 1px solid #e8edf5;
  position: relative;
  overflow: hidden;
  transition: all var(--oc-transition);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--oc-primary), var(--oc-accent));
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--oc-transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--oc-shadow-md);
  border-color: transparent;
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-card .why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--oc-primary) 0%, var(--oc-primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--oc-white);
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(245, 166, 35, .30);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--oc-text);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--oc-muted);
  margin: 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */
.services-section {
  background: var(--oc-bg-light);
}

.service-card {
  background: var(--oc-white);
  border-radius: var(--oc-radius);
  padding: 30px 26px;
  height: 100%;
  border: 1px solid #e8edf5;
  position: relative;
  transition: all var(--oc-transition);
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oc-primary), var(--oc-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--oc-transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--oc-shadow-md);
  border-color: transparent;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card .service-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, .10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--oc-primary);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--oc-text);
  margin-bottom: 10px;
}

.service-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--oc-transition);
}

.service-card h3 a:hover {
  color: var(--oc-primary);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--oc-muted);
  line-height: 1.65;
}

.service-card ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.service-card ul li {
  margin-bottom: 5px;
  font-size: 0.93rem;
  color: var(--oc-muted);
}

/* ═══════════════════════════════════════════════════════════
   CREDENTIALS SECTION
   ═══════════════════════════════════════════════════════════ */
.credentials-section {
  background: var(--oc-white);
}

.credential-item {
  background: var(--oc-white);
  border-radius: var(--oc-radius);
  padding: 32px 24px;
  box-shadow: var(--oc-shadow-sm);
  height: 100%;
  text-align: center;
  border: 1px solid #e8edf5;
  transition: all var(--oc-transition);
}

.credential-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--oc-shadow-md);
  border-color: transparent;
}

.credential-item .cred-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--oc-primary), var(--oc-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--oc-white);
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(245, 166, 35, .28);
}

.credential-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--oc-primary);
  margin-bottom: 10px;
}

.credential-item p {
  font-size: 0.93rem;
  color: var(--oc-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   CALL TO ACTION BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #111111 0%, #222222 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--oc-white);
}

.cta-section p {
  color: rgba(255, 255, 255, .85);
  font-size: 1.05rem;
}

.btn-cta {
  background: var(--oc-white);
  color: var(--oc-primary) !important;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
  transition: all var(--oc-transition);
  text-decoration: none;
}

.btn-cta:hover {
  background: var(--oc-accent);
  color: var(--oc-text) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--oc-bg-light);
}

.testimonial-card {
  background: var(--oc-white);
  border-radius: var(--oc-radius);
  padding: 30px 26px;
  height: 100%;
  border: 1px solid #e8edf5;
  position: relative;
  transition: all var(--oc-transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--oc-shadow-md);
  border-color: transparent;
}

.testimonial-card .quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--oc-primary);
  opacity: .12;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: -8px;
}

.testimonial-card .stars {
  color: var(--oc-accent);
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.96rem;
  color: var(--oc-text);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card .reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--oc-text);
}

.testimonial-card .reviewer-meta {
  font-size: 0.82rem;
  color: var(--oc-muted);
}

/* ═══════════════════════════════════════════════════════════
   AREAS WE SERVE
   ═══════════════════════════════════════════════════════════ */
.location-section {
  background: var(--oc-bg-dark);
  padding: 64px 0;
}

.location-section .section-title h2 {
  font-family: 'Playfair Display', serif;
  color: var(--oc-white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 32px;
}

.location-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
}

.location-section ul li a {
  display: inline-block;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .85) !important;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--oc-transition);
}

.location-section ul li a:hover {
  background: var(--oc-primary);
  border-color: var(--oc-primary);
  color: var(--oc-white) !important;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--oc-white);
}

.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--oc-text);
}

.contact-section p {
  color: var(--oc-muted);
  margin-bottom: 8px;
}

.contact-section a {
  color: var(--oc-primary);
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   HASHTAGS
   ═══════════════════════════════════════════════════════════ */
.hashtag-section {
  padding: 32px 0;
  background: #fff;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.hashtag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hashtag-wrap span {
  display: inline-block;
  background: rgba(245, 166, 35, .08);
  border: 1px solid rgba(245, 166, 35, .28);
  color: #D4891A;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: 50px;
  transition: background .2s, color .2s;
  cursor: default;
}

.hashtag-wrap span:hover {
  background: #F5A623;
  color: #111;
}

/* ═══════════════════════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════════════════════ */
.map-section iframe {
  border-radius: var(--oc-radius);
  box-shadow: var(--oc-shadow-sm);
}

/* ═══════════════════════════════════════════════════════════
   QUOTE INTRO SECTION (Section 2 — content + form)
   ═══════════════════════════════════════════════════════════ */
.quote-intro-section {
  padding: 90px 0;
  background: #F9F9F9;
}

.quote-intro-col .section-eyebrow {
  margin-bottom: 10px;
}

.quote-intro-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--oc-black);
  line-height: 1.25;
  margin-bottom: 10px;
}

.quote-intro-lead {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.quote-intro-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote-intro-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.quote-intro-bullets li i {
  color: var(--oc-primary);
  font-size: 1.05rem;
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .quote-intro-section {
    padding: 60px 0;
  }

  .quote-intro-col h2 {
    font-size: 1.6rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.oc-footer {
  background: #0D0D0D;
  color: rgba(255, 255, 255, .65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 0;
}

.oc-footer-topbar {
  height: 4px;
  background: linear-gradient(90deg, #F5A623 0%, #D4891A 100%);
}

/* Grid — brand | areas-1 | areas-2 | quick links */
.oc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

@media (max-width: 991px) {
  .oc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 48px 0 36px;
  }
}

@media (max-width: 575px) {
  .oc-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 28px;
  }
}

/* Brand column */
.oc-footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

.oc-footer-logo-link img {
  width: 160px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.08);
}

.oc-footer-tagline {
  color: rgba(255, 255, 255, .50);
  font-size: 0.85rem;
  margin-bottom: 22px;
  max-width: 280px;
}

/* Contact list */
.oc-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.oc-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color .2s;
}

a.oc-footer-contact-item:hover {
  color: #F5A623;
}

.oc-footer-contact-item .fc-icon {
  width: 30px;
  height: 30px;
  background: rgba(245, 166, 35, .10);
  border: 1px solid rgba(245, 166, 35, .22);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5A623;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Invisible spacer heading — aligns col 3 list with col 2 list */
.oc-footer-heading-spacer {
  visibility: hidden;
  border-bottom-color: transparent;
}

.oc-footer-heading-spacer::after {
  display: none;
}

/* Column headings */
.oc-footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245, 166, 35, .25);
  position: relative;
}

.oc-footer-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 2px;
  background: #F5A623;
  border-radius: 2px;
}

/* Link lists */
.oc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oc-footer-links a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s, gap .2s;
}

.oc-footer-links a i {
  color: #F5A623;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.oc-footer-links a:hover {
  color: #F5A623;
  gap: 10px;
}

/* Bottom bar */
.oc-footer-bottom {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 16px 0;
}

.oc-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.oc-footer-bottom p {
  margin: 0;
  font-size: 0.80rem;
  color: rgba(255, 255, 255, .40);
}

.oc-footer-bottom a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: color .2s;
}

.oc-footer-bottom a:hover {
  color: #F5A623;
}

.footer-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, .20);
}

/* Back to top */
.oc-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  background: #F5A623;
  color: #111 !important;
  display: flex !important;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(245, 166, 35, .45);
  text-decoration: none !important;
  line-height: 1;
  z-index: 999;
  transition: background .2s, transform .2s;
}

.oc-back-to-top:hover {
  background: #D4891A;
  transform: translateY(-3px);
}

@media (max-width: 575px) {
  .oc-back-to-top {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════
   GENERAL BUTTON HELPER
   ═══════════════════════════════════════════════════════════ */
.btn-oc-primary {
  background: var(--oc-primary);
  color: var(--oc-white) !important;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  text-decoration: none;
  transition: all var(--oc-transition);
  box-shadow: 0 4px 18px rgba(245, 166, 35, .30);
}

.btn-oc-primary:hover {
  background: var(--oc-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 7px 26px rgba(245, 166, 35, .40);
  color: var(--oc-white) !important;
}