﻿/* HERO */
.schedule-hero img {
  width: 100%;
  height: 120vh;
  object-fit: cover;
}

/* TITLE */
.visit-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
}

/* INTRO CARD */
.visit-card {
  background: linear-gradient(135deg, #ffffff, #f3f6ff);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  font-weight:500;
  line-height: 1.8;
}

.visit-card p {
  margin-bottom: 15px;
}

.visit-card .note {
  background: #eef5ff;
  padding: 12px;
  border-left: 4px solid var(--accent);
  font-weight: 700;
}

/* BOOKING */
.booking-section {
  margin-top: 50px;
  text-align: center;
}

.booking-text {
  max-width: 700px;
  margin: 10px auto 25px;
}

/* BUTTON */
.booking-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* CALENDLY PLACEHOLDER */
.calendly-placeholder {
  margin-top: 30px;
  padding: 40px;
  border: 2px dashed #ccc;
  border-radius: 12px;
  color: #777;
}

/* EXPECT SECTION */
.expect-section {
  margin-top: 60px;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.expect-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-weight: 600;
  transition: 0.3s;
}

.expect-card:hover {
  transform: translateY(-5px);
}

/* CLOSING */
.closing-section {
  margin-top: 60px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ================= SPLIT LAYOUT ================= */
.visit-split {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  align-items: stretch;
}

/* LEFT - CALENDAR */
.visit-calendar {
  flex: 2;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.visit-calendar iframe {
  width: 100%;
  height: 650px;
  border: none;
}

/* RIGHT - INFO PANEL */
.visit-info {
  flex: 1;
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  color: white;
  padding: 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TITLE */
.visit-info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fbbf24;
}

/* TEXT */
.visit-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* HIGHLIGHTS */
.visit-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.visit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.visit-item i {
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 50%;
  color: #fbbf24;
  font-size: 1rem;
}

/* NOTE BOX */
.visit-note {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 10px;
  font-size: 0.85rem;
}

/* HOVER EFFECT (premium feel) */
.visit-info:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.visit-calendar {
  display: flex;
  flex-direction: column;
}

.calendar-label {
  display: inline-block;
  align-self: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.visit-calendar iframe {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .visit-split {
    flex-direction: column;
  }

  .visit-calendar iframe {
    height: 500px;
  }

  .expect-grid {
    grid-template-columns: 1fr;
  }

  .visit-title {
    font-size: 2rem;
  }
}

