/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #16a34a;
  --primary-green-dark: #15803d;
  --primary-blue: #2563eb;
  --text-dark: #111827;
  --text-light: #6b7280;
  --border-light: #e5e7eb;
  --bg-light: #f3f4f6;
  --white: #ffffff;
  --slate-900: #0f172a;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.text-green {
  color: var(--primary-green);
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 1rem 0;
}

.navbar-container {
  
  margin: 0 30px;
  padding: 2px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo a {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

.navbar-logo .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    height: 40px; 
    width: 30px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap:-1px;
}

.logo-title {
 
    font-size: 14px;        
    font-weight: 700;
    color: var(--primary-green);          
}

.logo-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);          
}

/* HAMBURGER BUTTON (MOBILE ONLY) */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 200;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

/* Hide hamburger on desktop */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.navbar-menu {
  display: none;
  gap: 2rem;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  width: 200px;
}
.navbar-menu.show {
  display: flex;
}

@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    width: auto;
    padding: 0;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
  font-size: large;
}

.nav-link:hover {
  color: var(--primary-green);
}

/* HERO SECTION */
.pt-20 {
  padding-top: 5rem;
}

.hero-section {
  padding-top: 5rem;
}

/* Mobile Hero */
.hero-mobile {
  display: block;
  position: relative;
  height: 420px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-mobile {
    display: none;
  }
}

.hero-mobile.sm-height {
  height: 500px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.95));
 
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-logo-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  margin-left:-55px;
}

.hero-logo {
  width: 90px;
  height: 110px;
  margin-top:2px;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-green);
  text-align: left;
  line-height: 1;
  margin-top:10px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  margin-top:-50px;
  margin-left:50px;
  font-size: 15px;
}

.hero-description {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1.5rem;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Desktop Hero */
.hero-desktop {
  display: none;
}

@media (min-width: 768px) {
  .hero-desktop {
    display: block;
    position: relative;
    height: 657px;
    overflow: hidden;
    padding-top: 4rem;
  }
}

.hero-desktop .hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.hero-content-desktop {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 4rem;
  max-width: 50%;
  margin-left: 4rem;
  
  
}

.hero-logo-container-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  margin-left: 30px;
  margin-top: -200px;
}

.hero-logo-desktop {
  width: 150px;
  height: 190px;
  margin-top:10px;
}

.hero-title-desktop {
  font-size: 3.75rem;
  color: var(--primary-green);
  
  line-height: 1;
}

.hero-subtitle-desktop {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-align: center;
  padding: 0 5rem;
  margin-bottom: 3rem;
  margin-top: -90px;
  margin-left: 130px;
}


.hero-description-desktop {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 3rem;
  max-width: 768px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: -10px;
}

.hero-buttons-desktop {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}
@media(min-width:768px)and (max-width:939px){

.hero-content-desktop{
    max-width: 65%;
    margin-top:-50px;
}  .hero-logo-container-desktop {
  margin-left: -90px;
  margin-top: -120px;
}
  .hero-logo-desktop {
  width: 120px; 
    height: 150px;
  
  margin-top:10px;
}
  .hero-title-desktop {
    font-size: 3.5rem;
}
  .hero-subtitle-desktop{
  margin-top: -70px;
  margin-left:-20px;
  
}
.hero-description-desktop {
    font-size: 1.15rem; 
    margin-bottom: 2rem;
    text-align: center;
    margin-left: -70px;
    margin-top:-40px;
  }
  .hero-buttons-desktop {
    flex-direction: column;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-left: -30px;
    width: 100%;
  }
}


@media(min-width:768px)and (max-width:868px){
  .hero-content-desktop{
    max-width: 70%;
    
  }
  .hero-logo-desktop{
  width: 90px; 
    height: 110px;
    margin-left:40px;
  }
  .hero-title-desktop{
    font-size:3rem;
  }
.hero-subtitle-desktop  {
    margin-left:-15px;
    margin-top:-60px;
    font-size:1.2rem;
}
}
/*TABLET*/
@media(min-width:939px)and (max-width:993px){
  
  .hero-section {
    height: 600px;
    padding-top: 4rem;
  }
.hero-description-desktop {
    font-size: 1.25rem;
    padding: 0 2rem;
    margin-left: 10px;
    max-width: 100%;
    
    
  }
  .hero-content-desktop {
    align-items: flex-start;
    text-align: left;
    padding: 1rem 3rem;
    max-width: 60%;
    margin-left: 3rem;
    padding-top: 1rem;
  }

   .hero-logo-container-desktop {
  margin-left: -5px;
  margin-top: -200px;
}

  .hero-logo-desktop {
  width: 120px; 
    height: 150px;
  
  margin-top:10px;
}
  .hero-title-desktop {
    font-size: 3.5rem; 
  }

  .hero-subtitle-desktop {
    font-size: 1.25rem; 
    margin-bottom: 1.5rem;
    margin-top: -70px;
    margin-left: 60px;
  }

  .hero-description-desktop {
    font-size: 1.1rem; 
    margin-bottom: 2rem;
    text-align: center;
    margin-left: -45px;
  }

  .hero-buttons-desktop {
    flex-direction: column;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-left: -30px;
    width: 100%;
  }
}

/* LARGE TABLET */
@media(min-width:993px)and (max-width:1200px){
  
  .hero-content-desktop {
    max-width: 60%;
  }
  
  .hero-logo-container-desktop {
  margin-left: -5px;
  margin-top: -200px;
}
.hero-logo-desktop {
  width: 120px; 
    height: 150px;
  
  margin-top:10px;
}
.hero-subtitle-desktop {
    font-size: 1.25rem; 
    margin-bottom: 1.5rem;
    margin-top: -70px;
    margin-left: 60px;
  }
  .hero-description-desktop{
    font-size: 1.15rem; 
    margin-bottom: 2rem;
    text-align: center;
    margin-left: -20px;
  }
.hero-buttons-desktop {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: flex-start;
    margin-left: -30px;
    width: 100%;
    
  }
}
@media(min-width:1200px)and (max-width:1437px){
  
  .hero-content-desktop {
    max-width: 60%;
  }
  .hero-logo-container-desktop {
  margin-left: -10px;
  margin-top: -200px;
}
.hero-subtitle-desktop {
margin-left:80px;

}

}
@media(min-width:768px)and (max-width:1198px){
  .hero-buttons-desktop {
    flex-direction: column;
  }
}


/* BUTTONS */
.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--white);
  width: 100%;
  font-size: 1.125rem;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  transform: scale(1.05);
}

.btn-secondary {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  background: transparent;
  width: 100%;
  font-size: 1.125rem;
}

.btn-secondary:hover {
  background-color: #f0fdf4;
  transform: scale(1.05);
}

.btn-primary-lg {
  padding: 1.25rem 3rem;
  background-color: var(--primary-green);
  color: var(--white);
  font-size: 1.125rem;
}

.btn-primary-lg:hover {
  background-color: var(--primary-green-dark);
  transform: scale(1.05);
}

.btn-secondary-lg {
  padding: 1.25rem 3rem;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  background: transparent;
  font-size: 1.125rem;
}

.btn-secondary-lg:hover {
  background-color: #f0fdf4;
  transform: scale(1.05);
}

.btn-footer {
  width: 100%;
  padding: 0.75rem 2rem;
  margin-top: 1rem;
  background-color: var(--primary-green);
  color: var(--white);
  font-size: 0.875rem;
}
@media (min-width: 1030px) {
  .btn-footer {
    width: 50%; 
}
}
@media (max-width: 766px) {
  .btn-footer {
    width: 50%; 
}
}

.btn-footer:hover {
  background-color: var(--primary-green-dark);
  transform: scale(1.05);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-green);
  color: var(--white);
  font-size: 1rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
  background-color: var(--primary-green-dark);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ABOUT SECTION */
.about-section {
  padding: 5rem 1rem;
  background-color: var(--white);
}

@media (min-width: 768px) and (max-width: 1030px) {
  .about-section {
    padding: 6rem 2rem;
    margin-top: 150px;
  }
}

@media (min-width: 1030px) {
  .about-section {
    padding: 8rem 4rem;
    padding-bottom: 10rem;
  }
}
@media(min-width:993px)and (max-width:1030px){
  .about-section {
    margin-top: 20px;
  }
}
@media(min-width:768px)and (max-width:939px){
  .about-section {
    margin-top: 20px;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
}

.text-center {
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.rounded-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
  min-height: 256px;
}

@media (min-width: 768px) {
  .rounded-image {
    min-height: 320px;
    border-radius: 1rem;
  }
}

@media (min-width: 1024px) {
  .rounded-image {
    min-height: 384px;
    border-radius: 1.5rem;
  }
}

.about-content {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .about-text {
    font-size: 1rem;
    gap: 1.5rem;
  }
}

.about-text p {
  margin: 0;
}

/* MISSION & VISION SECTION */
.mission-section {
  padding: 3rem 1rem;
  background: linear-gradient(to bottom, #f8fafc, var(--white));
}

@media (min-width: 768px) {
  .mission-section {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .mission-section {
    padding: 6rem 4rem;
  }
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.mission-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--white);
  border: 1px solid #dcfce7;
  transition: all 0.3s ease;
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .mission-card {
    padding: 2rem;
    border-radius: 1rem;
  }
}

.mission-card:hover {
  border-color: var(--primary-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.mission-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.mission-card:hover .mission-icon {
  transform: scale(1.25);
}

.mission-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

@media (min-width: 768px) {
  .mission-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .mission-list {
    gap: 1rem;
  }
}

.mission-list li {
  display: flex;
  gap: 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .mission-list li {
    gap: 0.75rem;
    font-size: 1rem;
  }
}

.checkmark {
  color: var(--primary-green);
  font-weight: 700;
  flex-shrink: 0;
}


/* CAROUSEL SECTION */

.carousel-section {
  padding: 4rem 1rem 3rem 1rem;
  background-color: var(--white);
  scroll-margin-top:60px;
}

@media (min-width: 768px) {
  .carousel-section {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .carousel-section {
    padding: 4rem 4rem 6rem 4rem;
    scroll-margin-top:5px;
  }
}

.carousel-container {
  margin-top: 2rem;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  max-width: 360px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .carousel-wrapper {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .carousel-wrapper {
    border-radius: 1rem;
  }
}
.carousel-slides {
  position: relative;
  height: auto; /* allow to grow */
  min-height: 520px; /* optional: ensures images don’t shrink too much */
  overflow: visible; /* IMPORTANT */
}


@media (min-width: 640px) {
  .carousel-slides {
    height: auto;
  }
}

@media (min-width: 1024px) {
  .carousel-slides {
    height: auto;
  }
}
.carousel-slide {
  position: absolute;
  inset: 0;
  transition: all 1s ease;
  opacity: 0;
  transform: scale(0.95);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide-background {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.carousel-slide-content {
  position: relative;
  z-index: 10;
  height: 100%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .carousel-slide-content {
    padding: 2rem 4rem;
  }
}

@media (min-width: 1024px) {
  .carousel-slide-content {
    padding: 4rem;
  }
}
.carousel-slide-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .carousel-slide-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .carousel-slide-title {
    font-size: 3rem;
  }
}

.carousel-slide-subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .carousel-slide-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .carousel-slide-subtitle {
    font-size: 1.25rem;
  }
}

.carousel-slide-description {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.85;
  max-width: 768px;
}

@media (min-width: 768px) {
  .carousel-slide-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .carousel-slide-description {
    font-size: 1.125rem;
  }
}

.carousel-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .carousel-points {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

.carousel-point {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.75rem;
  margin-bottom:0.5rem;

}

@media (min-width: 768px) {
  .carousel-point {
    gap: 0.75rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .carousel-point {
    font-size: 1rem;
  }
}

.carousel-arrow {
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: -7px;;
}
@media (min-width: 768px) {
  .carousel-arrow {
    margin-top: -5px;
  }}
.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .carousel-dots {
    gap: 0.75rem;
  }
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .carousel-dot {
    width: 12px;
    height: 12px;
  }
}

.carousel-dot.active {
  width: 24px;
  background-color: var(--white);
}

@media (min-width: 768px) {
  .carousel-dot.active {
    width: 32px;
  }
}

.carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.carousel-btn {
  display: none;
  position: absolute;
  bottom: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  padding: 0.5rem 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .carousel-btn {
    display: block;
    padding: 0.75rem;
  }
}

.carousel-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .carousel-btn svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-counter {
  text-align: center;
  margin-top: 1rem;
  color: #4b5563;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .carousel-counter {
    font-size: 1rem;
  }
}

/* FOOTER */
.footer-section {
  background-color: #0f172a;
  color: #e5e7eb;
  padding: 3rem 1rem;
  scroll-margin-top:100px;
}

@media (min-width: 768px) {
  .footer-section {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-section {
    padding: 5rem 4rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 224px;
  height: 112px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .footer-links {
    gap: 0.75rem;
  }
}

.footer-links a {
  text-decoration: none;
  color: #d1d5db;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .footer-links a {
    font-size: 1rem;
  }
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .footer-contact {
    gap: 1rem;
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-label {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-bottom: 0.125rem;
}

@media (min-width: 768px) {
  .contact-label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
}

.contact-value {
  color: var(--primary-green);
  font-size: 0.875rem;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .contact-value {
    font-size: 1rem;
  }
}

.contact-value:hover {
  color: #86efac;
}

.footer-divider {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .footer-divider {
    padding-top: 2rem;
    margin-bottom: 2rem;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-text {
  font-size: 0.75rem;
  color: #9ca3af;
}

@media (min-width: 768px) {
  .footer-text {
    font-size: 0.875rem;
  }
}

.footer-tagline {
  font-size: 0.75rem;
  color: #6b7280;
}

@media (min-width: 768px) {
  .footer-tagline {
    font-size: 0.875rem;
  }
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  overflow-y: auto;
}

.required{
  color: rgb(215, 15, 15);
}

.modal.open {
  display: flex;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  z-index:199;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 448px;
  background-color: var(--white);
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin: 1.5rem auto;
  animation: zoomIn 0.3s ease-out;
  z-index: 201;
}

@media (min-width: 768px) {
  .modal-content {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #ef4444;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.modal-accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(to right, #4ade80, #22c55e, #16a34a);
  border-radius: 9999px;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-element {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.fade-in-element:nth-child(1) {
  animation-delay: 0s;
}

.fade-in-element:nth-child(2) {
  animation-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.min-h-screen {
  min-height: 100vh;
}

.bg-white {
  background-color: var(--white);
}


/* International Phone Input Styles */
/* Container */
/* Make phone input match other input field styling */
.iti {
    width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
    height: 54px;         /* match your input height */
    border-radius: 10px 0 0 10px;
    background: #fff;
}

.iti--separate-dial-code .iti__country-list {
    border-radius: 10px;
}

.iti input,
.phone-wrapper input[type="tel"],
#phone {
    height: 54px !important;       /* SAME height as other fields */
    border-radius: 10px !important;
    font-size: 16px !important;
    width: 100% !important;
    box-sizing: border-box;
}

/* ensure dial-code container aligns perfectly */
.iti--separate-dial-code .iti__flag-container {
    height: 54px;
    padding-left: 0px;
    border-radius: 10px 0 0 10px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-right: none;
}

/* style for the full combined control box */
.iti--separate-dial-code {
    width: 100%;
    border-radius: 10px;
}
