/* ===== Contact Info Cards ===== */
.contact-info-cards {
    padding: 40px 0;
    background: #fff;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.info-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.info-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    margin-bottom: 20px;
}
.card-icon h3{
  font-family: "Barlow Condensed", sans-serif;
}

.card-icon svg {
    filter: drop-shadow(0 2px 4px rgba(232, 168, 73, 0.3));
}

.info-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    
}

.info-card p {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.info-card p a {
    color: #662D91;
    text-decoration: none;
    transition: color 0.3s;
}

.info-card p a:hover {
    color: #FCB041;
    text-decoration: underline;
}

/* ===== Contact Section New ===== */
.contact-section-new {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Map Wrapper */
.map-wrapper {
    position: sticky;
    top: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

/* Contact Form New */
.contact-form-new {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    
}

.contact-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-new {
    margin-bottom: 20px;
}

.form-control-new {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control-new:focus {
    outline: none;
    border-color: #FCB041;
    box-shadow: 0 0 0 3px rgba(232, 168, 73, 0.1);
}

.form-control-new::placeholder {
    color: #999;
}

textarea.form-control-new {
    resize: vertical;
    min-height: 150px;
}

.btn-submit-new {
    display: inline-block;
    background: linear-gradient(135deg, #FCB041 0%, #F0B849 100%);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 168, 73, 0.3);
}

.btn-submit-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 168, 73, 0.4);
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-danger p {
    margin: 0;
    display: flex;
    align-items: center;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper-new {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        position: relative;
        top: 0;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .info-cards-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row-new {
        grid-template-columns: 1fr;
    }
    
    .contact-form-new {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 26px;
    }
}

/* CTA Banner */
.cta-banner {
  padding: 30px 0;
  background: #FCB041;
  margin-bottom: 40px;
}

.cta-banner > .container-1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-banner > .container-1200 > div > h2 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cta-banner > .container-1200 > div > p {
  color: white;
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-banner > .container-1200 > div > p::before {
  content: "⏱";
  font-size: 16px;
}

.btn-cta {
  background: #662d91;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  background: #5a2578;
  transform: translateY(-2px);
}