/* ================= CONTACT PAGE ================= */

/* HERO */
.contact-hero{
  width:100%;
  height:55vh;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;

  background:
    linear-gradient(
      rgba(0,0,0,0.45),   /* 🔥 light black overlay */
      rgba(0,0,0,0.45)
    ),
    url("image/jason-dent-w3eFhqXjkZE-unsplash.jpg");

  background-repeat:no-repeat;
  background-position:center;
  background-size:cover;   /* full fill */




    
    
}

.contact-title {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-subtitle {
    max-width: 600px;
    margin: auto;
    font-size: 17px;
    line-height: 1.6;
    opacity: 0.85;
}

/* INFO SECTION */
.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-box {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.contact-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* FORM SECTION */
.contact-form-section {
    padding: 90px 0;
    background: #fff;
}

.form-wrapper {
    max-width: 650px;
    margin: auto;
}

.form-wrapper h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 35px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5364;
    box-shadow: 0 0 0 3px rgba(44,83,100,0.15);
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2c5364, #203a43);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* MAP */
.contact-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 34px;
    }

    .form-wrapper h2 {
        font-size: 26px;
    }
}
