/* =========================================================
   coorenett — Contact Page Stylesheet
   ========================================================= */

/* =========================================================
   PAGE BANNER
   ========================================================= */
.page-banner {
  position: relative;
  height: clamp(400px, 60vh, 600px);
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.banner-media {
  position: absolute;
  inset: 0;
}
.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.55));
}
#bannerParticles {
  position: absolute;
  inset: 0;
}
.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(16px, 5%, 60px);
}
.banner-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 6vw, 70px);
  color: var(--white);
  line-height: 1.12;
  margin: 18px 0 20px;
}
.banner-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 560px;
  margin: 0 auto 26px;
}
.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb-nav a {
  color: var(--gold-light);
}
.breadcrumb-nav i {
  font-size: 11px;
}
.breadcrumb-nav span {
  color: var(--white);
}

/* =========================================================
   CONTACT INFORMATION CARDS
   ========================================================= */
.info-cards-section {
  background: var(--bg-light);
  padding: clamp(60px, 8vw, 100px) 0;
}
.info-card {
  height: 100%;
  text-align: center;
  padding: clamp(32px, 3.5vw, 42px) clamp(20px, 2.5vw, 26px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}
.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.12);
}
.info-card-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}
.info-card-icon i {
  font-size: 26px;
  color: var(--gold);
}
.info-card:hover .info-card-icon {
  transform: scale(1.12) rotate(-6deg);
}
.info-card h6 {
  font-size: clamp(16px, 1.2vw, 17px);
  margin-bottom: 10px;
}
.info-card p {
  font-size: clamp(13px, 1vw, 13.5px);
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.info-card a {
  font-size: clamp(13px, 1vw, 13.5px);
  color: var(--gold-dark);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.info-card a:hover {
  color: var(--gold);
}
.info-card a i {
  font-size: 11px;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.form-section {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
}
.form-img-wrap {
  position: relative;
}
.form-img {
  width: 100%;
  height: clamp(400px, 45vw, 620px);
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.form-img-badge {
  position: absolute;
  bottom: -26px;
  left: 24px;
  right: 24px;
  background: var(--grad-dark);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.form-img-badge i {
  font-size: 24px;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-img-badge span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.form-img-badge small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.inquiry-form .form-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  margin-bottom: 6px;
}
.inquiry-form .form-control,
.inquiry-form .form-select {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  background: var(--bg-light);
  transition: all 0.3s ease;
}
.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: var(--white);
}
.text-danger {
  color: #d9534f !important;
}
.optional-tag {
  color: #999;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}
.form-check-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.form-check-wrap .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 0;
  flex-shrink: 0;
}
.form-check-wrap .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}
.form-check-wrap label {
  font-size: 13.5px;
  color: #555;
}
.text-gold-link {
  color: var(--gold-dark);
  font-weight: 500;
}
.text-gold-link:hover {
  color: var(--gold);
}

.btn-submit {
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.form-success {
  display: none;
  margin-top: 16px;
  color: #2f8a5c;
  background: rgba(58, 167, 109, 0.1);
  border: 1px solid rgba(58, 167, 109, 0.3);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  align-items: center;
  gap: 10px;
}
.form-success.show {
  display: flex;
}
.form-success i {
  font-size: 17px;
}
.inquiry-form .form-control.is-invalid,
.inquiry-form .form-select.is-invalid {
  border-color: #d9534f;
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12);
}

/* =========================================================
   QUICK CONTACT STRIP
   ========================================================= */
.quick-contact-section {
  background: var(--grad-dark);
  padding: clamp(60px, 8vw, 90px) 0;
}
.quick-card {
  display: block;
  padding: clamp(30px, 3.5vw, 40px) 20px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s ease;
  color: var(--white);
  text-decoration: none;
}
.quick-card:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--gold);
  transform: translateY(-8px);
  color: var(--white);
  text-decoration: none;
}
.quick-card i {
  font-size: 30px;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: block;
}
.quick-card h6 {
  color: var(--white);
  font-size: clamp(14px, 1.1vw, 15px);
  margin-bottom: 6px;
}
.quick-card span {
  color: rgba(255, 255, 255, 0.55);
  font-size: clamp(12px, 0.9vw, 13px);
}

/* =========================================================
   GOOGLE MAP
   ========================================================= */
.map-section {
  background: var(--bg-light);
  padding: clamp(60px, 8vw, 100px) 0;
}
.map-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.map-wrap iframe {
  width: 100%;
  height: clamp(300px, 40vw, 480px);
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}
.map-directions-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
}

/* =========================================================
   REQUEST A QUOTATION BANNER
   ========================================================= */
.quote-banner-section {
  position: relative;
  padding: clamp(80px, 12vw, 110px) 0;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.6));
}
.quote-banner-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   BECOME A DEALER SPLIT
   ========================================================= */
.dealer-split-section {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
}
.dealer-split-img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.dealer-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}
.dealer-benefits li {
  font-size: clamp(14px, 1.1vw, 15px);
  color: #444;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dealer-benefits i {
  color: var(--gold);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-section {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
}
.faq-accordion .accordion-item {
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg-light);
}
.faq-accordion .accordion-button {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  color: var(--black);
  padding: clamp(18px, 1.8vw, 22px) clamp(18px, 2vw, 26px);
  background: var(--bg-light);
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--gold-dark);
}
.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 13px;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.faq-accordion .accordion-body {
  padding: 4px clamp(18px, 2vw, 26px) clamp(18px, 2vw, 26px);
  color: #666;
  font-size: clamp(13px, 1vw, 14.5px);
  line-height: 1.8;
}

/* =========================================================
   SOCIAL MEDIA CARDS
   ========================================================= */
.social-section {
  background: var(--grad-dark);
  padding: clamp(60px, 8vw, 100px) 0;
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: clamp(24px, 3vw, 30px) 10px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  transition: all 0.4s ease;
  text-decoration: none;
}
.social-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
  transform: scale(1.06);
  color: var(--white);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  text-decoration: none;
}
.social-card i {
  font-size: 26px;
  color: var(--gold-light);
  transition: transform 0.4s ease;
}
.social-card:hover i {
  transform: rotate(360deg);
}
.social-card span {
  font-size: clamp(12px, 0.9vw, 13px);
  letter-spacing: 0.3px;
}

/* =========================================================
   CLIENT SUPPORT TIMELINE
   ========================================================= */
.support-timeline-section {
  background: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
}
.mfg-steps {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 40px);
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}
.mfg-line {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  display: none;
}
.mfg-line-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--grad-gold);
}
.mfg-step {
  flex: 1 1 clamp(140px, 18vw, 180px);
  text-align: center;
  position: relative;
}
.mfg-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 6vw, 68px);
  height: clamp(56px, 6vw, 68px);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: clamp(20px, 2vw, 24px);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.35);
  margin-bottom: clamp(14px, 1.5vw, 18px);
}
.mfg-step h6 {
  color: var(--black);
  font-family: var(--font-body);
  font-size: clamp(13px, 1.1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* =========================================================
   WHY SECTION (overrides for contact page)
   ========================================================= */
.why-section .why-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 175, 55, 0.15);
}
.why-section .why-card h6 {
  color: var(--white);
}
.why-section .why-card i {
  color: var(--gold-light);
}
.why-section .why-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
}

/* =========================================================
   CTA BUTTONS
   ========================================================= */
.cta-buttons {
  display: flex;
  gap: clamp(12px, 1.5vw, 20px);
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.float-btn {
  position: fixed;
  right: clamp(16px, 2vw, 26px);
  width: clamp(46px, 4.5vw, 54px);
  height: clamp(46px, 4.5vw, 54px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(17px, 1.8vw, 20px);
  z-index: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.1);
}
.whatsapp-btn {
  bottom: clamp(16px, 2vw, 26px);
  background: #25D366;
  color: var(--white);
}
.call-btn {
  bottom: clamp(68px, 8vw, 92px);
  background: var(--grad-gold);
  color: var(--black);
}
.email-btn {
  bottom: 158px;
  background: #111111;
  color: #E8C76B;
  border: 1px solid #D4AF37;
}
.back-to-top {
  bottom: 224px;
  background: var(--white);
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  cursor: pointer;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .email-btn { bottom: 128px; }
  .back-to-top { bottom: 180px; }
}
@media (max-width: 575px) {
  .email-btn { bottom: 118px; }
  .back-to-top { bottom: 170px; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1199px) {
  .mfg-steps {
    gap: 30px 20px;
  }
}

@media (max-width: 991px) {
  .mfg-steps {
    flex-direction: column;
    align-items: center;
  }
  .mfg-step {
    flex: 1 1 auto;
    width: 100%;
    max-width: 320px;
  }
  .mfg-line {
    display: none;
  }
  .form-img {
    height: 400px;
  }
  .info-card {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .form-img {
    height: 320px;
  }
  .form-img-badge {
    position: static;
    margin-top: 16px;
  }
  .map-wrap iframe {
    height: 300px;
  }
  .map-directions-btn {
    position: static;
    display: inline-block;
    margin: 16px auto 0;
  }
  .mfg-step {
    max-width: 100%;
  }
  .page-banner {
    height: clamp(340px, 45vh, 420px);
  }
  .banner-title {
    font-size: clamp(28px, 7vw, 40px);
  }
  .banner-subtitle {
    font-size: 15px;
  }
  .info-card {
    padding: 26px 18px;
  }
  .quick-card {
    padding: 24px 16px;
  }
  .quick-card i {
    font-size: 26px;
  }
  .social-card {
    padding: 20px 8px;
  }
  .social-card i {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .form-img {
    height: 260px;
  }
  .page-banner {
    height: clamp(300px, 40vh, 380px);
    min-height: 320px;
  }
  .banner-title {
    font-size: clamp(24px, 7vw, 32px);
  }
  .banner-subtitle {
    font-size: 14px;
  }
  .map-wrap iframe {
    height: 250px;
  }
  .mfg-num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .mfg-step h6 {
    font-size: 13px;
  }
  .info-card-icon {
    width: 54px;
    height: 54px;
  }
  .info-card-icon i {
    font-size: 22px;
  }
  .social-card span {
    font-size: 11px;
  }
  .form-img-badge {
    padding: 16px 18px;
    flex-wrap: wrap;
  }
  .form-img-badge i {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .form-img-badge span {
    font-size: 13px;
  }
  .form-img-badge small {
    font-size: 11px;
  }
  .inquiry-form .form-control,
  .inquiry-form .form-select {
    padding: 11px 14px;
    font-size: 13px;
  }
  .faq-accordion .accordion-button {
    font-size: 13px;
    padding: 14px 16px;
  }
  .faq-accordion .accordion-body {
    padding: 0 16px 16px;
    font-size: 12.5px;
  }
}

@media (max-width: 400px) {
  .page-banner {
    height: clamp(260px, 35vh, 320px);
    min-height: 260px;
  }
  .banner-title {
    font-size: clamp(20px, 6vw, 26px);
  }
  .form-img {
    height: 220px;
  }
  .info-card {
    padding: 22px 14px;
  }
  .info-card-icon {
    width: 48px;
    height: 48px;
  }
  .info-card-icon i {
    font-size: 18px;
  }
  .quick-card {
    padding: 20px 12px;
  }
  .quick-card i {
    font-size: 22px;
  }
  .map-wrap iframe {
    height: 200px;
  }
  .dealer-benefits li {
    font-size: 13px;
  }
}