/* =====================
   GENERAL STYLES
===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  background-color: #ADD8E6;
  line-height: 1.6;
  overflow-x: hidden;
}

p { color: rgb(85, 85, 85); }

a, .btn { transition: all 300ms ease; }

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

.animated-text { animation: fadeIn 1s ease-out forwards; opacity: 0; }
.section__text__p1.animated-text { animation-delay: 0.2s; }
.title.animated-text             { animation-delay: 0.4s; }

/* =====================
   DESKTOP NAVIGATION
===================== */
#desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 5%;
  background-color: rgba(173, 216, 230, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  white-space: nowrap;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #333;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { font-weight: 600; }

/* =====================
   HAMBURGER NAVIGATION
===================== */
#hamburger-nav {
  display: none;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 5%;
  background-color: rgba(173, 216, 230, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hamburger-menu { position: relative; }

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-icon.open span:first-child  { transform: translateY(11px) rotate(45deg); }
.hamburger-icon.open span:nth-child(2) { opacity: 0; }
.hamburger-icon.open span:last-child   { transform: translateY(-11px) rotate(-45deg); }

.menu-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 48px;
  right: 0;
  background-color: rgba(173, 216, 230, 0.98);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  width: 160px;
  padding: 0.4rem 0;
  list-style: none;
  z-index: 9999;
}

.menu-links.open { display: flex; }

.menu-links li a {
  display: block;
  padding: 0.55rem 1.1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.menu-links li a:hover { background-color: rgba(0,0,0,0.08); }

/* =====================
   CONTACT SECTION
===================== */
#contact {
  padding: 100px 5% 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.section__text__p1 {
  font-size: 1rem;
  color: #666;
}

.title {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
}

#video-call-wrapper {
  width: 100%;
  max-width: 1200px;
}

.contact-info-upper-container {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 2rem;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.contact-info-container a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.8rem, 2vw, 1rem);
  word-break: break-word;
  transition: color 0.3s ease;
}

.contact-info-container a:hover { color: #007bff; }

.icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.icon:hover { transform: scale(1.1); }

.email-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* =====================
   BUTTONS
===================== */
.btn-container {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 22px;
  border: 2px solid #333;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-color-1 { background-color: #333; color: white; }
.btn-color-1:hover { background-color: #555; transform: translateY(-2px); }

.btn-color-2 { background-color: transparent; color: #333; }
.btn-color-2:hover { background-color: #333; color: white; transform: translateY(-2px); }

/* =====================
   FOOTER
===================== */
footer {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem 5%;
  text-align: center;
  border-top: 1px solid #eee;
}

footer .nav-links {
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* =====================
   UTILITY CLASSES
===================== */
.hidden { display: none; }

/* =====================
   RESPONSIVE — MOBILE (≤ 768px)
===================== */
@media screen and (max-width: 768px) {
  #desktop-nav   { display: none; }
  #hamburger-nav { display: flex; }

  #contact { padding: 90px 5% 50px; min-height: auto; }

  .contact-info-upper-container { padding: 1.5rem 1rem; }

  .contact-info-container {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* =====================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
===================== */
@media screen and (max-width: 480px) {
  #contact { padding: 80px 4% 40px; }

  .btn-container {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%;
    max-width: 260px;
    text-align: center;
  }

  footer .nav-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .contact-info-container a { font-size: 0.82rem; }
}

/* =====================
   RESPONSIVE — EXTRA SMALL (≤ 360px)
===================== */
@media screen and (max-width: 360px) {
  .logo { font-size: 0.9rem; }
  .contact-info-upper-container { padding: 1rem 0.75rem; }
}