/* ====== GLOBAL STYLES ====== */
* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f9fafc;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.2px;
}


h1, h2, .logo-text h1 {
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
}
body, p {
  font-family: "Inter", sans-serif;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}

p {
  margin: 0.5rem 0;
}

/* ====== SECTION TITLES ====== */
.section-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #555;
  font-weight: 400;
  margin-bottom: 50px;
}

/* ====== CONTACT SECTION ====== */
.contact {
  background: linear-gradient(180deg, #fafbff 0%, #eef1f7 100%);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  text-align: center;
  padding: 2.8rem 2rem;
  border-radius: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.5;
}

/* Smooth gradients */
.contact-card:nth-child(1) {
  background: linear-gradient(135deg, #6E72FC, #AD1DEB);
}
.contact-card:nth-child(2) {
  background: linear-gradient(135deg, #FF6FD8, #3813C2);
}
.contact-card:nth-child(3) {
  background: linear-gradient(135deg, #00DBDE, #FC00FF);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
}

.contact-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: -0.3px;
}

.contact-card p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: #ffe066;
}

.opening-soon-text {
  font-weight: 600;
  color: #ffeb3b;
  margin-top: 8px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ====== HOVER LIGHT EFFECT ====== */
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-card:hover::after {
  opacity: 1;
}

/* ====== FOOTER ====== */
.footer {
  background: #0d0d16;
  color: #ccc;
  padding: 70px 20px 50px;
  text-align: center;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #6E72FC, #AD1DEB) 1;
  font-size: 0.95rem;
}

.footer-logo h3 {
  color: #ff6fd8;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.4px;
}

.footer-logo p {
  color: #bbb;
  font-weight: 400;
  font-size: 0.95rem;
}

.footer-info p {
  color: #777;
  margin-top: 18px;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .contact {
    padding: 70px 0;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-icon {
    font-size: 2.5rem;
  }

  .footer {
    padding: 50px 15px;
  }
}
