/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Hero Section with Background Image */
.contact-hero-section {
    position: relative;
    padding: 250px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #76c8e6;
}

.breadcrumb-separator {
    color: #fff;
}

.breadcrumb-current {
    color: #76c8e6;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Page Section */
.contact-page-section {
    padding: 136px 0;
    background: #fff;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-page-wrapper {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form-column {
    flex: 1;
    max-width: 65%;
}

.contact-info-column {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Alerts */
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-error p {
    margin: 0;
}

/* Form Styles */
.contact-form-dynamic {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-dynamic {
    display: flex;
    gap: 20px;
}

.form-group-dynamic {
    flex: 1;
}

.form-group-dynamic.full-width {
    width: 100%;
}

.form-input-dynamic,
.form-textarea-dynamic {
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: #f5f5f5;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.form-input-dynamic:focus,
.form-textarea-dynamic:focus {
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px #76c8e6;
}

.form-input-dynamic::placeholder,
.form-textarea-dynamic::placeholder {
    color: #999;
}

.form-textarea-dynamic {
    resize: vertical;
    min-height: 150px;
}

.btn-submit-dynamic {
    background: #76c8e6;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    align-self: flex-start;
}

.btn-submit-dynamic:hover {
    background: #5ab8db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 200, 230, 0.3);
}

/* Info Cards */
.info-card-dynamic {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-card-dynamic:hover {
    background: #f0f2f4;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-icon-wrapper {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon-svg {
    color: #76c8e6;
    width: 24px;
    height: 24px;
}

.info-icon-svg.phone-icon {
    color: #76c8e6;
}

.info-icon-svg.email-icon {
    color: #76c8e6;
}

.info-content-wrapper {
    flex: 1;
}

.info-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.info-card-text {
    font-size: 15px;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

.info-card-text a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card-text a:hover {
    color: #76c8e6;
}

/* Full Width Map Section */
.map-fullwidth-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.map-fullwidth-container {
    width: 100%;
    line-height: 0;
}

.map-fullwidth-container iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-page-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form-column {
        max-width: 100%;
    }

    .contact-info-column {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card-dynamic {
        flex: 1;
        min-width: 250px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .form-row-dynamic {
        flex-direction: column;
        gap: 20px;
    }

    .contact-page-title {
        font-size: 28px;
    }

    .contact-info-column {
        flex-direction: column;
    }

    .info-card-dynamic {
        width: 100%;
    }

    .btn-submit-dynamic {
        width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .contact-hero-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 480px) {
    .contact-page-section {
        padding: 40px 0;
    }

    .contact-page-container {
        padding: 0 15px;
    }

    .form-input-dynamic,
    .form-textarea-dynamic {
        padding: 12px 15px;
    }

    .info-card-dynamic {
        padding: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .map-fullwidth-container iframe {
        height: 350px;
    }
}
/* =========================================
   CTA CSS STARTS
========================================= */
.cta-banner {
  padding: 35px 0;
  background: #0e2238; /* Dark navy blue background */
  margin-bottom: 40px;
  width: 100%;
}

.cta-banner > .container-1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Left side text wrapper */
.cta-banner > .container-1200 > div:first-child {
  flex: 1;
}

.cta-banner > .container-1200 > div > h2 {
  color: #7bc4e3; /* Light blue heading */
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.cta-banner > .container-1200 > div > p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Clock icon */
.cta-banner > .container-1200 > div > p::before {
  content: "⏱";
  font-size: 16px;
  display: inline-block;
}

/* Button styling */
.cta-banner .btn-cta {
  background: #7bc4e3; /* Light blue button */
  color: #ffffff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.cta-banner .btn-cta:hover {
  background: #65b3d2;
  transform: translateY(-2px);
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .cta-banner > .container-1200 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .cta-banner > .container-1200 > div > p {
    justify-content: center;
  }
}
/*