* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #006c80;
  --secondary: #00b3a0;
  --bg-light: #f7f9fb;
  --text-dark: #333333;
  --accent: #7cd1e8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* ========== HERO SECTION ========== */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/gallery/img3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 108, 128, 0.8) 0%, rgba(0, 179, 160, 0.6) 50%, rgba(0, 108, 128, 0.8) 100%);
  z-index: 2;
}

.about-hero-overlay::after {
  display: none;
}

.about-hero-overlay::before {
  display: none;
}

.about-hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  text-align: center;
  color: white;
}

.about-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 108, 128, 0.3);
  transition: all 0.3s ease;
}

.about-hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 108, 128, 0.4);
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: white;
}

.about-hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: white;
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 209, 232, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.contact-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.contact-header p {
  font-size: 1.1rem;
  color: #666;
  margin-top: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

/* Contact Info Cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 108, 128, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 108, 128, 0.15);
  border-color: var(--accent);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 108, 128, 0.3);
  margin-left: -10px;
}

.info-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.info-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

.info-content a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.info-content a:hover {
  color: var(--primary);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 108, 128, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 179, 160, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 108, 128, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 108, 128, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Map Section */
.map-section {
  margin-top: 50px;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 108, 128, 0.08);
}

.map-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e8f4f8, #d4ebf2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  border: 2px dashed var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    min-height: 40vh;
    padding-top: 80px;
  }

  .about-hero-bg {
    background-attachment: scroll;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .about-hero {
    min-height: 35vh;
    padding-top: 80px;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1.2rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .contact-section {
    padding: 50px 15px;
  }

  .contact-header h2 {
    font-size: 1.8rem;
  }

  .info-card {
    padding: 20px;
  }

  .contact-form {
    padding: 25px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
  }

  .info-icon i {
    font-size: 1.2rem;
  }
}

/* ========== WHATSAPP BUTTON STYLING ========== */
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: white !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #20b358, #0f7a6b) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
  color: white !important;
}

.whatsapp-btn i {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    padding: 14px !important;
    font-size: 1rem !important;
  }
}
