/* ===========================
   CONTACT HERO SECTION
   =========================== */
.tt-contact-hero {
    background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80");
    background-size: cover;
    background-position: center;
    height: 380px;
    position: relative;
}

.tt-hero-overlay {
    background: rgba(0, 30, 60, 0.7);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-hero-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.tt-hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.tt-hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: auto;
}

/* ===========================
   CONTACT PAGE SECTION
   =========================== */
.tt-contact-page {
    background: #f7f9fc;
    padding: 80px 20px;
}

.tt-contact-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* Form Box */
.tt-contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tt-contact-form h2 {
    margin-bottom: 10px;
}

.tt-contact-form p {
    margin-bottom: 25px;
    color: #555;
}

/* Form Fields */
.tt-form-group {
    margin-bottom: 15px;
}

.tt-contact-form input,
.tt-contact-form select,
.tt-contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.tt-contact-form input:focus,
.tt-contact-form textarea:focus,
.tt-contact-form select:focus {
    outline: none;
    border-color: #ff6a10;
}

/* Button */
.tt-btn {
    background: #ff6a10;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.tt-btn:hover {
    background: #ff6a10;
}

/* Info Box */
.tt-contact-info {
    padding: 20px;
}

.tt-contact-info h3 {
    margin-bottom: 20px;
}

.tt-contact-info ul {
    list-style: none;
    padding: 0;
}

.tt-contact-info ul li {
    margin: 25px 0px;
}

/* Trust Points */
.tt-trust-points {
    margin: 20px 0;
    font-weight: 500;
}

/* Map */
.tt-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 6px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .tt-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .tt-hero-content h1 {
        font-size: 32px;
    }
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.contact-info img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
