/* ==========================================================================
   EURO+ — Contact page supplementary styles (Dark Premium Theme)
   (loaded after style.css / animations.css / responsive.css / about.css)
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Brand Colors - match main brand (also defined in style.css) */
  --gold: #C3862B;
  --gold-royal: #B5751F;
  --gold-dark: #8F5D18;
  --gold-soft: rgba(195, 134, 43, 0.14);
  --gold-light: rgba(195, 134, 43, 0.08);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-btn: 'Montserrat', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section-padding {
    padding: 56px 0;
  }
}
@media (max-width: 480px) {
  .section-padding {
    padding: 40px 0;
  }
}

.bg-white {
  background: var(--void) !important;
}
.bg-light {
  background: var(--surface) !important;
}

/* Belt-and-suspenders: force each section dark by ID too, in case
   another stylesheet (e.g. products.css) loaded after this one
   redeclares .bg-white / .bg-light with a light background. */
#welcome,
#contact-form,
#faq {
  background: var(--void) !important;
}
#contact-info,
#why-contact,
#social-media {
  background: var(--surface) !important;
}

.section-title-alt {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.2;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  margin-top: 8px;
}

.section-desc {
  color: var(--muted);
  font-weight: 300;
  font-size: 15px;
  max-width: 580px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.welcome-text {
  color: var(--muted);
  font-weight: 300;
  margin-top: 18px;
  line-height: 1.8;
  font-size: 15px;
}

/* ---------- About Heading (for inline style fix) ---------- */
.about-heading {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.2;
  margin-bottom: 24px;
}

/* ---------- Hero Banner ---------- */
.page-banner {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--void);
}
@media (max-width: 768px) {
  .page-banner {
    min-height: 80vh;
    padding: 60px 0 40px;
  }
}

.page-banner .banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner .banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(12, 10, 7, 0.55) 0%,
    rgba(12, 10, 7, 0.65) 40%,
    rgba(12, 10, 7, 0.88) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  margin: 16px 0 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.hero-content p {
  font-size: clamp(16px, 1.2vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.7;
}

.page-banner .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.page-banner .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-banner .breadcrumb a:hover {
  color: var(--gold);
}
.page-banner .breadcrumb i {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
}
.page-banner .breadcrumb span {
  color: var(--gold);
}

/* ---------- Hero scroll indicator ---------- */
.page-banner .scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-btn);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.page-banner .scroll-indicator .wheel {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  position: relative;
}
.page-banner .scroll-indicator .wheel::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; }
}

/* ---------- Welcome section ---------- */
.welcome-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/4.2;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line);
}
.welcome-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.welcome-visual:hover img {
  transform: scale(1.03);
}

.welcome-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(12, 10, 7, 0.72);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  border: 1px solid rgba(195, 134, 43, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.welcome-badge i {
  color: var(--gold);
  margin-right: 8px;
}

.welcome-experience {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
}
.welcome-experience .we-item {
  flex: 1;
  background: rgba(12, 10, 7, 0.72);
  backdrop-filter: blur(8px);
  padding: 12px 14px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(195, 134, 43, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.welcome-experience .we-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--gold);
  line-height: 1.2;
}
.welcome-experience .we-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(241, 233, 220, 0.6);
  margin-top: 2px;
}
@media (max-width: 480px) {
  .welcome-experience {
    flex-direction: column;
    gap: 8px;
  }
  .welcome-experience .we-item {
    padding: 8px 12px;
  }
  .welcome-experience .we-number {
    font-size: 16px;
  }
}

.welcome-highlight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 32px;
}
@media (max-width: 480px) {
  .welcome-highlight-box {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}
.welcome-highlight-box .wh-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-radius: 12px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--line);
}
.welcome-highlight-box .wh-item:hover {
  background: var(--surface-3);
  border-color: rgba(195, 134, 43, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.welcome-highlight-box .wh-item i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
}
@media (max-width: 480px) {
  .welcome-highlight-box .wh-item {
    font-size: 11px;
    padding: 10px 12px;
    gap: 8px;
  }
  .welcome-highlight-box .wh-item i {
    font-size: 14px;
    width: 16px;
  }
}

/* ---------- Contact info cards ---------- */
.contact-info-card {
  text-align: center;
  padding: 36px 20px 28px;
  height: 100%;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 30px -20px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease),
              border-color 0.4s ease;
}
.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -28px rgba(195, 134, 43, 0.3);
  border-color: rgba(195, 134, 43, 0.45);
}
.contact-info-card .cic-ic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(140deg, #C3862B, #8F5D18);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.4s ease;
}
.contact-info-card:hover .cic-ic {
  transform: scale(1.06);
}
.contact-info-card h5 {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--white);
}
.contact-info-card p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 12px;
  line-height: 1.7;
}

.cic-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s ease;
}
.cic-link:hover {
  gap: 10px;
  color: var(--gold-pale);
}

.cic-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #4ecb7a;
  background: rgba(78, 203, 122, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ecb7a;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ---------- Contact Form + Sidebar ---------- */
.contact-form-card {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, 0.55);
}
@media (max-width: 576px) {
  .contact-form-card {
    padding: 24px 16px;
  }
}

.form-floating-euro {
  position: relative;
  margin-bottom: 16px;
}
.form-floating-euro input,
.form-floating-euro select,
.form-floating-euro textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 18px 14px 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
}
.form-floating-euro textarea {
  min-height: 110px;
  resize: vertical;
  padding-top: 20px;
}
.form-floating-euro input:focus,
.form-floating-euro select:focus,
.form-floating-euro textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(195, 134, 43, 0.14);
  background: rgba(255, 255, 255, 0.05);
}
.form-floating-euro label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 13px;
  color: rgba(241, 233, 220, 0.45);
  pointer-events: none;
  transition: all 0.2s ease;
  background: transparent;
  padding: 0 4px;
}
.form-floating-euro input:focus + label,
.form-floating-euro input:not(:placeholder-shown) + label,
.form-floating-euro select:focus + label,
.form-floating-euro select.has-value + label,
.form-floating-euro textarea:focus + label,
.form-floating-euro textarea:not(:placeholder-shown) + label {
  top: -9px;
  font-size: 10px;
  color: var(--gold);
  background: var(--surface-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.form-floating-euro select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C3862B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  color-scheme: dark;
}
.form-floating-euro select option {
  background: var(--surface-2);
  color: var(--white);
}
.form-check-euro {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin: 4px 0 16px;
}
.form-check-euro input {
  margin-top: 2px;
  accent-color: var(--gold-dark);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.form-check-euro a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 500;
}

.form-success-msg {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(195, 134, 43, 0.1);
  border: 1px solid rgba(195, 134, 43, 0.3);
  color: var(--ink);
  font-size: 13.5px;
  margin-bottom: 20px;
}
.form-success-msg.show {
  display: flex;
  animation: fadeInUpSm 0.5s var(--ease);
}
.form-success-msg i {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
@keyframes fadeInUpSm {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Form Sidebar ---------- */
.form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.sidebar-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  min-height: 320px;
  border: 1px solid var(--line);
}
.sidebar-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05) invert(0.92) hue-rotate(180deg);
}

.sidebar-map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(12, 10, 7, 0.82);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(195, 134, 43, 0.25);
}
.sidebar-map-overlay img {
  height: 28px;
  margin-bottom: 8px;
}
.sidebar-map-overlay p {
  font-size: 13px;
  color: rgba(241, 233, 220, 0.75);
  margin: 0 0 12px;
  line-height: 1.5;
}
.sidebar-map-overlay .btn-euro.btn-sm {
  padding: 8px 18px;
  font-size: 11px;
}

.sidebar-quick-info {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border-radius: 20px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px -20px rgba(0, 0, 0, 0.5);
}
.sq-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.sq-item:last-child {
  border-bottom: none;
}
.sq-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(195, 134, 43, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.sq-item > div {
  display: flex;
  flex-direction: column;
}
.sq-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(241, 233, 220, 0.45);
  font-weight: 500;
}
.sq-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}
@media (max-width: 480px) {
  .sq-item {
    gap: 12px;
    padding: 10px 0;
  }
  .sq-item i {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .sq-value {
    font-size: 12px;
  }
}

/* ---------- Dealer CTA Section ---------- */
.dealer-cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .dealer-cta-section {
    padding: 70px 0;
  }
}
@media (max-width: 480px) {
  .dealer-cta-section {
    padding: 50px 0;
  }
}

.dealer-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dealer-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dealer-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(12, 10, 7, 0.75) 0%,
    rgba(12, 10, 7, 0.85) 50%,
    rgba(12, 10, 7, 0.95) 100%
  );
}

.dealer-cta-content {
  position: relative;
  z-index: 2;
}

.dealer-cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}
.dealer-cta-box .sub-head {
  color: var(--gold);
}
.dealer-cta-box h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin: 12px 0 20px;
}
.dealer-cta-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.dealer-cta-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 480px) {
  .dealer-cta-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.dcs-item {
  text-align: center;
}
.dcs-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--gold);
  line-height: 1.2;
}
@media (max-width: 480px) {
  .dcs-number {
    font-size: 24px;
  }
}
.dcs-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ---------- Why Contact icon grid ---------- */
.why-contact-card {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 14px;
  text-align: center;
  height: 100%;
  transition: transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease),
              border-color 0.4s ease;
}
.why-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 54px -28px rgba(195, 134, 43, 0.3);
  border-color: rgba(195, 134, 43, 0.4);
}
.why-contact-card .wc-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: rgba(195, 134, 43, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.why-contact-card:hover .wc-ic {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.05);
}
.why-contact-card h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--white);
  margin: 0;
}
@media (max-width: 480px) {
  .why-contact-card {
    padding: 20px 10px;
  }
  .why-contact-card .wc-ic {
    width: 44px;
    height: 44px;
    font-size: 16px;
    margin-bottom: 8px;
  }
  .why-contact-card h6 {
    font-size: 11px;
  }
}

/* ---------- FAQ Accordion ---------- */
.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
}
.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion-button {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--white);
  padding: 18px 24px;
  background: transparent;
  border: none;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--surface-3);
  color: var(--gold);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23bbb' stroke-width='1.5' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23C3862B' stroke-width='1.5' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-body {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-accordion .accordion-body a {
  color: var(--gold);
  text-decoration: underline;
}

/* ---------- Social media cards ---------- */
.social-card-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.social-card {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  color: var(--white);
  transition: all 0.4s var(--ease);
}
.social-card i {
  font-size: 22px;
  color: var(--gold);
  transition: color 0.4s ease;
}
.social-card span {
  font-size: 9px;
  font-family: var(--font-btn);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(241, 233, 220, 0.45);
  transition: color 0.3s ease;
}
.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 22px 44px -18px rgba(195, 134, 43, 0.4);
}
.social-card:hover span {
  color: var(--gold);
}

/* Brand-specific social colors on hover */
.social-card.fb:hover { border-color: #1877f2; }
.social-card.fb:hover i { color: #1877f2; }

.social-card.ig:hover { border-color: #e4405f; }
.social-card.ig:hover i { color: #e4405f; }

.social-card.li:hover { border-color: #0a66c2; }
.social-card.li:hover i { color: #0a66c2; }

.social-card.yt:hover { border-color: #ff0000; }
.social-card.yt:hover i { color: #ff0000; }

.social-card.wa:hover { border-color: #25d366; }
.social-card.wa:hover i { color: #25d366; }

@media (max-width: 480px) {
  .social-card {
    width: 64px;
    height: 64px;
  }
  .social-card i {
    font-size: 18px;
  }
  .social-card span {
    font-size: 7px;
  }
}

/* ---------- Floating quick actions bar ---------- */
#quickActions {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 576px) {
  #quickActions {
    left: 14px;
    bottom: 14px;
    gap: 8px;
  }
}
#quickActions a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 10, 7, 0.78);
  backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(195, 134, 43, 0.3);
  color: var(--gold);
  font-size: 18px;
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.4s var(--ease);
  text-decoration: none;
}
#quickActions a:hover {
  background: var(--gold-dark);
  color: #ffffff;
  transform: translateY(-4px) scale(1.06);
  border-color: var(--gold-dark);
}
#quickActions a.qa-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}
@media (max-width: 480px) {
  #quickActions a {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}

/* ---------- Floating decorative shapes (hero) ---------- */
.page-banner .floaty {
  position: absolute;
  border-radius: 50%;
  background: rgba(195, 134, 43, 0.07);
  border: 1px solid rgba(195, 134, 43, 0.12);
  z-index: 1;
  pointer-events: none;
}
.page-banner .floaty.f1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -80px;
  animation: drift 12s ease-in-out infinite;
}
.page-banner .floaty.f2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -60px;
  animation: drift 10s ease-in-out infinite reverse;
}
.page-banner .floaty.f3 {
  width: 120px;
  height: 120px;
  top: 30%;
  left: 15%;
  animation: drift 8s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}
@media (max-width: 768px) {
  .page-banner .floaty.f1 {
    width: 150px;
    height: 150px;
    top: -40px;
    right: -40px;
  }
  .page-banner .floaty.f2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: -30px;
  }
  .page-banner .floaty.f3 {
    width: 80px;
    height: 80px;
  }
}

/* ---------- Testimonials Swiper Pagination (for inline style fix) ---------- */
.testimonial-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

/* ---------- Video Modal (for inline style fix) ---------- */
#modalVideo {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: #000;
}