/* =========================================
   CONTACT PAGE  —  contact.css
   Matches screenshot exactly
   ========================================= */

:root {
    --ct-cyan:    #29C3D4;
    --ct-yellow:  #F0A500;
    --ct-yellow-d:#D08C00;
    --ct-dark:    #1a1a1a;
    --ct-text:    #555;
    --ct-border:  #d8dde6;
    --ct-bg:      #f7f7f7;
    --ct-white:   #ffffff;
    --ct-shadow:  0 2px 12px rgba(0,0,0,.06);
}

/* =========================================
   1. HERO BANNER
   ========================================= */
/* contact-section.css */

/* Hero Section */
.ct-hero {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 1400px){
  .ct-hero{ height: 300px; }
}
@media (max-width: 1200px){
  .ct-hero{ height: 300px; }
}
@media (max-width: 992px){
  .ct-hero{ height: 300px; }
}
@media (max-width: 768px){
  .ct-hero{ height: 300px; }
}
@media (max-width: 576px){
  .ct-hero{ height: 215px; }
}
@media (max-width: 425px){
  .ct-hero{ height: 155px; }
}
@media (max-width: 360px){
  .ct-hero{ height: 132px; }
}
.ct-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.ct-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ct-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ct-hero-line {
    width: 80px;
    height: 4px;
    background: #f4b942;
    margin: 0 auto;
}





/* =============================================
   2. INFO CARD
============================================= */
.ct-info-section {
    background: #f7f9fc;
    padding: 80px 20px 40px;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}
.ct-info-card {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-align: center;
    padding: 60px 25px;
}
.ct-info-icon {
    width: 100px;
    height:86px;
    margin: 0 auto 22px;
    color: #9E1F63;
}
.ct-info-icon svg { width: 100%; height: 100%; }
.ct-info-addr {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}
.ct-info-hours {
    margin: 0;
    font-size: 16px;
    color: #000000;
}

/* =============================================
   3. MAP + FORM
============================================= */
.ct-main-section {
    background: #f7f9fc;
    padding: 60px 20px 95px;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
}
.ct-main-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 45px;
    align-items: start;
}

/* Map */
.ct-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

/* Form side */
.ct-form-side h2 {
    margin: 0 0 16px;
    font-size: 32px;
    font-weight: 700;
    color: #111;
}
.ct-bar {
    width: 40px;
    height: 3px;
    background: #000000;
    margin: 0 0 35px;
}

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.ct-group { margin-bottom: 22px; }

.ct-form-side input,
.ct-form-side textarea {
    width: 100%;
    background: #fafafa;
    border: 1px solid #e2e2e2;
    border-radius: 2px;
    padding: 15px 18px;
    font-size: 15px;
    color: #333;
    font-family: inherit;
    outline: none;
    transition: border-color .25s;
}
.ct-form-side input::placeholder,
.ct-form-side textarea::placeholder { color: #999; }
.ct-form-side input:focus,
.ct-form-side textarea:focus { border-color: #1D75BC; }
.ct-form-side textarea { resize: vertical; min-height: 170px; }

.error-msg {
    display: block;
    color: #c62828;
    font-size: 12px;
    margin-top: 6px;
}

/* Send (anchor as button - blue) */
.ct-send {
    display: inline-block;
    background: #9E1F63;

    color: #fff;
    padding: 15px 48px;
    font-size: 16px;
    border-radius: 2px;
    text-decoration: none;
    transition: background .25s;
}
.ct-send:hover { background: #1D75BC; }

/* Socials */
.ct-socials-title {
    margin: 40px 0 16px;
    color: #1D75BC;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.ct-socials { display: flex; gap: 9px; }
.ct-socials a {
    width: 38px;
    height: 38px;
    background: #1D75BC;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s;
}
.ct-socials a:hover { background: #9E1F63; }
.ct-socials svg { width: 17px; height: 17px; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .ct-main-grid { grid-template-columns: 1fr; }
    .ct-map iframe { min-height: 350px; }
}
@media (max-width: 576px) {
    .ct-row { grid-template-columns: 1fr; gap: 0; }
    .ct-form-side h2 { font-size: 26px; }
    .ct-info-card { padding: 45px 18px; }
}