/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #017f82;
  --secondary: #017f82;
  --accent: #017f82;
  --dark: #1e2832;
  --light: #f8f9fa;
  --gradient-1: linear-gradient(135deg, #017f82 0%, #003536 100%);
  --gradient-2: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
  --shadow: 0 0.625rem 2.5rem rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Icon Styles */
.icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.icon-lg {
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
}
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #017f82;
  backdrop-filter: blur(0.625rem);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.0625rem;
}

.nav-back {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 0.125rem solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-back:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 98vh;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    /* background: #002a2b; */
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    mix-blend-mode: multiply;
  }
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #017f82;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 10;
  padding: 0 2rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.125rem;
  text-shadow: 0 0.25rem 1.875rem rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  text-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-divider {
  width: 6.25rem;
  height: 0.1875rem;
  background: white;
  margin-top: 2rem;
  animation: expandWidth 1s ease 0.6s backwards;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0.625rem);
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  border: 0.125rem solid rgba(255, 255, 255, 0.3);
  animation: fadeInDown 1s ease;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 20;
}

.slider-btn {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.625rem);
  border: 0.125rem solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 2rem;
  line-height: 2.4375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.slider-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  width: 2.5rem;
  border-radius: 0.375rem;
  background: white;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: white;
  z-index: 20;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
}

.scroll-arrow {
  font-size: 1.5rem;
}

.container {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-heading {
  font-size: clamp(1.5rem, 6vw, 3rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-heading.centered {
  text-align: center;
}

.section-intro {
  text-align: center;
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: #666;
  max-width: 43.75rem;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}

.intro-section {
  margin: clamp(2.5rem, 10vw, 6rem) 0;
  background: var(--light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 48rem) {
  .intro-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
  }
}

.intro-text {
  animation: fadeInLeft 1s ease;
}

.text-block p {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  line-height: 1.8;
  color: #555;
}

.highlight-text {
  color: var(--accent);
  font-weight: 600;
}

.intro-visual {
  animation: fadeInRight 1s ease;
}

.floating-card {
  background: white;
  padding: clamp(1.5rem, 6vw, 3rem);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.card-icon {
  font-size: clamp(2rem, 8vw, 3rem);
  margin-bottom: 1rem;
}

.floating-card h3 {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.floating-card p {
  color: #666;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.mission-section {
  padding: clamp(2.5rem, 10vw, 6rem) 0;
  background: var(--gradient-1);
}

.mission-box {
  text-align: center;
  color: white;
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.mission-icon {
  font-size: clamp(2rem, 8vw, 3rem);
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.mission-title {
  font-size: clamp(1.3rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.mission-text {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  line-height: 1.8;
  opacity: 0.95;
}

.experiences-section {
  margin: clamp(2.5rem, 10vw, 6rem) 0;
  background: white;
}

.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 30rem) {
  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 48rem) {
  .experiences-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.experience-card {
  text-decoration: none;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
}

.experience-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: var(--shadow-lg);
}

.experience-image {
  position: relative;
  height: clamp(10rem, 40vw, 15.625rem);
  overflow: hidden;
  background: var(--light);
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover .experience-image img {
  transform: scale(1.1);
}

.experience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.experience-card:hover .experience-overlay {
  opacity: 0.9;
}

.experience-icon {
  font-size: clamp(2rem, 8vw, 3rem);
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

.experience-card:hover .experience-icon {
  transform: scale(1);
}

.experience-content {
  padding: 1.25rem;
}

.experience-content h3 {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.experience-content p {
  color: #666;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.features-section {
  padding: clamp(2.5rem, 10vw, 6rem) 0;
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 30rem) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 48rem) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.feature-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.feature-icon {
  font-size: clamp(2rem, 8vw, 3rem);
  margin: 0 auto 1rem;
  animation: bounce 2s ease-in-out infinite;
}

.feature-item:nth-child(2) .feature-icon {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) .feature-icon {
  animation-delay: 0.4s;
}

.feature-item:nth-child(4) .feature-icon {
  animation-delay: 0.6s;
}

.feature-item h3 {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: #666;
  font-size: clamp(0.85rem, 2vw, 1rem);
}

.cta-section {
  margin: clamp(2.5rem, 10vw, 6rem) 0;
  background: white;
}

.cta-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}

.cta-content {
  padding: 0 1rem;
  grid-column: span 4;
}

.cta-title {
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-text {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.cta-highlight {
  background: var(--gradient-2);
  padding: 1.25rem;
  border-radius: 1rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

@media (min-width: 30rem) {
  .cta-highlight {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

.cta-icon {
  font-size: clamp(1.5rem, 6vw, 2rem);
  flex-shrink: 0;
}

.cta-info h3 {
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin-bottom: 0.25rem;
}

.cta-info p {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  opacity: 0.9;
}

.cta-slogan {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-top: 1.5rem;
}

.cta-image {
  grid-column: span 4;
  position: relative;
  z-index: 2;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

.cta-image img {
  width: 100%;
  height: auto;
}

.contact-bar {
  background: #003536;
  padding: 1.5rem 0;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 36rem) {
  .contact-content {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
@media (min-width: 48rem) {
  .cta-content {
    grid-column: span 2;
  }
  .cta-image {
    grid-column: span 2;
  }
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: white;
  font-size: clamp(0.8rem, 2vw, 1rem);
}

.contact-icon {
  font-size: clamp(1rem, 3vw, 1.2rem);
  flex-shrink: 0;
}

.footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
}

.footer-text {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  opacity: 0.9;
  line-height: 1.6;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-3.125rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(3.125rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: clamp(3rem, 15vw, 6.25rem);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.625rem);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.25rem);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
}

/* Extra Small Devices (Portrait phones, less than 36rem) */
@media (max-width: 36rem) {
  .hero-section {
    min-height: 21.875rem;
    margin-top: 3rem;
  }

  .scroll-indicator {
    display: none;
  }

  .slider-indicators {
    bottom: 0.75rem;
    gap: 0.4rem;
  }

  .indicator {
    width: 0.5rem;
    height: 0.5rem;
  }

  .indicator.active {
    width: 1.5rem;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .nav-container {
    padding: 0 0.75rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .hero-content {
    padding: 0.75rem;
  }

  .hero-badge {
    padding: 0.4rem 1rem;
    margin-bottom: 1rem;
  }

  .slider-controls {
    padding: 0 0.25rem;
  }
}

/* Small Devices (Landscape phones, 36rem and up) */
@media (min-width: 36rem) and (max-width: 48rem) {
  .hero-section {
    min-height: 28.125rem;
  }
}

/* Medium Devices (Tablets, 48rem and up) */
@media (min-width: 48rem) and (max-width: 62rem) {
  .hero-section {
    max-height: 43.75rem;
  }
}

/* Large Devices (Desktops, 62rem and up) */
@media (min-width: 62rem) {
  .container {
    padding: 0 2rem;
  }
}

/* Ultra Small Screens */
@media (max-width: 20rem) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .nav-logo {
    font-size: 0.9rem;
  }

  .nav-back {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
}
