/* Contact Us Page Styles */

/* Hero Section */
.contact-hero {
    position: relative;
    height: 400px;
    background-image: url('../Images/Completed/Harmony.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #6C1A78;
}

.separator {
    margin: 0 10px;
    color: #ffffff;
}

.current {
    color: #ffffff;
}

/* GLOBAL STYLE */
.contact-section {
  width: 100%;
  padding: 0; 

}

.contact-container {
  margin: 40px;
  display: flex;
  gap: 0;
  background: #fff;
  padding: 60px 50px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
}

        .header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
            gap: 40px;
            margin: 50px;
        }

        .header h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 40px;
            font-weight: 500;
            line-height: 1.2;
            max-width: 500px;
        }

        .header-text {
            font-family: 'Inter', sans-serif;
            max-width: 450px;
            font-size: 16px;
            line-height: 1.7;
            color: #333;
            text-align: justify;
            hyphens: none;
            overflow-wrap: normal;
            word-break: keep-all;
        }

/* LEFT SIDE */
.contact-left {
  width: 40%;
  padding-right: 70px; /* ✔ matches screenshot */
}

.contact-left h2 {
  font-size: 35px;
  margin-bottom: 40px; /* ✔ correct gap */
}

/* CONTACT ITEMS */
.contact-item {
  display: flex;
  gap: 20px; /* ✔ correct icon gap */
  margin-bottom: 30px; /* ✔ correct spacing */
  align-items: center;
}

.icon-circle {
  min-width: 55px;
  min-height: 55px;
  background: #6C1A78;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* DIVIDER */
.divider {
  margin: 30px 0; /* ✔ correct spacing */
  border: 1px solid #d3d3d3;
}

.social-icons {
  display: flex;
  gap: 20px; /* ✔ more spacing like screenshot */
  margin-top: 15px;
}
.contact-left a {
  text-decoration: none;
  color: #000;
}

.contact-left a:hover {
  text-decoration: none;
}


/* RIGHT SIDE */
.contact-right {
  width: 60%;
  padding-left: 40px; /* ✔ proper spacing */
}

.contact-right h2 {
  font-size: 30px;
  margin-bottom: 35px; /* ✔ correct gap */
}

/* FORM */
label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px; /* ✔ exact spacing */
}

input,
textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 15px;
  border: none;
  background: #dadada;
  margin-bottom: 30px; /* ✔ correct spacing between fields */
  font-size: 17px;
}

textarea {
  height: 180px; /* ✔ match screenshot */
  resize: none;
}

.two-inputs {
  display: flex;
  gap: 30px; /* ✔ correct space between fields */
}

/* SUBMIT BUTTON */
.submit-btn {
  background: #6C1A78;
  color: white;
  padding: 14px 50px;
  border: none;
  border-radius: 20px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px; /* ✔ spacing matches image */
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .contact-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    padding: 0;
  }

  .two-inputs {
    flex-direction: column;
    gap: 20px;
  }

  input,
  textarea {
    margin-bottom: 20px;
  }
}

        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                margin: 1px;
            }

            .header h1 {
                font-size: 24px;
            }
            .header-text{
                text-align: justify;
            }
            .contact-container{
                margin: 1px;
                margin-top: 30px;
            }
        }
/* Map Section */
.map-section {
    background-color: #f8f8f8;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 40px;
    margin-bottom: 30px;
    border-radius: 50px;
}

.map-container {
    width: 100%;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .contact-container {
        gap: 50px;
    }

    .form-title {
        font-size: 36px;
    }
}

@media screen and (max-width: 968px) {
    .contact-hero {
        height: 350px;
    }

    .hero-title {
        font-size: 42px;
    }

    .contact-section {
        padding: 80px 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    .form-title {
        font-size: 32px;
    }
}

@media screen and (max-width: 640px) {
    .contact-hero {
        height: 300px;
    }

    .hero-title {
        font-size: 32px;
    }

    .breadcrumb {
        font-size: 14px;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 28px;
    }

    .form-subtitle {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 14px 18px;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 16px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
    }

    .info-icon svg {
        width: 25px;
        height: 25px;
    }

    .info-title {
        font-size: 18px;
    }

    .info-text {
        font-size: 14px;
    }

    .map-container {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .contact-section {
        padding: 50px 20px;
    }
.contact-right h2 {
  font-size: 28px;
  margin-bottom: 35px; /* ✔ correct gap */
}
.contact-left h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

    .form-title {
        font-size: 24px;
    }

    .map-container {
        height: 350px;
    }
    .map-section{
        margin: 10px;
    }
}

/* Add scroll animation classes */
.animate-on-scroll,
.animate-fade-left,
.animate-fade-right,
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-left {
    transform: translateX(-50px);
}

.animate-fade-right {
    transform: translateX(50px);
}

.animate-fade-up {
    transform: translateY(30px);
}

.animate-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Hero Section Animations */
.hero-title,
.breadcrumb {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-title.animate-visible,
.breadcrumb.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section Animations */
.header {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.header.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.header-text {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.header-text.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-left.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-right.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Map Section Animations */
.map-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.map-section.animate-visible {
    opacity: 1;
    transform: translateY(0);
}
