/* -------------------------------------------------------------
 * ShahaneTech Corporate CSS - Master Design System
 * ------------------------------------------------------------- */
:root {
  --primary-color: #0d6efd;
  --primary-hover: #0b5ed7;
  --dark-navy: #0b1528;
  --dark-navy-alt: #111e38;
  --accent-green: #198754;
  --accent-orange: #fd7e14;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 10px 30px rgba(13, 110, 253, 0.15);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* -------------------------------------------------------------
 * Top Header Bar
 * ------------------------------------------------------------- */
.top-bar {
  background-color: var(--dark-navy);
  color: var(--text-light);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
}

.top-bar-container {
  width: 100%;
  max-width: 100%;
  padding: 0 min(4%, 2.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left span i {
  color: var(--primary-color);
  margin-right: 5px;
}

.top-bar-left a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}

.top-bar-left a:hover {
  color: #ffffff;
}

.top-bar-badge {
  background-color: rgba(25, 135, 84, 0.2);
  color: #4ade80;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.78rem;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.top-socials {
  display: flex;
  gap: 12px;
}

.top-socials a {
  color: var(--text-light);
  transition: var(--transition);
  font-size: 0.9rem;
}

.top-socials a:hover {
  color: var(--primary-color);
}

/* -------------------------------------------------------------
 * Navigation Bar
 * ------------------------------------------------------------- */
.navbar {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.navbar-container {
  width: 100%;
  max-width: 100%;
  padding: 12px min(4%, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  padding: 8px 14px;
  color: #334155;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  border-radius: 6px;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
  background-color: rgba(13, 110, 253, 0.06);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px 3px 0 0;
}

.nav-btn-quote {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  margin-left: 10px;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.nav-btn-quote:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-1px);
}

.nav-btn-quote.active::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 5px;
}

/* -------------------------------------------------------------
 * Buttons & Component Utilities
 * ------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--primary-color);
  padding: 11px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-success {
  background-color: var(--accent-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(25, 135, 84, 0.3);
}

.btn-success:hover {
  background-color: #146c43;
}

/* Section Header Typography */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
}

.section-badge {
  display: inline-block;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Continuous Animated Gradient Headings */
@keyframes gradient-scroll {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gradient-title,
.section-title,
.home-about-text h2,
.home-why-text h2,
.article-title,
.form-header h2,
.cta-text h2,
.guarantee-content h2,
.hero-text h1 span {
  background: linear-gradient(90deg, #0d6efd 0%, #0284c7 25%, #198754 50%, #0b1528 75%, #0d6efd 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-scroll 6s linear infinite;
  display: inline-block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Global Header Divider Line with Center Logo */
.header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 5px auto 5px;
  width: 100%;
  max-width: 320px;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  border-radius: 2px;
}

.divider-logo {
  width: 20%;
  /* max-width: 32px;
  min-width: 24px; */
  height: 100%;
  max-height: 32px;
  object-fit: contain;
  display: block;
}

/* Page Hero Banner */
.page-hero {
  background-image: url('https://www.keainternational.org/assets/aboutus.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 65px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle at 80% 20%, rgba(13, 110, 253, 0.15), transparent 50%);
  pointer-events: none;
}

.page-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 750px;
  margin: 0 auto 20px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: #38bdf8;
  text-decoration: none;
}

.breadcrumb i {
  font-size: 0.75rem;
  color: #64748b;
}

/* -------------------------------------------------------------
 * Professional Footer
 * ------------------------------------------------------------- */
.footer {
  background: linear-gradient(135deg, var(--dark-navy) 0%, var(--dark-navy-alt) 100%);
  color: #e2e8f0;
  padding-top: 60px;
  border-top: 4px solid var(--primary-color);
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 25px 45px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand .footer-logo img {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
}

.footer-desc {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--primary-color);
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  background-color: #070d18;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-bottom-container p {
  margin: 0;
}

.footer-bottom-container strong {
  color: #cbd5e1;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: #38bdf8;
}

.footer-bottom-links span {
  color: #334155;
}

/* -------------------------------------------------------------
 * Back to Top Floating Button
 * ------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}

/* -------------------------------------------------------------
 * Floating Left Side Contact Action Buttons (Call & WhatsApp)
 * ------------------------------------------------------------- */
.left-floating-actions {
  position: fixed;
  left: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.floating-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.floating-btn i {
  position: relative;
  z-index: 2;
  font-size: 1.35rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-btn-text {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  transition: max-width 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding-right: 0;
  line-height: 1;
  color: #ffffff;
}

/* Call Button Styling */
.floating-call-btn {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  animation: pulse-blue 2.5s infinite;
}

/* WhatsApp Button Styling */
.floating-whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  animation: pulse-green 2.5s infinite 1.25s;
}

/* Hover Expanding Effect */
.floating-btn:hover {
  width: auto;
  padding-right: 18px;
  border-radius: 30px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px) scale(1.04);
}

.floating-btn:hover .floating-btn-text {
  max-width: 140px;
  opacity: 1;
  padding-right: 4px;
}

/* Pulse Keyframes */
@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.6), 0 4px 18px rgba(0, 0, 0, 0.22);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(13, 110, 253, 0), 0 4px 18px rgba(0, 0, 0, 0.22);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0), 0 4px 18px rgba(0, 0, 0, 0.22);
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 4px 18px rgba(0, 0, 0, 0.22);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 4px 18px rgba(0, 0, 0, 0.22);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 18px rgba(0, 0, 0, 0.22);
  }
}

/* Responsive Scaling for Mobile Screens */
@media (max-width: 768px) {
  .left-floating-actions {
    left: 12px;
    bottom: 20px;
    gap: 10px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
  }

  .floating-btn i {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }
}

/* -------------------------------------------------------------
 * Media Queries for Mobile, Tablet, LG & Desktop
 * ------------------------------------------------------------- */
@media (max-width: 992px) {
  .top-bar-left span:nth-child(3) {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px 25px;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(11, 21, 40, 0.15);
    display: none;
    border-bottom: 3px solid var(--primary-color);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-btn-quote {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 576px) {
  .top-bar-right {
    display: none;
  }

  .top-bar-container {
    justify-content: center;
    font-size: 0.78rem;
  }

  .page-hero {
    padding: 45px 20px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* -------------------------------------------------------------
 * Scroll Reveal Animation Framework (Up & Down Scroll Support)
 * ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-zoom.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* -------------------------------------------------------------
 * Curved Arch Photo & Minimal Form "Request a Quote" Section
 * ------------------------------------------------------------- */
.arc-quote-section {
  background: #ffffff;
  padding: 80px 0;
  border-top: 1px solid #f1f5f9;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.arc-quote-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-sizing: border-box;
}

.arc-quote-container>* {
  min-width: 0;
  max-width: 100%;
}

.arc-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
  margin-left: 0;
  box-sizing: border-box;
}

.arc-image-card {
  width: 100%;
  max-width: 660px;
  height: 580px;
  border-radius: 0 290px 290px 0;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
  background-color: #f8fafc;
}

.arc-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 1400px) {
  .arc-image-card {
    max-width: 740px;
    height: 640px;
    border-radius: 0 320px 320px 0;
  }
}

.arc-form-wrapper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  padding-right: 5%;
}

.arc-form-content {
  width: 100%;
  max-width: 460px;
  min-width: 0;
  box-sizing: border-box;
}

.arc-form-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.arc-form-content form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.arc-field {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.arc-field input,
.arc-field select,
.arc-field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
  font-size: 0.95rem;
  color: #111827;
  font-family: inherit;
  border-radius: 0;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arc-field select {
  cursor: pointer;
  padding-right: 20px;
  max-width: 100%;
}

.arc-field select option {
  color: #0f172a;
  background-color: #ffffff;
  padding: 10px;
}

.arc-select-arrow {
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 0.75rem;
  color: #111827;
  pointer-events: none;
}

.arc-field input::placeholder,
.arc-field textarea::placeholder {
  color: #4b5563;
  font-weight: 400;
}

.arc-field input:focus,
.arc-field select:focus,
.arc-field textarea:focus {
  outline: none;
  border-bottom-color: #000000;
}

.arc-submit-btn {
  -webkit-appearance: none;
  appearance: none;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  background: #000000 !important;
  color: #ffffff !important;
  border: 1.5px solid #000000 !important;
  border-radius: 30px !important;
  padding: 13px 16px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer;
  margin-top: 24px !important;
  margin-bottom: 12px !important;
  display: block !important;
  text-align: center !important;
  line-height: 1.4 !important;
  transition: all 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
}

.arc-submit-btn:hover {
  background: #0d6efd !important;
  border-color: #0d6efd !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.35);
  transform: translateY(-2px);
}

.arc-success-alert {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 12px;
  padding: 16px 20px;
  color: #166534;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.arc-success-alert i {
  font-size: 1.4rem;
  color: #22c55e;
}

@media (max-width: 992px) {
  .arc-quote-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .arc-image-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 35px !important;
    box-sizing: border-box !important;
  }

  .arc-image-card {
    height: 320px !important;
    max-width: 88% !important;
    border-radius: 0 500px 500px 0 !important;
  }

  .arc-form-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }

  .arc-form-content {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  #arcQuoteForm {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .arc-field {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .arc-submit-btn {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 24px 0 12px 0 !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 576px) {
  .arc-quote-section {
    padding: 40px 0 !important;
  }

  .arc-image-card {
    height: 260px !important;
    max-width: 90% !important;
    border-radius: 0 500px 500px 0 !important;
  }

  .arc-form-wrapper {
    padding: 0 18px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .arc-form-title {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
  }
}