/* ==========================================================================
   CONTACT PAGE — css/pages/contact.css
   Page-specific styles for contact.html only.
   ========================================================================== */

/* Contact Section */
.contact-section { padding: 60px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }

/* Form Card */
.contact-form-card { background: var(--warm-white); border-radius: var(--radius-md); padding: 40px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-body); font-size: 0.88rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border-light); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; color: var(--text-primary); background: var(--cream); transition: all var(--transition); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(139,158,107,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px 32px; font-size: 1rem; }

/* Contact Info Column */
.contact-info-col { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { background: var(--warm-white); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--border-light); }
.contact-info-card h4 { font-size: 1rem; margin-bottom: 16px; color: var(--sage-dark); }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, rgba(139,158,107,0.12), rgba(180,167,214,0.12)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-text p { color: var(--text-secondary); font-size: 0.92rem; margin: 0; line-height: 1.5; }
.contact-item-text a { font-weight: 500; }
.contact-item-text .label { font-size: 0.78rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }

/* Map Card */
.map-card { background: var(--warm-white); border-radius: var(--radius-md); border: 1px solid var(--border-light); overflow: hidden; }
.map-placeholder { background: var(--cream-dark); height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.map-placeholder svg { opacity: 0.4; }
.map-placeholder a { font-size: 0.9rem; font-weight: 600; color: var(--sage-dark); }
.map-placeholder a:hover { color: var(--lilac-dark); }
.map-card-info { padding: 20px 24px; }
.map-card-info p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }

/* Book Online Card */
.book-card { background: linear-gradient(135deg, var(--sage), var(--sage-dark)); border-radius: var(--radius-md); padding: 32px; text-align: center; color: white; }
.book-card h4 { color: white; margin-bottom: 8px; font-size: 1.1rem; }
.book-card p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin-bottom: 20px; }
.book-card .btn { background: white; color: var(--sage-dark); }
.book-card .btn:hover { background: var(--cream); color: var(--sage-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Timeline */
.timeline-section { background: var(--warm-white); padding: 80px 0; }
.timeline { max-width: 700px; margin: 48px auto 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 23px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--sage), var(--lilac)); border-radius: 2px; }
.timeline-item { display: flex; gap: 24px; margin-bottom: 36px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { width: 48px; height: 48px; border-radius: 50%; background: var(--cream); border: 3px solid var(--sage); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--sage-dark); flex-shrink: 0; z-index: 1; }
.timeline-content { padding-top: 8px; }
.timeline-content h4 { font-size: 1.05rem; margin-bottom: 4px; color: var(--text-primary); }
.timeline-content p { font-size: 0.92rem; color: var(--text-secondary); margin: 0; }

/* Path End */
.path-end { display: flex; flex-direction: column; align-items: center; padding: 20px 0; }
.path-end .end-line { width: 2px; height: 60px; background: linear-gradient(to bottom, var(--sage), var(--lilac)); border-radius: 2px; }
.path-end .end-dot { width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--sage), var(--lilac)); margin-top: 4px; box-shadow: 0 0 0 4px rgba(139,158,107,0.15), 0 0 0 8px rgba(180,167,214,0.1); }

/* Contact responsive */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-form-card { padding: 28px 20px; }
}
