/* ============================================================
     CONTACT CARDS SECTION — OVERLAY ONLY
============================================================ */

.contact-cards-section {
  padding: 50px 0;
  background: #fcf9f7;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.contact-cards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(186, 35, 37, 0.02) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(70, 43, 52, 0.02) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.contact-cards-section .auto-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Contact Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 20px;
}

/* Contact Card */
.contact-card {
  background: transparent;
  height: 100%;
}

.card-inner {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 20px 30px;
  /* box-shadow: 0 15px 35px rgba(15, 15, 15, 0.98); */
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.95); /* ← ADD THIS LINE */

  border: 1px solid #ba2325;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Gradient Line at Bottom */
/* Gradient Line at Bottom - Always Visible */
.gradient-line {
  width: 100%; /* ← CHANGED FROM 0 TO 100% */
  height: 3px;
  background: linear-gradient(90deg, #462b34, #ba2325, #462b34);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s ease;
  z-index: 3;
  border-radius: 3px 3px 0 0;
}

/* Optional: You can keep or remove this hover effect */
.card-inner:hover .gradient-line {
  width: 100%; /* Already 100%, so no change needed */
}

/* Card Icon - Burgundy Color */
.card-icon {
  width: 80px;
  height: 80px;
  background: var(--cream) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #462b34; /* Burgundy color */
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Card Title */
.card-inner h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #462b34;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

/* Card Contact Text */
.card-contact {
  font-size: 14px;
  color: #766068;
  line-height: 1.6;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.card-contact:last-of-type {
  margin-bottom: 0;
}

/* ===== HOVER OVERLAY (ONLY EFFECT) ===== */
.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #462b34, #ba2325);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 4;
  border-radius: 24px;
  text-align: center;
  border: 2px solid black;
}

.card-inner:hover .card-hover-overlay {
  opacity: 1;
  visibility: visible;
}

.card-hover-overlay i {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.15);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.card-hover-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.card-hover-overlay span {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  display: inline-block;
}

/* Card hover effect */
.card-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(186, 35, 37, 0.15);
  border-color: rgba(186, 35, 37, 0.2);
}

/* ===== RESPONSIVE STYLES ===== */

/* Large Desktop (1200px - 1399px) */
@media (max-width: 1200px) {
  .contact-cards-grid {
    gap: 20px;
  }

  .card-inner {
    padding: 30px 15px 25px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .card-inner h3 {
    font-size: 16px;
  }

  .card-contact {
    font-size: 13px;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 992px) {
  .contact-cards-section {
    padding: 70px 0;
  }

  .contact-cards-section .sec-title h2 {
    font-size: 36px;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 768px) {
  .contact-cards-section {
    padding: 60px 0;
  }

  .contact-cards-section .sec-title h2 {
    font-size: 32px;
  }

  .contact-cards-section .sec-title p {
    font-size: 15px;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .card-inner {
    padding: 28px 15px 25px;
  }

  .card-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
    margin-bottom: 15px;
    color: #462b34 !important; /* Force burgundy */
    background: var(--cream) !important;
  }

  .card-inner h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .card-contact {
    font-size: 13px;
  }

  .card-hover-overlay i {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .card-hover-overlay p {
    font-size: 14px;
  }

  .card-hover-overlay span {
    font-size: 12px;
    padding: 5px 14px;
  }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
  .contact-cards-section {
    padding: 50px 0;
  }

  .contact-cards-section .sec-title h2 {
    font-size: 28px;
  }

  .contact-cards-section .sec-title p {
    font-size: 14px;
    padding: 0 15px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 350px;
    margin: 0 auto;
  }

  .card-inner {
    padding: 30px 15px 28px;
  }

  .card-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
    margin-bottom: 18px;
    color: #462b34 !important; /* Force burgundy */
  }

  .card-inner h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .card-contact {
    font-size: 14px;
  }

  .card-hover-overlay i {
    width: 65px;
    height: 65px;
    font-size: 30px;
  }

  .card-hover-overlay p {
    font-size: 15px;
  }

  .card-hover-overlay span {
    font-size: 13px;
    padding: 6px 16px;
  }
}

/* Small Mobile (400px and below) */
@media (max-width: 400px) {
  .contact-cards-section .sec-title h2 {
    font-size: 24px;
  }

  .contact-cards-grid {
    max-width: 280px;
  }

  .card-inner {
    padding: 25px 12px 22px;
  }

  .card-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
    color: #462b34 !important; /* Force burgundy */
  }

  .card-inner h3 {
    font-size: 16px;
  }

  .card-contact {
    font-size: 13px;
  }

  .card-hover-overlay i {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .card-hover-overlay p {
    font-size: 14px;
  }

  .card-hover-overlay span {
    font-size: 12px;
    padding: 5px 12px;
  }
}

@media (max-width: 991px) {
  .content-column {
    padding-top: 30px !important;
  }
}

/* Force icon color on all devices */
.card-icon i,
.card-icon {
  color: #a03232 !important;
}

.card-inner:hover .card-icon {
  color: #462b34;
}

/* ===== REVEAL ANIMATIONS ===== */

/*  */
/* ============================================================
     SECTION — CONTACT FORM (FIXED DROPDOWN - NO OVERLAP)
============================================================ */

.contact-form-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #fcf9f7 0%, #ffffff 100%);
  position: relative;
  overflow: visible; /* CRITICAL: Allow dropdown to overflow */
  z-index: 1;

  position: relative;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-49.png") no-repeat center center;
  background-size: cover;
}

/* Subtle background pattern */
.contact-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(186, 35, 37, 0.02) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(70, 43, 52, 0.02) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: -1;
}

.contact-form-section .auto-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  overflow: visible; /* CRITICAL: Allow dropdown to overflow */
  z-index: 2;
}

/* Form Wrapper - CRITICAL: Must allow overflow */
.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(70, 43, 52, 0.12);
  padding: 50px;
  border: 1px solid #ba2325;
  transition: all 0.4s ease;
  overflow: visible !important; /* CRITICAL: Allow dropdown to overflow */
  position: relative;
  z-index: 10;
}

.form-wrapper:hover {
  box-shadow: 0 30px 60px rgba(186, 35, 37, 0.15);
  border-color: rgba(186, 35, 37, 0.2);
}

/* Form Layout - CRITICAL: All containers must allow overflow */
.contact-form {
  display: flex;
  flex-direction: column;
  /* gap: 25px; */
  overflow: visible !important;
  position: relative;
  z-index: 20;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* gap: 25px; */
  overflow: visible !important;
  position: relative;
  z-index: 30;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: visible !important;
  z-index: 40;
}

.form-group.full-width {
  grid-column: 1 / -1;
  overflow: visible !important;
}

/* Labels */
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #462b34;
  letter-spacing: 0.3px;
}

.required {
  color: #ba2325;
  margin-left: 2px;
}

.optional {
  color: #9e848d;
  font-size: 12px;
  font-weight: 400;
  margin-left: 5px;
}

/* Input Wrappers */
.input-wrapper,
.textarea-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  overflow: visible;
}

.input-wrapper i,
.textarea-wrapper i {
  position: absolute;
  left: 16px;
  color: #9e848d;
  font-size: 15px;
  transition: all 0.3s ease;
  z-index: 1;
}

/* Input Fields */
.input-wrapper input,
.textarea-wrapper textarea {
  width: 100%;
  padding: 14px 16px 14px 45px;
  border: 2px solid rgba(224, 214, 208, 0.7);
  border-radius: 12px;
  font-size: 15px;
  font-family: "Nunito Sans", sans-serif;
  color: #2d2d2d;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  outline: none;
}

.textarea-wrapper textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 14px;
}

.input-wrapper input:focus,
.textarea-wrapper textarea:focus {
  border-color: #ba2325;
  box-shadow: 0 5px 20px rgba(186, 35, 37, 0.1);
  transform: translateY(-2px);
}

.input-wrapper input:focus + i,
.textarea-wrapper textarea:focus + i {
  color: #ba2325;
  transform: scale(1.1);
}

.input-wrapper input::placeholder,
.textarea-wrapper textarea::placeholder {
  color: #b8a9a1;
  font-weight: 400;
}

/* ===== CUSTOM DROPDOWN STYLES - FIXED FOR OVERFLOW ===== */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  overflow: visible !important;
  z-index: 1000;
}

.custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
  overflow: visible !important;
  z-index: 1001;
}

.select-trigger {
  width: 100%;
  padding: 14px 16px 14px 45px;
  border: 2px solid rgba(224, 214, 208, 0.7);
  border-radius: 12px;
  font-size: 15px;
  font-family: "Nunito Sans", sans-serif;
  color: #2d2d2d;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1002;
}

.select-trigger::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 16px;
  color: #9e848d;
  font-size: 15px;
  transition: all 0.3s ease;
}

.select-trigger span {
  margin-left: 25px;
  color: #2d2d2d;
}

.select-trigger i {
  color: #9e848d;
  transition: transform 0.3s ease;
}

.custom-select.open .select-trigger i {
  transform: rotate(180deg);
}

.custom-select.open .select-trigger {
  border-color: #ba2325;
  box-shadow: 0 5px 20px rgba(186, 35, 37, 0.1);
}

.custom-select.open .select-trigger::before {
  color: #ba2325;
}

/* Custom Options Dropdown - THIS IS THE KEY PART */
.custom-options {
  position: absolute;
  top: calc(100% + 8px); /* Position right below the trigger */
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(70, 43, 52, 0.25);
  border: 1px solid #ba2325;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999; /* Very high z-index to ensure it appears above everything */
  overflow: hidden;
}

.custom-select.open .custom-options {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}

/* Style the scrollbar */
.custom-options::-webkit-scrollbar {
  width: 6px;
}

.custom-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-options::-webkit-scrollbar-thumb {
  background: #ba2325;
  border-radius: 10px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
  background: #462b34;
}

.custom-option {
  padding: 12px 16px 12px 45px;
  font-size: 14px;
  color: #462b34;
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid rgba(224, 214, 208, 0.3);
}

.custom-option::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 16px;
  color: #9e848d;
  font-size: 14px;
  transition: all 0.2s ease;
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-option:hover {
  background: rgba(186, 35, 37, 0.08);
  color: #ba2325;
  padding-left: 50px;
}

.custom-option:hover::before {
  color: #ba2325;
  left: 20px;
}

.custom-option.selected {
  background: rgba(186, 35, 37, 0.12);
  color: #ba2325;
  font-weight: 600;
}

.custom-option.selected::before {
  content: "\f00c";
  color: #ba2325;
}

/* ===== FILE UPLOAD STYLES ===== */
.file-upload-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
}

.file-upload-area {
  border: 2px dashed rgba(186, 35, 37, 0.3);
  border-radius: 16px;
  padding: 35px 20px;
  text-align: center;
  background: rgba(186, 35, 37, 0.02);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.file-upload-area:hover {
  border-color: #ba2325;
  background: rgba(186, 35, 37, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(186, 35, 37, 0.1);
}

.file-upload-area i {
  font-size: 40px;
  color: #ba2325;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.file-upload-area:hover i {
  transform: scale(1.1) translateY(-5px);
}

.file-upload-text {
  font-size: 16px;
  color: #462b34;
  margin-bottom: 8px;
}

.browse-text {
  color: #ba2325;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.file-info {
  display: block;
  font-size: 12px;
  color: #9e848d;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

/* File Preview */
.file-preview {
  margin-top: 15px;
  padding: 12px 16px;
  background: rgba(70, 43, 52, 0.05);
  border-radius: 10px;
  display: none;
  align-items: center;
  justify-content: space-between;
  animation: slideIn 0.3s ease;
}

.file-preview.show {
  display: flex;
}

.file-name {
  font-size: 13px;
  color: #462b34;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.file-name::before {
  content: "\f15b";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: #ba2325;
}

.remove-file {
  width: 24px;
  height: 24px;
  background: rgba(186, 35, 37, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ba2325;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.remove-file:hover {
  background: #ba2325;
  color: #ffffff;
  transform: rotate(90deg);
}

/* ===== SUBMIT BUTTON ===== */
.submit-group {
  margin-top: 15px;
  overflow: visible;
}

.submit-btn {
  position: relative;
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, #462b34, #ba2325);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 1;
}

.submit-btn:hover {
  background: transparent;
  border-color: #ba2325;
  color: #462b34;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(186, 35, 37, 0.3);
}

.submit-btn:hover .btn-icon {
  transform: translateX(8px) rotate(15deg);
  color: #ba2325;
}

.submit-btn:hover .btn-hover-effect {
  width: 300px;
  height: 300px;
}

.submit-btn:active {
  transform: translateY(0);
}

/* ===== TRUST NOTE ===== */
.trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px;
  /* background: rgba(70, 43, 52, 0.23); */
  border-radius: 50px;
  animation: fadeIn 1s ease;
}

.trust-note i {
  color: #ba2325;
  font-size: 14px;
}

.trust-note p {
  font-size: 13px;
  color: #766068;
  margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 992px) {
  .contact-form-section {
    padding: 70px 0;
  }

  .contact-form-section .sec-title h2 {
    font-size: 36px;
  }

  .form-wrapper {
    padding: 40px 30px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-section .sec-title h2 {
    font-size: 32px;
  }

  .contact-form-section .sec-title p {
    font-size: 15px;
  }

  .form-wrapper {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .custom-options {
    max-height: 250px;
  }

  .file-upload-area {
    padding: 25px 15px;
  }

  .file-upload-area i {
    font-size: 35px;
  }

  .file-upload-text {
    font-size: 14px;
  }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
  .contact-form-section {
    padding: 50px 0;
    overflow: visible !important;
  }

  .contact-form-section .sec-title h2 {
    font-size: 28px;
  }

  .contact-form-section .sec-title p {
    font-size: 14px;
    padding: 0 15px;
  }

  .form-wrapper {
    padding: 25px 15px;
    border-radius: 20px;
    overflow: visible !important;
  }

  .input-wrapper input,
  .textarea-wrapper textarea,
  .select-trigger {
    padding: 12px 12px 12px 40px;
    font-size: 14px;
  }

  .select-trigger span {
    margin-left: 20px;
  }

  .custom-options {
    max-height: 220px;
  }

  .custom-option {
    padding: 10px 12px 10px 40px;
    font-size: 13px;
  }

  .file-upload-area {
    padding: 20px 10px;
  }

  .file-upload-area i {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .file-upload-text {
    font-size: 13px;
  }

  .file-info {
    font-size: 11px;
  }

  .submit-btn {
    padding: 15px 25px;
    font-size: 15px;
  }

  .trust-note {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 12px;
  }

  .trust-note p {
    font-size: 12px;
  }
}

/* Small Mobile (400px and below) */
@media (max-width: 400px) {
  .contact-form-section .sec-title h2 {
    font-size: 24px;
  }

  .form-wrapper {
    padding: 20px 12px;
  }

  .input-wrapper input,
  .textarea-wrapper textarea,
  .select-trigger {
    padding: 10px 10px 10px 35px;
    font-size: 13px;
  }

  .input-wrapper i,
  .textarea-wrapper i,
  .select-trigger::before {
    font-size: 13px;
    left: 12px;
  }

  .custom-options {
    max-height: 200px;
  }

  .file-upload-area {
    padding: 15px 8px;
  }

  .file-upload-area i {
    font-size: 25px;
  }

  .submit-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* EMERGENCY DROPDOWN FIX - Add these styles */
.contact-form-section,
.contact-form-section .auto-container,
.contact-form-section .form-wrapper,
.contact-form-section .contact-form,
.contact-form-section .form-row,
.contact-form-section .form-group {
  overflow: visible !important;
}

/* Ensure the dropdown container has proper positioning */
.contact-form-section .form-group {
  position: relative !important;
}

/* Force dropdown to be above everything */
.inquiry-type-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background: white !important;
  border: 2px solid #462b34 !important;
  border-radius: 12px !important;
  margin-top: 5px !important;
  box-shadow: 0 15px 40px rgba(70, 43, 52, 0.25) !important;
  max-height: 280px !important;
  overflow-y: auto !important;
  z-index: 9999999 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Fix for the form row containing the dropdown */
.form-row:nth-child(2) {
  position: relative !important;
  z-index: 9999 !important;
  overflow: visible !important;
}

/* Remove any max-height constraints from parent elements */
.custom-select-wrapper,
.form-group:has(.inquiry-type-dropdown) {
  max-height: none !important;
  overflow: visible !important;
}

/* When dropdown is open, ensure it's visible */
.inquiry-type-dropdown[style*="block"] {
  display: block !important;
}

/* Trigger styling */
.inquiry-type-trigger {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eae0d9;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.inquiry-type-trigger:hover {
  border-color: #462b34;
}

.inquiry-type-trigger i {
  color: #462b34;
  transition: transform 0.3s ease;
}

/* Dropdown options container */
.inquiry-type-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background: white !important;
  border: 2px solid #462b34 !important;
  border-radius: 8px !important;
  margin-top: 5px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
  max-height: 250px;
  overflow-y: auto;
  z-index: 10000 !important;
}

/* Dropdown options */
.inquiry-option {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0e6e0;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #333;
}

.inquiry-option:last-child {
  border-bottom: none;
}

.inquiry-option:hover {
  background: #462b34 !important;
  color: white !important;
}

/* Selected option */
.inquiry-option.selected {
  background: #462b34;
  color: white;
  font-weight: 600;
}

/* Selected text */
.inquiry-type-selected {
  color: #333;
  font-size: 14px;
}

/* ===== CONTACT FORM DROPDOWN FIX ===== */

/* Ensure the form group containing dropdown has highest z-index when open */
.form-group:has(.inquiry-type-dropdown[style*="block"]) {
  z-index: 10001 !important;
}

/* Give each form row proper z-index stacking */
.form-row {
  position: relative;
  z-index: 1;
}

.form-row:nth-child(1) {
  z-index: 100;
} /* First row */
.form-row:nth-child(2) {
  z-index: 90;
} /* Second row (dropdown row) */
.form-row:nth-child(3) {
  z-index: 80;
} /* Third row */
.form-row:nth-child(4) {
  z-index: 70;
} /* Fourth row */

/* But when dropdown is open in second row, boost its z-index */
.form-row:nth-child(2):has(.inquiry-type-dropdown[style*="block"]) {
  z-index: 1000 !important;
}

/* Ensure dropdown container is above everything */
.inquiry-type-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background: white !important;
  border: 2px solid #462b34 !important;
  border-radius: 8px !important;
  margin-top: 5px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
  max-height: 250px;
  overflow-y: auto;
  z-index: 99999 !important; /* Very high z-index */
}

/* Style for dropdown options */
.inquiry-option {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0e6e0;
  transition: all 0.2s ease;
  font-size: 14px;
  color: #333;
  background: white;
}

.inquiry-option:last-child {
  border-bottom: none;
}

.inquiry-option:hover {
  background: #462b34 !important;
  color: white !important;
}

.inquiry-option.selected {
  background: #462b34;
  color: white;
  font-weight: 600;
}

/* Style the trigger */
.inquiry-type-trigger {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eae0d9;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s ease;
  position: relative;
  z-index: 9999;
}

.inquiry-type-trigger:hover {
  border-color: #462b34;
}

.inquiry-type-trigger i {
  color: #462b34;
  transition: transform 0.3s ease;
}

/* When dropdown is open, indicate with arrow rotation */
.inquiry-type-trigger[data-open="true"] i {
  transform: rotate(180deg);
}

/* Fix for the subject field not overlapping */
.form-group {
  position: relative;
  z-index: 1;
}

/* Ensure the subject field doesn't overlap dropdown */
.form-group:has(#subject) {
  position: relative;
  z-index: 1;
}

/* Add a backdrop when dropdown is open to ensure it stays on top */
.inquiry-type-dropdown.show {
  display: block !important;
  z-index: 99999 !important;
}

/* Emergency fix - force dropdown above everything when open */
.inquiry-type-dropdown[style*="block"] {
  z-index: 999999 !important;
  position: absolute !important;
  background: white !important;
  border: 2px solid #462b34 !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

/*  */
/* whatsapp */
/* ============================================================
     SECTION — WHATSAPP SUPPORT (FULL WIDTH)
============================================================ */

/*  */

/* ═══════════════════════════════════════════
  SECTION 4: WHATSAPP
═══════════════════════════════════════════ */
.whatsapp-section {
  padding: 90px 0;
  /* background: linear-gradient(135deg, var(--dark-bg) 0%, var(--medium-bg) 100%); */
  position: relative;
  overflow: hidden;

  position: relative;
  padding: 70px 20px;
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-18.png") no-repeat center center;
  background-size: cover;
}

.whatsapp-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 60% 80% at 20% 50%,
      rgba(186, 35, 37, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 70% at 80% 60%,
      rgba(70, 43, 52, 0.5) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.whatsapp-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

/* Grid Layout - Image on Right */
.whatsapp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.whatsapp-content {
  text-align: left;
  max-width: 100%;
}

.wa-icon-wrap {
  width: 90px;
  height: 90px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 0 28px 0;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
  animation: waPulse 2.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 12px 60px rgba(37, 211, 102, 0.5);
    transform: scale(1.05);
  }
}

.whatsapp-section h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.whatsapp-section p {
  font-size: 16px;
  color: rgba(240, 230, 224, 0.65);
  max-width: 520px;
  margin: 0 0 36px 0;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}
.chat-bubble p {
  color: black !important;
  margin: 0px !important;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

.wa-btn:hover {
  background: #1db954;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
  color: #fff;
}

/* Right Visual Styles */
.whatsapp-visual {
  position: relative;
  z-index: 2;
  width: 100%;
}

.visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.main-image:hover {
  transform: scale(1.02);
}

/* Floating WhatsApp Icon */
.floating-whatsapp {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
  animation: float 3s ease-in-out infinite;
  z-index: 3;
  border: 3px solid #ffffff;
}

.floating-whatsapp i {
  font-size: 40px;
  color: #ffffff;
}

/* Chat Bubbles */
.chat-bubble {
  position: absolute;
  background: #ffffff;
  border-radius: 20px;
  padding: 10px 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  color: #462b34;
  font-weight: 500;
  white-space: nowrap;
  z-index: 4;
  border: 1px solid rgba(70, 43, 52, 0.1);
}

.chat-bubble::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid rgba(70, 43, 52, 0.1);
  border-bottom: 1px solid rgba(70, 43, 52, 0.1);
  transform: rotate(-45deg);
}

.bubble-1 {
  top: 20%;
  left: -30px;
  animation: floatBubble 4s ease-in-out infinite;
}

.bubble-1::before {
  bottom: -7px;
  left: 15px;
}

.bubble-2 {
  bottom: 15%;
  right: -20px;
  animation: floatBubble 5s ease-in-out infinite 1s;
}

.bubble-2::before {
  top: -7px;
  left: 15px;
  transform: rotate(135deg);
}

/* Dot Pattern */
.dot-pattern {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#25d366 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.2;
  z-index: 1;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatBubble {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal[data-delay="1"] {
  transition-delay: 0.2s;
}

.reveal[data-delay="2"] {
  transition-delay: 0.4s;
}

.reveal[data-delay="3"] {
  transition-delay: 0.6s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="right"] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

[data-reveal="right"].visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE STYLES (em based) ===== */

/* 75em = 1200px */
@media (max-width: 75em) {
  .whatsapp-grid {
    gap: 40px;
  }

  .main-image {
    max-width: 350px;
  }
}

/* 62em = 992px */
@media (max-width: 62em) {
  .whatsapp-section {
    padding: 70px 0;
  }

  .whatsapp-grid {
    gap: 30px;
  }

  .main-image {
    max-width: 320px;
  }

  .floating-whatsapp {
    width: 70px;
    height: 70px;
  }

  .floating-whatsapp i {
    font-size: 35px;
  }
}

/* 48em = 768px */
@media (max-width: 48em) {
  .whatsapp-section {
    padding: 60px 0;
  }

  .whatsapp-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .whatsapp-content {
    text-align: center;
    order: 1;
  }

  .wa-icon-wrap {
    margin: 0 auto 28px;
  }

  .whatsapp-section p {
    margin: 0 auto 36px;
  }

  .whatsapp-visual {
    order: 2;
  }

  .main-image {
    max-width: 380px;
  }

  .bubble-1 {
    left: 5%;
  }

  .bubble-2 {
    right: 5%;
  }
}

/* 36em = 576px */
@media (max-width: 36em) {
  .whatsapp-section {
    padding: 50px 0;
  }

  .whatsapp-grid {
    gap: 0px;
  }

  .wa-icon-wrap {
    width: 80px;
    height: 80px;
    font-size: 35px;
    margin-bottom: 20px;
  }

  .whatsapp-section h2 {
    font-size: 24px;
  }

  .whatsapp-section p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .wa-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .main-image {
    max-width: 300px;
  }

  .floating-whatsapp {
    width: 60px;
    height: 60px;
    top: -15px;
    right: 10px;
  }

  .floating-whatsapp i {
    font-size: 30px;
  }

  .chat-bubble {
    font-size: 11px;
    padding: 8px 12px;
  }

  .dot-pattern {
    width: 100px;
    height: 100px;
  }
}

/* 25em = 400px */
@media (max-width: 25em) {
  .whatsapp-section {
    padding: 40px 0;
  }

  .wa-icon-wrap {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .whatsapp-section h2 {
    font-size: 22px;
  }

  .whatsapp-section p {
    font-size: 14px;
  }

  .wa-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .main-image {
    max-width: 250px;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp i {
    font-size: 25px;
  }

  .chat-bubble {
    display: none;
  }

  .dot-pattern {
    width: 80px;
    height: 80px;
  }
}

/* Temporary fix to show image */
.whatsapp-visual[data-reveal="right"] {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* department */
/* ===== DEPARTMENT-WISE CONTACT SECTION - COMPLETE FIX ===== */

.locations-section .row.clearfix {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.locations-section .single-column {
  padding: 0 12px;
  margin-bottom: 24px;
}

/* Card inner box */
.locations-section .single-item .inner-box {
  position: relative;
  display: block;
  background: #fff;
  padding: 35px 25px 30px 25px;
  box-shadow: 0 15px 35px rgba(70, 43, 52, 0.12);
  border-radius: 24px;
  border: 1px solid rgba(70, 43, 52, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Department Icon */
.locations-section .single-item .upper-box .dept-icon {
  width: 70px;
  height: 70px;
  background: #f0e6e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #462b34;
  transition: all 0.4s ease;
}

/* Upper box - always centered */
.locations-section .single-item .upper-box {
  text-align: center;
  margin-bottom: 20px;
}

.locations-section .single-item .upper-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.locations-section .single-item .upper-box p {
  font-size: 14px;
  color: #766068;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0e6e0;
  text-align: center;
}

/* Info list - desktop layout (icon left) */
.locations-section .single-item .info-list li {
  position: relative;
  display: block;
  padding-left: 70px;
  margin-bottom: 20px;
  min-height: 50px;
}

.locations-section .single-item .info-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #f0e6e0;
  border-radius: 12px;
  color: #462b34;
}

.locations-section .single-item .info-list li p {
  font-size: 13px;
  font-weight: 600;
  color: #a38f96;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.locations-section .single-item .info-list li a {
  font-size: 15px;
  font-weight: 500;
  color: #462b34;
  transition: color 0.3s ease;
  word-break: break-word;
  display: inline-block;
}

/* ===== FIX 1: Center aligned at 950px and below ===== */
@media (max-width: 950px) {
  /* Center all info list items */
  .locations-section .single-item .info-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .locations-section .single-item .info-list li {
    padding-left: 0 !important;
    /* padding-top: 50px;  */
    text-align: center;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    min-height: auto;
  }

  /* Move icon to top center */
  .locations-section .single-item .info-list li i {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
  }

  /* Center all text */
  .locations-section .single-item .info-list li p,
  .locations-section .single-item .info-list li a {
    text-align: center;
    display: block;
  }

  .locations-section .single-item .info-list li p {
    margin-bottom: 4px;
  }
}

/* ===== FIX 2: Icon and text separate at 580px and below ===== */
@media (max-width: 580px) {
  .locations-section .single-column {
    padding: 0 8px;
    margin-bottom: 16px;
  }

  .locations-section .single-item .inner-box {
    padding: 25px 15px 20px 15px;
  }

  /* Upper box adjustments */
  .locations-section .single-item .upper-box .dept-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .locations-section .single-item .upper-box h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .locations-section .single-item .upper-box p {
    font-size: 13px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  /* Info list items - make them stack vertically with clear separation */
  .locations-section .single-item .info-list {
    gap: 20px;
  }

  .locations-section .single-item .info-list li {
    /* padding-top: 45px; */
    max-width: 240px;
    margin-bottom: 5px;
  }

  /* Make icons slightly smaller */
  .locations-section .single-item .info-list li i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }

  /* Ensure text is clearly separated */
  .locations-section .single-item .info-list li p {
    font-size: 12px;
    margin-bottom: 5px;
    letter-spacing: 0.8px;
  }

  .locations-section .single-item .info-list li a {
    font-size: 14px;
    padding: 0 5px;
    line-height: 1.4;
  }

  /* Add visual separation between email and phone */
  .locations-section .single-item .info-list li:first-child {
    margin-bottom: 10px;
  }

  /* Optional: Add a subtle separator between email and phone */
  .locations-section .single-item .info-list li:first-child::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #f0e6e0;
    margin: 15px auto 5px;
    border-radius: 2px;
  }
}

/* ===== EXTRA SMALL: Below 400px ===== */
@media (max-width: 400px) {
  .locations-section .single-item .inner-box {
    padding: 20px 12px 18px;
  }

  .locations-section .single-item .upper-box .dept-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .locations-section .single-item .upper-box h3 {
    font-size: 18px;
  }

  .locations-section .single-item .upper-box p {
    font-size: 12px;
  }

  .locations-section .single-item .info-list li {
    padding-top: 40px;
    max-width: 200px;
  }

  .locations-section .single-item .info-list li i {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
  }

  .locations-section .single-item .info-list li p {
    font-size: 11px;
  }

  .locations-section .single-item .info-list li a {
    font-size: 13px;
  }
}

/* ===== HOVER EFFECTS (optional) ===== */
.locations-section .single-item:hover .inner-box {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(186, 35, 37, 0.2);
  border-color: rgba(186, 35, 37, 0.15);
}

.locations-section .single-item:hover .upper-box .dept-icon {
  background: #462b34;
  color: #ffffff;
  transform: scale(1.1);
}

.locations-section .single-item:hover .info-list li i {
  background: #ba2325;
  color: #ffffff;
}

/* ===== EXACT FIX FOR ≤ 567px WITH PROPER GAP ===== */
@media (max-width: 567px) {
  /* Center everything */
  .locations-section .single-item .info-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* Each info item - icon centered above text with gap */
  .locations-section .single-item .info-list li {
    position: relative;
    padding: 55px 0 0 0 !important; /* Increased top padding for more gap */
    margin: 0 auto 30px auto;
    text-align: center;
    width: 100%;
    max-width: 260px;
    min-height: auto;
  }

  /* Icon - centered above text with gap */
  .locations-section .single-item .info-list li i {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    transform: translateX(-50%) !important;
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 18px;
    margin: 0;
  }

  /* Add gap between icon and text */
  .locations-section .single-item .info-list li::before {
    content: "";
    position: absolute;
    top: 50px; /* Positioned below the icon */
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #ba2325;
    opacity: 0.3;
    border-radius: 2px;
  }

  /* Text styles - centered with proper spacing */
  .locations-section .single-item .info-list li p {
    text-align: center;
    font-size: 12px;
    margin-bottom: 8px;
    display: block;
    padding-top: 5px;
  }

  .locations-section .single-item .info-list li a {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    display: block;
    word-break: break-word;
    line-height: 1.5;
  }

  /* Add separator between email and phone */
  .locations-section .single-item .info-list li:first-child {
    margin-bottom: 0px;
  }

  .locations-section .single-item .info-list li:first-child::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #f0e6e0;
    margin: 20px auto 5px;
  }

  /* Optional: Add slight hover effect */
  .locations-section .single-item .info-list li:hover i {
    background: #ba2325;
    color: #ffffff;
    transform: translateX(-50%) scale(1.1);
  }
}

/* Even smaller screens */
@media (max-width: 400px) {
  .locations-section .single-item .info-list li {
    padding: 50px 0 0 0 !important;
    max-width: 220px;
  }

  .locations-section .single-item .info-list li i {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 16px;
  }

  .locations-section .single-item .info-list li::before {
    top: 45px;
    width: 25px;
  }

  .locations-section .single-item .info-list li a {
    font-size: 14px;
  }
}

/* map */
/* ===== OFFICE ADDRESS + MAP SECTION ===== */
.office-map-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #fcf9f7 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.office-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(186, 35, 37, 0.02) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(70, 43, 52, 0.02) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.office-map-section .auto-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 2;
}

/* Section Title - Using your existing .sec-title styles */
.office-map-section .sec-title {
  margin-bottom: 50px;
  text-align: center;
}

.office-map-section .sec-title .top-title {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-family: "Muli", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-top: 28px;
  z-index: 1;
}

.office-map-section .sec-title .top-title:before {
  position: absolute;
  content: "";
  background: #f0e6e0;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  left: -25px;
  top: 8px;
  z-index: -1;
}

.office-map-section .sec-title .top-title:after {
  position: absolute;
  content: "";
  background: #f0e6e0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  left: 9px;
  top: 0px;
  z-index: -1;
}

.office-map-section .sec-title h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 44px;
  line-height: 54px;
  font-weight: 700;
  color: #462b34;
  margin-bottom: 10px;
}

.office-map-section .sec-title p {
  font-size: 18px;
  color: #766068;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Wrapper - Two Column Layout */
.office-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
}

/* ===== LEFT COLUMN - OFFICE DETAILS CARD ===== */
.office-details-column {
  position: relative;
}

.office-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 45px 35px;
  box-shadow: 0 20px 50px rgba(70, 43, 52, 0.12);
  border: 1px solid rgba(224, 214, 208, 0.4);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.office-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(186, 35, 37, 0.15);
  border-color: rgba(186, 35, 37, 0.2);
}

/* Decorative top line */
.office-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #462b34, #ba2325, #462b34);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.office-card:hover::before {
  transform: scaleX(1);
}

.office-icon {
  width: 80px;
  height: 80px;
  background: #f0e6e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #462b34;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.office-card:hover .office-icon {
  background: #462b34;
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
  border-color: #ba2325;
}

.office-card h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #462b34;
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.office-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #ba2325;
  border-radius: 3px;
}

/* Address Details */
.address-details {
  margin-bottom: 30px;
}

.address-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  background: #fcf9f7;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.address-item:hover {
  background: #ffffff;
  border-left-color: #ba2325;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(70, 43, 52, 0.08);
}

.address-item i {
  font-size: 18px;
  width: 30px;
  height: 30px;
  background: #f0e6e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #462b34;
  transition: all 0.3s ease;
}

.address-item:hover i {
  background: #ba2325;
  color: #ffffff;
}

.address-item p {
  font-size: 16px;
  color: #462b34;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* Office Timings */
.office-timings {
  background: #f0e6e0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(70, 43, 52, 0.1);
}

.timing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(70, 43, 52, 0.1);
}

.timing-item:last-child {
  border-bottom: none;
}

.timing-item i {
  font-size: 14px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ba2325;
}

.timing-item span {
  font-size: 14px;
  color: #462b34;
  font-weight: 500;
}

/* Office Buttons */
.office-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.office-btn {
  flex: 1;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid transparent;
}

.directions-btn {
  background: #462b34;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(70, 43, 52, 0.25);
}

.directions-btn:hover {
  background: transparent;
  color: #462b34;
  border-color: #462b34;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(70, 43, 52, 0.2);
}

.directions-btn:hover i {
  color: #ba2325;
}

.call-btn {
  background: #ba2325;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(186, 35, 37, 0.25);
}

.call-btn:hover {
  background: transparent;
  color: #ba2325;
  border-color: #ba2325;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(186, 35, 37, 0.2);
}

.call-btn:hover i {
  color: #462b34;
}

.office-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.office-btn:hover i {
  transform: scale(1.2);
}

/* ===== RIGHT COLUMN - GOOGLE MAP ===== */
.map-column {
  position: relative;
}

.map-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(70, 43, 52, 0.2);
  border: 5px solid #ffffff;
  transition: all 0.4s ease;
}

.map-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(186, 35, 37, 0.25);
  border-color: #f0e6e0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transition: all 0.4s ease;
}

.map-container:hover iframe {
  transform: scale(1.02);
}

/* Map Badge */
.map-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #ba2325;
  z-index: 10;
  animation: floatBadge 3s ease-in-out infinite;
}

.map-badge i {
  color: #ba2325;
  font-size: 16px;
}

.map-badge span {
  color: #462b34;
  font-weight: 600;
  font-size: 14px;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ===== RESPONSIVE STYLES ===== */

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
  .office-card {
    padding: 40px 25px;
  }

  .office-card h3 {
    font-size: 26px;
  }

  .map-container {
    height: 420px;
  }
}

/* Tablet Landscape (992px and below) */
@media (max-width: 992px) {
  .office-map-section {
    padding: 70px 0;
  }

  .office-map-section .sec-title h2 {
    font-size: 36px;
  }

  .office-map-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .office-card {
    max-width: 600px;
    margin: 0 auto;
  }

  .map-column {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }

  .map-container {
    height: 400px;
  }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
  .office-map-section {
    padding: 60px 0;
  }

  .office-map-section .sec-title h2 {
    font-size: 32px;
  }

  .office-map-section .sec-title p {
    font-size: 16px;
    padding: 0 15px;
  }

  .office-card {
    padding: 35px 20px;
  }

  .office-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .office-card h3 {
    font-size: 24px;
  }

  .address-item p {
    font-size: 15px;
  }

  .office-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .office-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .map-container {
    height: 380px;
  }

  .map-badge {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
  }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
  .office-map-section {
    padding: 50px 0;
  }

  .office-map-section .sec-title h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .office-map-section .sec-title p {
    font-size: 15px;
  }

  .office-card {
    padding: 30px 15px;
    border-radius: 24px;
  }

  .office-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
    margin-bottom: 20px;
  }

  .office-card h3 {
    font-size: 22px;
    padding-bottom: 12px;
  }

  .office-card h3::after {
    width: 50px;
    height: 2px;
  }

  .address-item {
    padding: 10px 12px;
    gap: 12px;
  }

  .address-item i {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .address-item p {
    font-size: 14px;
  }

  .office-timings {
    padding: 15px;
  }

  .timing-item span {
    font-size: 13px;
  }

  .map-container {
    height: 320px;
    border-radius: 20px;
    border-width: 4px;
  }

  .map-badge {
    padding: 6px 14px;
    border-width: 1px;
  }

  .map-badge span {
    font-size: 12px;
  }

  .map-badge i {
    font-size: 14px;
  }
}

/* Small Mobile (400px and below) */
@media (max-width: 400px) {
  .office-map-section .sec-title h2 {
    font-size: 24px;
  }

  .office-map-section .sec-title p {
    font-size: 14px;
  }

  .office-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .office-card h3 {
    font-size: 20px;
  }

  .address-item {
    padding: 8px 10px;
  }

  .address-item i {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .address-item p {
    font-size: 13px;
  }

  .office-timings .timing-item {
    gap: 8px;
  }

  .office-timings .timing-item i {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .office-timings .timing-item span {
    font-size: 12px;
  }

  .office-btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .office-btn i {
    font-size: 14px;
  }

  .map-container {
    height: 280px;
    border-width: 3px;
  }
}

/* Hover Effects for Interactive Elements */
.address-item {
  cursor: default;
}

.office-btn {
  cursor: pointer;
}

/* Print Styles */
@media print {
  .map-container iframe {
    display: none;
  }

  .map-container {
    background: #f0e6e0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .map-container::after {
    content: "Map: 866 Wilshire, 2nd Street, Los Angeles";
    color: #462b34;
    font-weight: 600;
  }
}

/*  */
/* ===== SOCIAL MEDIA LINKS SECTION - 5 CARDS IN ROW ===== */
.social-section {
  padding: 50px 0;

  position: relative;
  /* padding: 70px 20px; */
  text-align: center;
  overflow: hidden;

  background: url("/assets/images/shape/pattern-39.png") no-repeat center center;
  background-size: cover;
}

/* Subtle background pattern */
.social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(186, 35, 37, 0.02) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(70, 43, 52, 0.02) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.social-section .auto-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  z-index: 2;
}

/* Section Title - Using your existing .sec-title styles */
.social-section .sec-title {
  margin-bottom: 50px;
  text-align: center;
}

.social-section .sec-title .top-title {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-family: "Muli", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-top: 28px;
  z-index: 1;
}

.social-section .sec-title .top-title:before {
  position: absolute;
  content: "";
  background: #f0e6e0;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  left: -25px;
  top: 8px;
  z-index: -1;
}

.social-section .sec-title .top-title:after {
  position: absolute;
  content: "";
  background: #f0e6e0;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  left: 9px;
  top: 0px;
  z-index: -1;
}

.social-section .sec-title h2 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 44px;
  line-height: 54px;
  font-weight: 700;
  color: #462b34;
  margin-bottom: 10px;
}

.social-section .sec-title p {
  font-size: 18px;
  color: #766068;
  max-width: 600px;
  margin: 0 auto;
}

/* Social Wrapper */
.social-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Social Grid - 5 cards in one row */
.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

/* Social Card */
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 15px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(70, 43, 52, 0.1);
  border: 1px solid rgba(224, 214, 208, 0.4);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

/* Brand gradient overlay on hover */
.social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #462b34, #ba2325);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.social-card:hover::before {
  opacity: 1;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(186, 35, 37, 0.25);
  border-color: transparent;
}

/* Social Icon */
.social-icon {
  width: 70px;
  height: 70px;
  background: #f0e6e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.4s ease;
  margin-bottom: 15px;
}

/* Brand-specific icon colors */
.social-card.linkedin .social-icon {
  color: #0077b5;
}
.social-card.facebook .social-icon {
  color: #1877f2;
}
.social-card.instagram .social-icon {
  color: #e4405f;
}
.social-card.youtube .social-icon {
  color: #ff0000;
}
.social-card.twitter .social-icon {
  color: #000000;
}

.social-card:hover .social-icon {
  background: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.social-card:hover .social-icon i {
  color: #462b34 !important;
}

/* Social Info */
.social-info h4 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #462b34;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.social-info p {
  font-size: 12px;
  color: #766068;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.follow-count {
  font-size: 14px;
  font-weight: 700;
  color: #ba2325;
  background: rgba(186, 35, 37, 0.1);
  padding: 4px 12px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease;
}

.social-card:hover .social-info h4,
.social-card:hover .social-info p {
  color: #ffffff;
}

.social-card:hover .follow-count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid #f0e6e0;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 5px 15px rgba(70, 43, 52, 0.05);
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(186, 35, 37, 0.15);
}

.badge-item i {
  font-size: 14px;
  color: #ba2325;
}

.badge-item span {
  font-size: 13px;
  font-weight: 600;
  color: #462b34;
}

/* ===== RESPONSIVE STYLES ===== */

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
  .social-section .sec-title h2 {
    font-size: 40px;
  }

  .social-grid {
    gap: 15px;
  }

  .social-card {
    padding: 20px 12px;
  }

  .social-icon {
    width: 65px;
    height: 65px;
    font-size: 28px;
  }

  .social-info h4 {
    font-size: 16px;
  }
}

/* Tablet Landscape (992px - 4 cards then wrap) */
@media (max-width: 992px) {
  .social-section {
    padding: 70px 0;
  }

  .social-section .sec-title h2 {
    font-size: 36px;
  }

  .social-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet Portrait (768px - 3 cards) */
@media (max-width: 768px) {
  .social-section {
    padding: 60px 0;
  }

  .social-section .sec-title h2 {
    font-size: 32px;
  }

  .social-section .sec-title p {
    font-size: 16px;
  }

  .social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .social-card {
    padding: 18px 10px;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }

  .social-info h4 {
    font-size: 15px;
  }

  .social-info p {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .follow-count {
    font-size: 12px;
    padding: 3px 10px;
  }

  .trust-badges {
    gap: 12px;
  }

  .badge-item {
    padding: 6px 15px;
  }

  .badge-item span {
    font-size: 12px;
  }
}

/* Mobile Large (576px - 2 cards) */
@media (max-width: 576px) {
  .social-section {
    padding: 50px 0;
  }

  .social-section .sec-title h2 {
    font-size: 28px;
  }

  .social-section .sec-title p {
    font-size: 15px;
    padding: 0 15px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .social-card {
    padding: 20px 10px;
  }

  .social-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    margin-bottom: 12px;
  }

  .social-info h4 {
    font-size: 14px;
  }

  .follow-count {
    font-size: 11px;
    padding: 2px 8px;
  }

  .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .badge-item {
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
  }
}

/* Small Mobile (400px - 1 card) */
@media (max-width: 400px) {
  .social-section .sec-title h2 {
    font-size: 24px;
  }

  .social-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto 30px;
  }

  .social-card {
    flex-direction: row;
    text-align: left;
    padding: 15px 20px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
    margin-bottom: 0;
    margin-right: 15px;
  }

  .social-info {
    flex: 1;
  }

  .social-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .social-info p {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .badge-item {
    justify-content: flex-start;
  }
}

/* Hover effect for all social cards */
.social-card {
  cursor: pointer;
}

/* Animation for social icons */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.social-card:hover .social-icon {
  animation: pulse 0.5s ease;
}

/* Remove newsletter section since it wasn't requested */

/*  */

/*  */
/* ===== CONTACT PAGE SMOOTH ANIMATIONS - FIXED ===== */

/* Scroll Progress Bar */
.contact-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  /* background: linear-gradient(90deg, #ba2325, #462b34); */
  z-index: 99999;
  transition: width 0.1s ease;
  /* box-shadow: 0 2px 10px rgba(186, 35, 37, 0.3); */
}

/* Base Animation Class - Only for elements we want to animate */
.contact-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* Visible State - Override everything */
.contact-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Elements that should always be visible (buttons, triggers) */
.contact-always-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Remove the !important from the base class - it was forcing everything to be hidden */
.contact-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

/* Fix the section animations */
.contact-cards-section,
.contact-form-section,
.whatsapp-section,
.locations-section,
.office-map-section,
.social-section,
.faq-section,
.cta-section {
  opacity: 1; /* Default to visible */
}

.contact-cards-section.contact-animate,
.contact-form-section.contact-animate,
.whatsapp-section.contact-animate,
.locations-section.contact-animate,
.office-map-section.contact-animate,
.social-section.contact-animate,
.faq-section.contact-animate,
.cta-section.contact-animate {
  opacity: 0;
  transform: translateY(30px);
}

/* Stagger delays - applied only when visible */
.contact-cards-section.contact-visible .contact-card {
  opacity: 1;
  transform: translateY(0);
}

.contact-cards-section .contact-card {
  opacity: 1; /* Default visible */
}

.contact-cards-section.contact-animate .contact-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-cards-section.contact-visible .contact-card:nth-child(1) {
  transition-delay: 0.1s;
}
.contact-cards-section.contact-visible .contact-card:nth-child(2) {
  transition-delay: 0.15s;
}
.contact-cards-section.contact-visible .contact-card:nth-child(3) {
  transition-delay: 0.2s;
}
.contact-cards-section.contact-visible .contact-card:nth-child(4) {
  transition-delay: 0.25s;
}
.contact-cards-section.contact-visible .contact-card:nth-child(5) {
  transition-delay: 0.3s;
}

/* Locations section */
.locations-section .single-item {
  opacity: 1; /* Default visible */
}

.locations-section.contact-animate .single-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.locations-section.contact-visible .single-item:nth-child(1) {
  transition-delay: 0.1s;
}
.locations-section.contact-visible .single-item:nth-child(2) {
  transition-delay: 0.15s;
}
.locations-section.contact-visible .single-item:nth-child(3) {
  transition-delay: 0.2s;
}
.locations-section.contact-visible .single-item:nth-child(4) {
  transition-delay: 0.25s;
}

/* Social section */
.social-section .social-card {
  opacity: 1; /* Default visible */
}

.social-section.contact-animate .social-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.social-section.contact-visible .social-card:nth-child(1) {
  transition-delay: 0.1s;
}
.social-section.contact-visible .social-card:nth-child(2) {
  transition-delay: 0.15s;
}
.social-section.contact-visible .social-card:nth-child(3) {
  transition-delay: 0.2s;
}
.social-section.contact-visible .social-card:nth-child(4) {
  transition-delay: 0.25s;
}
.social-section.contact-visible .social-card:nth-child(5) {
  transition-delay: 0.3s;
}

/* FAQ section */
.faq-section .accordion-box .block {
  opacity: 1; /* Default visible */
}

.faq-section.contact-animate .accordion-box .block {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-section.contact-visible .accordion-box .block:nth-child(1) {
  transition-delay: 0.1s;
}
.faq-section.contact-visible .accordion-box .block:nth-child(2) {
  transition-delay: 0.15s;
}
.faq-section.contact-visible .accordion-box .block:nth-child(3) {
  transition-delay: 0.2s;
}
.faq-section.contact-visible .accordion-box .block:nth-child(4) {
  transition-delay: 0.25s;
}
.faq-section.contact-visible .accordion-box .block:nth-child(5) {
  transition-delay: 0.3s;
}
.faq-section.contact-visible .accordion-box .block:nth-child(6) {
  transition-delay: 0.35s;
}

/* Office map section */
.office-map-section .info-list li,
.office-map-section .address-item {
  opacity: 1; /* Default visible */
}

.office-map-section.contact-animate .info-list li,
.office-map-section.contact-animate .address-item {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.office-map-section.contact-visible .info-list li:nth-child(1) {
  transition-delay: 0.1s;
}
.office-map-section.contact-visible .info-list li:nth-child(2) {
  transition-delay: 0.15s;
}
.office-map-section.contact-visible .info-list li:nth-child(3) {
  transition-delay: 0.2s;
}

.office-map-section.contact-visible .address-item:nth-child(1) {
  transition-delay: 0.1s;
}
.office-map-section.contact-visible .address-item:nth-child(2) {
  transition-delay: 0.15s;
}
.office-map-section.contact-visible .address-item:nth-child(3) {
  transition-delay: 0.2s;
}

/* Form wrapper */
.form-wrapper {
  opacity: 1; /* Default visible */
}

.form-wrapper.contact-animate {
  opacity: 0;
  transform: translateY(30px);
}

/* WhatsApp section */
.whatsapp-content,
.whatsapp-visual {
  opacity: 1; /* Default visible */
}

.whatsapp-content.contact-animate,
.whatsapp-visual.contact-animate {
  opacity: 0;
  transform: translateY(30px);
}

/* Office timings and buttons */
.office-timings,
.office-buttons,
.map-container {
  opacity: 1; /* Default visible */
}

.office-timings.contact-animate,
.office-buttons.contact-animate,
.map-container.contact-animate {
  opacity: 0;
  transform: translateY(30px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-animate {
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
}
