* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #222;
}

.site-header {
  width: 100%;
  background: #fff;
  border-top: 5px solid transparent;
  border-image: linear-gradient(to right, #7c3b91, #18b9c5, #1b75bb) 1;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 70px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.main-nav a {
  text-decoration: none;
  color: #2c2c2c;
  font-size: 17px;
  font-weight: 700;
  transition: 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #7c2b83;
}

.menu-btn {
  display: none;
  align-items: center;
  gap: 14px;
  border: none;
  background: #eef2f5;
  padding: 14px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-icon span {
  width: 24px;
  height: 2px;
  background: #333;
  display: block;
  transition: 0.3s ease;
}

.menu-text {
  font-size: 17px;
  font-weight: 700;
  color: #333;
}

.menu-btn.active .menu-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .menu-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .header-container {
    padding: 18px 22px;
  }

  .site-logo img {
    height: 58px;
  }

  .menu-btn {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.08);
    transition: 0.35s ease;
  }

  .main-nav.active {
    max-height: 320px;
    padding: 18px 22px;
  }

  .main-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .site-logo img {
    height: 50px;
  }

  .menu-btn {
    padding: 12px 15px;
  }

  .menu-text {
    font-size: 15px;
  }
}

/* ==========================
           FOOTER
========================== */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e6e6e6;
  padding: 65px 0 60px;
}

.footer-container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 80px;

  display: grid;
  grid-template-columns: 0.75fr 1.15fr 1fr;
  column-gap: 170px;
  align-items: start;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 10px;
}

.footer-logo img {
  width: 180px; /* Close to header logo size */
  height: auto;
  display: block;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-line {
  width: 42px;
  height: 3px;
  background: #39b5e5;
  margin-bottom: 22px;
}

.footer-column p {
  font-size: 17px;
  color: #444;
  line-height: 1.9;
  margin-bottom: 12px;
}

.footer-column strong {
  font-weight: 700;
}

.footer-column a {
  color: #222;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #7f3188;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .footer-container {
    padding: 0 45px;
    column-gap: 90px;
  }
}

@media (max-width: 991px) {
  .site-footer {
    padding: 55px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 45px;
    padding: 0 30px;
  }

  .footer-logo {
    justify-content: center;
    padding-top: 0;
  }

  .footer-logo img {
    width: 170px;
  }

  .footer-line {
    margin: 18px auto 25px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-column p {
    font-size: 18px;
    line-height: 1.8;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 45px 0;
  }

  .footer-logo img {
    width: 150px;
  }

  .footer-column h3 {
    font-size: 17px;
  }

  .footer-column p {
    font-size: 16px;
  }
}

/* ==========================
        ABOUT AOH
========================== */

.about-aoh {
  padding: 90px 0;

  background: #fff;
}

.about-title {
  max-width: 1550px;
  margin: auto;
  padding: 0 80px;

  display: flex;
  align-items: center;
  gap: 28px;

  margin-bottom: 70px;
}

.title-line {
  width: 5px;
  height: 80px;
  background: #39b5e5;
  border-radius: 50px;
}

.about-title h1 {
  font-size: 54px;
  font-weight: 300;
  color: #222;
}

.about-container {
  max-width: 1550px;
  margin: auto;
  padding: 0 80px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 45px;
  color: #222;
}

.about-intro {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 45px;
}

.about-item {
  margin-bottom: 45px;
}

.about-item h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #222;
}

.about-item p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .about-title {
    padding: 0 30px;
    margin-bottom: 50px;
  }

  .about-title h1 {
    font-size: 40px;
  }

  .title-line {
    height: 60px;
  }

  .about-container {
    grid-template-columns: 1fr;
    padding: 0 30px;
    gap: 50px;
  }

  .about-content {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .about-item h3 {
    font-size: 26px;
  }

  .about-item p {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .about-title h1 {
    font-size: 32px;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .about-item h3 {
    font-size: 22px;
  }

  .about-item p {
    font-size: 16px;
  }
}

/* ==========================
        OUR VALUES
========================== */

.our-values {
  padding: 90px 0;
  background: #fff;
}

.values-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 80px;
}

.values-container h2 {
  font-size: 48px;
  font-weight: 300;
  color: #222;
  margin-bottom: 55px;
}

.value-item {
  margin-bottom: 55px;
}

.value-item:last-child {
  margin-bottom: 0;
}

.value-item h3 {
  display: inline;
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

.value-item h3::after {
  content: ": ";
}

.value-item p {
  display: inline;
  font-size: 18px;
  color: #555;
  line-height: 2;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .our-values {
    padding: 70px 0;
  }

  .values-container {
    padding: 0 30px;
  }

  .values-container h2 {
    font-size: 38px;
    margin-bottom: 40px;
  }

  .value-item {
    margin-bottom: 40px;
  }

  .value-item h3 {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .value-item h3::after {
    content: "";
  }

  .value-item p {
    display: block;
    font-size: 17px;
    line-height: 1.9;
  }
}

@media (max-width: 576px) {
  .values-container h2 {
    font-size: 30px;
  }

  .value-item h3 {
    font-size: 21px;
  }

  .value-item p {
    font-size: 16px;
  }
}

/* ==========================
      DEIAB STATEMENT
========================== */

.deiab-section {
  padding: 90px 0;
  background: #fff;
}

.deiab-title {
  max-width: 1550px;
  margin: auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 70px;
}

.deiab-title .title-line {
  width: 5px;
  height: 75px;
  background: #39b5e5;
  border-radius: 50px;
}

.deiab-title h1 {
  font-size: 54px;
  font-weight: 300;
  color: #222;
}

.deiab-container {
  max-width: 1050px;
  margin: auto;
  padding: 0 80px;
}

/* ==========================
      CONTENT BLOCKS
========================== */

.deiab-block {
  margin-bottom: 70px;
}

.deiab-block:last-child {
  margin-bottom: 0;
}

.deiab-block h2 {
  font-size: 34px;
  font-weight: 500;
  color: #222;
  margin-bottom: 28px;
}

.deiab-block p {
  font-size: 18px;
  color: #555;
  line-height: 2;
  margin-bottom: 24px;
}

.deiab-block p:last-child {
  margin-bottom: 0;
}

/* ==========================
        DEFINITIONS
========================== */

.definition-item {
  margin-bottom: 35px;
}

.definition-item:last-child {
  margin-bottom: 0;
}

.definition-item h3 {
  display: inline;
  font-size: 24px;
  font-weight: 700;
  color: #222;
}

.definition-item h3::after {
  content: ": ";
}

.definition-item p {
  display: inline;
  font-size: 18px;
  color: #555;
  line-height: 2;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .deiab-section {
    padding: 70px 0;
  }

  .deiab-title {
    padding: 0 30px;
    margin-bottom: 50px;
  }

  .deiab-title h1 {
    font-size: 40px;
  }

  .deiab-title .title-line {
    height: 60px;
  }

  .deiab-container {
    padding: 0 30px;
  }

  .deiab-block {
    margin-bottom: 50px;
  }

  .deiab-block h2 {
    font-size: 28px;
  }

  .deiab-block p {
    font-size: 17px;
    line-height: 1.9;
  }

  .definition-item {
    margin-bottom: 28px;
  }

  .definition-item h3 {
    display: block;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .definition-item h3::after {
    content: "";
  }

  .definition-item p {
    display: block;
    font-size: 17px;
    line-height: 1.9;
  }
}

@media (max-width: 576px) {
  .deiab-section {
    padding: 55px 0;
  }

  .deiab-title {
    padding: 0 20px;
  }

  .deiab-title h1 {
    font-size: 30px;
  }

  .deiab-container {
    padding: 0 20px;
  }

  .deiab-block h2 {
    font-size: 24px;
  }

  .deiab-block p,
  .definition-item p {
    font-size: 16px;
  }

  .definition-item h3 {
    font-size: 20px;
  }
}

/* ==========================
      MEMBERSHIP HERO
========================== */

.membership-hero {
  padding: 90px 0 70px;
  background: #fff;
}

.membership-title {
  max-width: 1550px;
  margin: auto;
  padding: 0 80px;

  display: flex;
  align-items: center;
  gap: 28px;
}

.membership-title .title-line {
  width: 5px;
  height: 75px;
  background: #39b5e5;
  border-radius: 50px;
}

.membership-title h1 {
  font-size: 54px;
  font-weight: 300;
  color: #222;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .membership-hero {
    padding: 70px 0 50px;
  }

  .membership-title {
    padding: 0 30px;
  }

  .membership-title h1 {
    font-size: 40px;
  }

  .membership-title .title-line {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .membership-title {
    padding: 0 20px;
  }

  .membership-title h1 {
    font-size: 30px;
  }
}

/* ==========================
      MEMBERSHIP INTRO
========================== */

.membership-intro {
  padding: 90px 0;
  background: #fff;
}

.membership-container {
  max-width: 1550px;
  margin: auto;
  padding: 0 80px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.membership-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.membership-label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.membership-line {
  width: 70px;
  height: 3px;
  background: #39b5e5;
  margin-bottom: 35px;
}

.membership-content h2 {
  font-size: 54px;
  font-weight: 300;
  color: #222;
  line-height: 1.2;
  margin-bottom: 35px;
}

.membership-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 24px;
}

.membership-content p:last-child {
  margin-bottom: 0;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .membership-intro {
    padding: 70px 0;
  }

  .membership-container {
    grid-template-columns: 1fr;
    padding: 0 30px;
    gap: 50px;
  }

  .membership-content h2 {
    font-size: 40px;
  }

  .membership-content p {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .membership-container {
    padding: 0 20px;
  }

  .membership-content h2 {
    font-size: 30px;
  }

  .membership-content p {
    font-size: 16px;
  }
}

/* ==========================
      MEMBER BENEFITS
========================== */

.member-benefits {
  padding: 90px 0;
  background: #fff;
}

.benefits-container {
  max-width: 1550px;
  margin: auto;
  padding: 0 80px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.benefits-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.benefits-label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 15px;
}

.benefits-line {
  width: 70px;
  height: 3px;
  background: #39b5e5;
  margin-bottom: 35px;
}

.benefits-content h2 {
  font-size: 54px;
  font-weight: 300;
  color: #222;
  line-height: 1.2;
  margin-bottom: 35px;
}

.benefits-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 24px;
}

.benefits-content p:last-child {
  margin-bottom: 0;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .member-benefits {
    padding: 70px 0;
  }

  .benefits-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }

  .benefits-content h2 {
    font-size: 40px;
  }

  .benefits-content p {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .benefits-container {
    padding: 0 20px;
  }

  .benefits-content h2 {
    font-size: 30px;
  }

  .benefits-content p {
    font-size: 16px;
  }
}

/* ==========================
    MEMBERSHIP ENQUIRIES
========================== */

.membership-enquiry {
  padding: 90px 0;
  background: #fff;
}

.enquiry-container {
  max-width: 1550px;
  margin: auto;
  padding: 0 80px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.enquiry-content {
  order: 1;
}

.enquiry-image {
  order: 2;
}

.enquiry-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.enquiry-label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 15px;
}

.enquiry-line {
  width: 70px;
  height: 3px;
  background: #39b5e5;
  margin-bottom: 35px;
}

.enquiry-content h2 {
  font-size: 54px;
  font-weight: 300;
  color: #222;
  line-height: 1.2;
  margin-bottom: 35px;
}

.enquiry-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 24px;
}

.enquiry-content p:last-child {
  margin-bottom: 0;
}

.enquiry-content a {
  color: #7f3188;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.enquiry-content a:hover {
  color: #39b5e5;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .membership-enquiry {
    padding: 70px 0;
  }

  .enquiry-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }

  .enquiry-content h2 {
    font-size: 40px;
  }

  .enquiry-content p {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .enquiry-container {
    padding: 0 20px;
  }

  .enquiry-content h2 {
    font-size: 30px;
  }

  .enquiry-content p {
    font-size: 16px;
  }
}

/* ==========================
        CONTACT HERO
========================== */

.contact-hero {
  padding: 90px 0 70px;
  background: #fff;
}

.contact-title {
  max-width: 1550px;
  margin: auto;
  padding: 0 80px;

  display: flex;
  align-items: center;
  gap: 28px;
}

.contact-title .title-line {
  width: 5px;
  height: 75px;
  background: #39b5e5;
  border-radius: 50px;
}

.contact-title h1 {
  font-size: 54px;
  font-weight: 300;
  color: #222;
  line-height: 1.2;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .contact-hero {
    padding: 70px 0 50px;
  }

  .contact-title {
    padding: 0 30px;
  }

  .contact-title h1 {
    font-size: 40px;
  }

  .contact-title .title-line {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .contact-title {
    padding: 0 20px;
  }

  .contact-title h1 {
    font-size: 30px;
  }
}

/* ==========================
        CONTACT INFO
========================== */

.contact-info {
  padding: 90px 0;
  background: #fff;
}

.contact-info-container {
  max-width: 1550px;
  margin: auto;
  padding: 0 80px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.contact-label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 15px;
}

.contact-line {
  width: 70px;
  height: 3px;
  background: #39b5e5;
  margin-bottom: 35px;
}

.contact-intro h2 {
  font-size: 52px;
  font-weight: 300;
  color: #222;
  margin-bottom: 30px;
  line-height: 1.2;
}

.contact-intro p {
  font-size: 18px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 22px;
}

.contact-cards {
  display: grid;
  gap: 25px;
}

.contact-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 35px;
  transition: 0.3s;
}

.contact-card:hover {
  border-color: #39b5e5;
  transform: translateY(-4px);
}

.contact-card h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 18px;
}

.contact-card p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

.contact-card a {
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}

.contact-card a:hover {
  color: #7f3188;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .contact-info {
    padding: 70px 0;
  }

  .contact-info-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 30px;
  }

  .contact-intro h2 {
    font-size: 40px;
  }

  .contact-intro p,
  .contact-card p {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .contact-info-container {
    padding: 0 20px;
  }

  .contact-intro h2 {
    font-size: 30px;
  }

  .contact-card {
    padding: 28px;
  }

  .contact-card h3 {
    font-size: 20px;
  }

  .contact-intro p,
  .contact-card p {
    font-size: 16px;
  }
}

/* ==========================
        CONTACT FORM
========================== */

.contact-form-section {
  padding: 90px 0;
  background: #f7f9fb;
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.contact-form-heading {
  max-width: 760px;
  margin-bottom: 45px;
}

.contact-form-label {
  display: block;
  margin-bottom: 14px;
  color: #333;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-form-line {
  width: 70px;
  height: 3px;
  margin-bottom: 30px;
  background: #39b5e5;
}

.contact-form-heading h2 {
  margin-bottom: 20px;
  color: #222;
  font-size: 46px;
  font-weight: 300;
  line-height: 1.2;
}

.contact-form-heading p {
  color: #555;
  font-size: 18px;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
  padding: 45px;
  background: #fff;
  border: 1px solid #e6e9ec;
  border-radius: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 10px;
  color: #222;
  font-size: 16px;
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d9dde1;
  border-radius: 6px;
  background: #fff;
  color: #222;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-group input {
  min-height: 54px;
  padding: 0 16px;
}

.form-group textarea {
  min-height: 180px;
  padding: 16px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #39b5e5;
  box-shadow: 0 0 0 3px rgba(57, 181, 229, 0.12);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #c62828;
}

.form-group input.invalid:focus,
.form-group textarea.invalid:focus {
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.form-hint {
  margin-top: 8px;
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}

.error-message {
  display: none;
  margin-top: 8px;
  color: #c62828;
  font-size: 14px;
  line-height: 1.5;
}

.error-message.visible {
  display: block;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 5px;
}

.submit-message-btn {
  min-height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: 6px;
  background: #7f3188;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.submit-message-btn:hover {
  background: #65266d;
  transform: translateY(-2px);
}

.submit-message-btn:focus-visible {
  outline: 3px solid rgba(57, 181, 229, 0.45);
  outline-offset: 3px;
}

.form-success-message {
  display: none;
  margin: 0;
  color: #24733f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.form-success-message.visible {
  display: block;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .contact-form-section {
    padding: 70px 0;
  }

  .contact-form-container {
    padding: 0 30px;
  }

  .contact-form-heading h2 {
    font-size: 38px;
  }

  .contact-form-heading p {
    font-size: 17px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 35px;
  }

  .form-group-full,
  .form-actions {
    grid-column: auto;
  }
}

@media (max-width: 576px) {
  .contact-form-section {
    padding: 55px 0;
  }

  .contact-form-container {
    padding: 0 20px;
  }

  .contact-form-heading h2 {
    font-size: 30px;
  }

  .contact-form-heading p {
    font-size: 16px;
  }

  .contact-form {
    gap: 24px;
    padding: 25px 20px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .submit-message-btn {
    width: 100%;
  }
}

/* ==========================
        PROJECTS HERO
========================== */

.projects-hero {
  padding: 90px 0 70px;
  background: #fff;
}

.projects-title {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 80px;

  display: flex;
  align-items: center;
  gap: 28px;
}

.projects-title .title-line {
  width: 5px;
  height: 75px;
  background: #39b5e5;
  border-radius: 50px;
}

.projects-title h1 {
  font-size: 54px;
  font-weight: 300;
  color: #222;
  line-height: 1.2;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 991px) {
  .projects-hero {
    padding: 70px 0 50px;
  }

  .projects-title {
    padding: 0 30px;
  }

  .projects-title h1 {
    font-size: 40px;
  }

  .projects-title .title-line {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .projects-title {
    padding: 0 20px;
  }

  .projects-title h1 {
    font-size: 30px;
  }
}

/* ==========================
    PROJECTS & INITIATIVES
========================== */

.projects-section {
  padding: 40px 0 100px;
  background: #fff;
}

.projects-container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 80px;
}

.projects-introduction {
  max-width: 900px;
  margin-bottom: 65px;
}

.projects-label {
  display: block;
  margin-bottom: 14px;
  color: #333;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.projects-intro-line {
  width: 70px;
  height: 3px;
  margin-bottom: 30px;
  background: #39b5e5;
}

.projects-introduction h2 {
  margin-bottom: 25px;
  color: #222;
  font-size: 46px;
  font-weight: 300;
  line-height: 1.25;
}

.projects-introduction p {
  color: #555;
  font-size: 18px;
  line-height: 1.9;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px 30px;
}

.project-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e7e9eb;
  border-radius: 9px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.project-card:hover {
  border-color: rgba(57, 181, 229, 0.55);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
  transform: translateY(-7px);
}

.project-image {
  height: 245px;
  overflow: hidden;
  background: #f1f3f5;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.045);
}

.project-content {
  flex: 1;
  padding: 28px 28px 32px;
}

.project-content h3 {
  margin-bottom: 18px;
  color: #222;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.35;
}

.project-content p,
.project-content li {
  color: #555;
  font-size: 16px;
  line-height: 1.75;
}

.project-content ul {
  margin: 0;
  padding-left: 21px;
}

.project-content li {
  margin-bottom: 8px;
}

.project-content li:last-child {
  margin-bottom: 0;
}

.project-content li::marker {
  color: #39b5e5;
}

/* ==========================
        RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .projects-container {
    padding: 0 45px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .projects-section {
    padding: 30px 0 75px;
  }

  .projects-container {
    padding: 0 30px;
  }

  .projects-introduction {
    margin-bottom: 50px;
  }

  .projects-introduction h2 {
    font-size: 38px;
  }

  .projects-introduction p {
    font-size: 17px;
  }

  .project-image {
    height: 230px;
  }
}

@media (max-width: 700px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-image {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .projects-section {
    padding: 20px 0 60px;
  }

  .projects-container {
    padding: 0 20px;
  }

  .projects-introduction h2 {
    font-size: 30px;
  }

  .projects-introduction p {
    font-size: 16px;
  }

  .projects-grid {
    gap: 28px;
  }

  .project-image {
    height: 215px;
  }

  .project-content {
    padding: 24px 22px 27px;
  }

  .project-content h3 {
    font-size: 21px;
  }

  .project-content p,
  .project-content li {
    font-size: 15px;
  }
}
