* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  background: #ffffff;
  color: #1a1a1a;
}

:root {
  --primary: #0091ff;
  --secondary: #ff006e;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #ffffff;
  --border-radius: 20px;
}

/* Navigation styles moved to navbar.css */

/* ===== CONTACT BANNER MODERN START ===== */
.contact-banner-modern {
  position: relative;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.05),
    rgba(255, 0, 110, 0.05)
  );
  padding: 120px 2rem 80px;
  overflow: visible; /* Needed for floating overlapping effect */
}

.cbm-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
}

.cbm-content {
  z-index: 2;
  padding-right: 2rem;
}

.cbm-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 145, 255, 0.1);
  color: var(--primary, #0091ff);
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.cbm-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-dark, #1a1a1a);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cbm-highlight {
  background: linear-gradient(
    135deg,
    var(--primary, #0091ff),
    var(--secondary, #ff006e)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cbm-subtitle {
  font-size: 1.15rem;
  color: var(--text-light, #666);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cbm-actions {
  display: flex;
  gap: 1rem;
}

.cbm-btn-primary,
.cbm-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cbm-btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary, #0091ff),
    var(--secondary, #ff006e)
  );
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 145, 255, 0.2);
}

.cbm-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 145, 255, 0.3);
}

.cbm-btn-secondary {
  background: #fff;
  color: var(--text-dark, #1a1a1a);
  border: 2px solid rgba(0, 0, 0, 0.05);
}

.cbm-btn-secondary:hover {
  border-color: rgba(0, 145, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cbm-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  /* transform: translateX(-5%); */
}

.cbm-image-wrapper::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 145, 255, 0.2) 0%,
    rgba(255, 0, 110, 0) 70%
  );
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1;
  /* animation: pulseGlow 4s ease-in-out infinite; */
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.cbm-floating-phone {
  max-width: 320px;
  width: 100%;
  height: auto;
  position: relative;
  margin-top: -100px;
  margin-bottom: -100px;
  filter: drop-shadow(0 25px 45px rgba(0, 145, 255, 0.3));
  animation: floatPhone 29s ease-in-out infinite;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 992px) {
  .cbm-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .cbm-content {
    padding-right: 0;
  }
  .cbm-tag {
    margin: 0 auto 1.5rem;
  }
  .cbm-actions {
    justify-content: center;
  }
  .cbm-image-wrapper {
    width: 100%;
    margin-top: 2rem;
    position: static;
    transform: none;
  }
  .cbm-floating-phone {
    margin-top: 0;
    margin-bottom: 0;
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .contact-banner-modern {
    padding: 100px 1.5rem 60px;
  }
  .cbm-title {
    font-size: 2.5rem;
  }
  .cbm-subtitle {
    font-size: 1rem;
  }
  .cbm-actions {
    flex-direction: column;
  }
}
/* ===== CONTACT BANNER MODERN END ===== */

/* ===========================
   CONTACT MAIN SECTION
   =========================== */
.contact-main-section {
  background: #ffffff;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

/* Form Wrapper & Info Wrapper & Map Wrapper - Animated */
.contact-form-wrapper,
.contact-info-wrapper,
.map-wrapper {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 145, 255, 0.1);
  border: 2px solid rgba(0, 145, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: formSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes formSlideIn {
  from {
    opacity: 0;
    transform: translateX(-60px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.map-wrapper {
  padding: 0;
}

/* Animated gradient border */
.contact-form-wrapper::before,
.contact-info-wrapper::before,
.map-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #0091ff, #ff006e, #0091ff);
  background-size: 200% 200%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: borderGradientMove 4s ease-in-out infinite;
}

@keyframes borderGradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }

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

.contact-form-wrapper:hover::before,
.contact-info-wrapper:hover::before,
.map-wrapper:hover::before {
  opacity: 1;
}

.form-header {
  margin-bottom: 0.8rem;
  animation: fadeInDown 0.8s ease-out 0.3s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.9rem;
  position: relative;
  display: inline-block;
}

.form-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #0091ff, #ff006e);
  border-radius: 10px;
  animation: underlineGrow 1s ease-out 0.8s both;
}

@keyframes underlineGrow {
  to {
    width: 100%;
  }
}

.form-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a1a;
}

.required {
  color: #ff006e;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.6rem 0.8rem;
  border: 2px solid rgba(0, 145, 255, 0.15);
  border-radius: 8px;
  font-size: 0.65rem;
  font-family: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  color: #1a1a1a;
  position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0091ff;
  box-shadow: 0 0 0 4px rgba(0, 145, 255, 0.1);
  transform: translateY(-2px);
  background: rgba(0, 145, 255, 0.02);
}

/* Animated placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  transition: all 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  transform: translateX(5px);
  opacity: 0.5;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-group {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #0091ff;
}

.checkbox-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Submit Button - Advanced Animation */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #0091ff, #ff006e);
  background-size: 200% 200%;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 145, 255, 0.3);
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  animation: buttonBounceIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}

@keyframes buttonBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }

  60% {
    transform: scale(1.05) translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.submit-btn:hover::before {
  width: 300px;
  height: 300px;
}

.submit-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 145, 255, 0.5);
  background-position: 100% 50%;
}

.submit-btn:active {
  transform: translateY(-2px) scale(0.98);
}

.submit-btn svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover svg {
  transform: translateX(5px) rotate(45deg);
}

.bottom-info-wrapper {
  margin-top: 4rem;
  padding: 1rem 1.5rem;
  animation: formSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.bottom-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  height: auto;
  align-items: center;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(0, 145, 255, 0.1);
  border-bottom: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(60px);
  animation: cardSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.contact-card:last-child {
  border-right: none;
  border-bottom: none;
}

.contact-card:nth-child(1) {
  animation-delay: 0.2s;
}

.contact-card:nth-child(2) {
  animation-delay: 0.4s;
}

.contact-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes cardSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-card:hover {
  transform: translateY(-5px) scale(1.02);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Animated pulse effect on icon */
.contact-card-icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 15px;
  background: inherit;
  opacity: 0.5;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.phone-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.15),
    rgba(0, 145, 255, 0.25)
  );
  color: #0091ff;
}

.email-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 110, 0.15),
    rgba(255, 0, 110, 0.25)
  );
  color: #ff006e;
}

.location-icon {
  background: linear-gradient(
    135deg,
    rgba(0, 145, 255, 0.15),
    rgba(255, 0, 110, 0.15)
  );
  color: #0091ff;
}

.contact-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-card-title-group h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
}

.contact-card-title-group p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.contact-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0.3rem;
  max-width: 240px;
}

.contact-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0091ff;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0;
}

.contact-link:hover {
  color: #ff006e;
}

.address-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  font-style: normal;
  margin: 0;
  text-align: left;
  word-break: normal;
  width: 100%;
}

.google-map {
  width: 100%;
  filter: grayscale(0);
  transition: filter 0.5s ease;
  position: relative;
  z-index: 0;
}

.map-wrapper:hover .google-map {
  filter: grayscale(0) contrast(1.05);
}

/* ===========================
   SUCCESS MODAL - ANIMATED
   =========================== */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.success-modal.show {
  display: flex;
}

.success-content {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  text-align: center;
  max-width: 500px;
  position: relative;
  animation: modalContentEnter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 80px rgba(0, 145, 255, 0.3);
}

@keyframes modalContentEnter {
  0% {
    transform: scale(0.7) translateY(-50px) rotate(-5deg);
    opacity: 0;
  }

  60% {
    transform: scale(1.05) translateY(10px) rotate(2deg);
  }

  100% {
    transform: scale(1) translateY(0) rotate(0deg);
    opacity: 1;
  }
}

/* Confetti effect */
.success-content::before {
  content: "🎉";
  position: absolute;
  top: -30px;
  left: -30px;
  font-size: 3rem;
  animation: confetti1 2s ease-out infinite;
}

.success-content::after {
  content: "✨";
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 2.5rem;
  animation: confetti2 2s ease-out infinite 0.5s;
}

@keyframes confetti1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.5;
  }
}

@keyframes confetti2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateY(-15px) rotate(-180deg) scale(1.2);
    opacity: 0.6;
  }
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0091ff, #ff006e);
  color: white;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  animation: successIconBounce 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
  position: relative;
}

@keyframes successIconBounce {
  0% {
    transform: scale(0) rotate(-180deg);
  }

  50% {
    transform: scale(1.2) rotate(10deg);
  }

  70% {
    transform: scale(0.9) rotate(-5deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Pulse ring around icon */
.success-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 3px solid #0091ff;
  animation: iconRingPulse 2s ease-out infinite;
}

@keyframes iconRingPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.success-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.success-content p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.close-modal-btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #0091ff, #ff006e);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out 0.9s both;
  position: relative;
  overflow: hidden;
}

.close-modal-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.close-modal-btn:hover::before {
  width: 300px;
  height: 300px;
}

.close-modal-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 145, 255, 0.4);
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bottom-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-card {
    border-right: none;
    border-bottom: 1px solid rgba(0, 145, 255, 0.1);
    padding: 1.5rem 0;
  }

  .contact-card:last-child {
    border-bottom: none;
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .contact-banner-modern {
    padding: 60px 1.5rem 30px;
  }

  .cbm-tag {
    display: none;
  }

  .cbm-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .cbm-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .cbm-actions {
    flex-direction: row;
    gap: 0.75rem;
  }

  .cbm-btn-primary,
  .cbm-btn-secondary {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    border-radius: 12px;
  }

  .cbm-image-wrapper {
    margin-top: 1rem;
  }

  .cbm-floating-phone {
    max-width: 180px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .contact-main-section {
    padding: 40px 1rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .form-header h2 {
    font-size: 1.25rem;
  }

  .form-group {
    margin-bottom: 0.75rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .form-submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .bottom-info-wrapper {
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .bottom-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .bottom-cards-grid .contact-card:nth-child(3) {
    grid-column: span 2;
    border-top: 1px solid rgba(0, 145, 255, 0.05);
    padding-top: 1rem;
  }

  .contact-card {
    padding: 0.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-card-left {
    flex-direction: column;
    gap: 0.4rem;
  }

  .contact-card-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .contact-card-icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-card-title-group h4 {
    font-size: 0.8rem;
  }

  .contact-card-title-group p {
    display: none; /* Hide subtitle for extra compactness */
  }

  .contact-link {
    font-size: 0.75rem;
  }

  .address-text {
    font-size: 0.75rem;
    text-align: center;
  }

  .map-wrapper {
    margin-top: 1.5rem;
  }

  .map-container {
    height: 340px;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-card-left {
    flex-direction: column;
    text-align: center;
  }

  .contact-card-right {
    align-items: center;
    text-align: center;
  }
}
