@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --primary-bg: #005065;
  --yellow: #005065;
  --black-bg: #fef9f5;
  --white-bg: #ffffff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  display: none;
}

#main {
  width: 100%;
  position: relative;
  background-color: var(--black-bg);
  overflow-x: hidden;
}

header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--black-bg);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Roboto", sans-serif;
  color: var(--white-bg);
  font-weight: 500;
  font-size: 16px;
  z-index: 100;
  height: 120px;
}

.logo {
  width: 50px;
  height: auto;
  scale: 0.3;
}

.logo-link {
  display: block;
  text-decoration: none;
}

.logo-link:hover img {
  animation: logoShake 2s ease-in-out;
}

@keyframes logoShake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

.hamburger {
  display: none;
  padding: 0;
}

.hamburger-box {
  width: 30px;
}

.hamburger-inner::before {
  display: none;
}

.hamburger-inner,
.hamburger-inner::after {
  background: var(--primary-bg) !important;
  border-radius: 0px !important;
  height: 2px;
  width: 30px;
  transition-duration: 0.5s !important;
  transition-timing-function: ease-in-out !important;
}

#menu {
  display: flex;
  flex-direction: row;
  gap: 5%;
  align-items: center;
  justify-content: right;
  list-style: none;
  width: 100%;
  padding-inline: 20px;
}

#menu li {
  overflow: hidden;
}

#menu li a {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  color: var(--primary-bg);
  transition: color 0.3s ease-in-out;
}

#menu li a:hover {
  color: #f8842f;
  transition: color 0.3s ease-in-out;
}

#responsive_menu {
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  height: 100dvh;
  background: var(--black-bg);
  padding: 24px;
  z-index: 99;
}

#responsive_menu li {
  overflow-y: hidden;
  margin-block: 12px;
}

#responsive_menu .link {
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  color: var(--primary-bg);
  font-size: clamp(20px, 12.5vw, 50px);
  font-family: "Open Sans", sans-serif;
  transition: color 0.3s ease-in-out;
}

#responsive_menu .link:hover {
  color: #f8842f;
}

@media screen and (max-width: 1024px) {
  #menu {
    display: none;
  }

  header {
    padding: 40px 40px;
    min-height: 100px;
  }
  
  .logo {
    position:relative;
    left:-20px;
    height: auto;
  }

  .hamburger {
    display: inline-block;
  }
  
  .hamburger-box {
    width: 45px;
    scale: 2;
  }
  
  .hamburger-inner,
  .hamburger-inner::after {
    width: 45px;
    height: 4px;
  }
  
  #responsive_menu .link {
    font-size: 40px;
  }
}


.hero_text_container {
  width: 100vw;
  min-height: 85dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "arial";
  color: var(--white-bg);
  z-index: 1;
  padding: 20px;
}

ul.hero_text_title {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
  .hero_text_title li span {
    font-size:65px;
  }
}

.hero_text_title li {
  font-size: clamp(12vw, 18vw, 18vw);
  font-weight: 900;
  padding-inline: 2px;
  letter-spacing: -6px;
  color: var(--yellow);
  overflow-y: hidden;
}

.hero_text_title li span {
  display: block;
  font-family: "Roboto", sans-serif;
}

.hero_text_tagline {
  font-family: "Roboto", sans-serif;
  font-size: clamp(20px, 5vw, 36px);
  font-weight: 400;
  text-align: center;
  color: var(--yellow);
  overflow-y: hidden;
  padding: 0 20px;
  margin-top: 20px;
}

.hero_text_tagline span {
  display: block;
}

@media screen and (max-width: 1024px) {
  .hero_text_container {
    padding: 40px 20px;
    min-height: 40dvh;
    margin-top: 90px;
    width: 100vw;
  }
  
  .hero_text_title li {
    font-size: clamp(10vw, 15vw, 16vw);
    letter-spacing: -4px;
  }
  
  .hero_text_tagline {
    font-size: 25px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .hero_text_container {
    padding: 60px 15px;
  }
  
  .hero_text_title li {
    font-size: clamp(8vw, 12vw, 14vw);
    letter-spacing: -2px;
    padding-inline: 1px;
  }
  
  .hero_text_tagline {
    font-size: 25px;
    line-height: 1.4;
    margin-top: 25px;
  }
}

@media screen and (max-width: 480px) {
  .hero_text_container {
    padding: 40px 10px;
  }
  
  .hero_text_title li {
    font-size: clamp(7vw, 10vw, 12vw);
    letter-spacing: -1px;
  }
  
  .hero_text_tagline {
    font-size: 25px;
    margin-top: 20px;
  }
}

/*  video container section */
#video_container {
  margin-top: 24px;
  width: 100%;
  min-height: 67dvh;
  background: var(--black-bg);
  display: flex;
  justify-content: center;
}

#video_container video {
  width: 50%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  #video_container {
    margin-top: 12px;
    width: 100vw;
    margin-top: 24px;
  }
}

/* About Us Section - Improved Mobile Responsiveness */
#about-us {
  min-height: 100vh;
  background: var(--black-bg);
  padding: 100px 24px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 120px;
}

.about-title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--primary-bg);
  margin-bottom: 40px;
}

.about-line {
  display: block;
  overflow: hidden;
}

.about-line span {
  display: block;
  transform: translateY(100%);
}

.about-description {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-column {
  width: 100%;
}

.about-column p {
  font-family: "Roboto", sans-serif;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--yellow);
  line-height: 1.6;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  margin-bottom: 120px;
}

.service-item {
  text-align: center;
  padding: 40px 20px;
}

.service-icon {
  font-size: clamp(3rem, 6vw, 4rem);
  margin-bottom: 24px;
  display: block;
}

.service-item h3 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: var(--primary-bg);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.service-item p {
  font-family: "Roboto", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 300;
  color: var(--yellow);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}


/* Enhanced Mobile Responsiveness for About Section */

@media screen and (max-width: 1024px) {
  #about-us {
    padding: 80px 25px 60px;
  }
  
  .about-intro {
    margin-bottom: 70px;
  }
  
  .about-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    margin-bottom: 35px;
  }
  
  .about-description p {
    font-size: clamp(17px, 2.8vw, 22px);
  }
  
  .about-description {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 70px;
  }
  
  .service-item {
    padding: 40px 20px;
  }
  
  .service-icon {
    font-size: clamp(3.5rem, 6vw, 4rem);
    margin-bottom: 25px;
  }
  
  .service-item h3 {
    font-size: clamp(20px, 3.5vw, 26px);
    margin-bottom: 18px;
  }
  
  .service-item p {
    font-size: clamp(15px, 2.2vw, 17px);
    max-width: 100%;
    line-height: 1.6;
  }
  
  .cta-section {
    padding: 50px 20px;
  }
  
  .cta-title {
    font-size: clamp(22px, 4vw, 30px);
  }
  
  .cta-subtitle {
    font-size: clamp(16px, 2.2vw, 20px);
    margin-bottom: 35px;
  }
  
  .cta-button {
    padding: 18px 45px;
    font-size: clamp(15px, 2vw, 17px);
  }
}



/* Categories Section - Enhanced Mobile Responsiveness */
#categories {
  min-height: 100vh;
  background: var(--white-bg);
  padding: 100px 24px;
  position: relative;
}

.categories-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.categories-header {
  text-align: center;
  margin-bottom: 100px;
}

.categories-title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--primary-bg);
  margin-bottom: 30px;
}

.category-line {
  display: block;
  overflow: hidden;
}

.categories-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: clamp(14px, 2.2vw, 22px);
  font-weight: 300;
  color: var(--primary-bg);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.8;
  padding: 0 20px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 100px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.category-card {
  background: var(--black-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(231, 207, 177, 0.1);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.category-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-bg), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.category-icon {
  font-size: clamp(3rem, 5vw, 4rem);
  opacity: 0.9;
}

.category-content {
  padding: 30px;
}

.category-name {
  font-family: "Roboto", sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--primary-bg);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.category-description {
  font-family: "Roboto", sans-serif;
  font-size: clamp(13px, 1.8vw, 16px);
  font-weight: 300;
  color: var(--primary-bg);
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0.8;
}

.category-features {
  list-style: none;
  margin-bottom: 24px;
}

.category-features li {
  font-family: "Roboto", sans-serif;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 400;
  color: var(--yellow);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.category-features li::before {
  content: "•";
  color: var(--yellow);
  position: absolute;
  font-weight: bold;
  left: 0;
  font-size: 20px;
}

.category-link {
  font-family: "Roboto", sans-serif;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 600;
  color: var(--primary-bg);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.category-link:hover {
  color: var(--yellow);
  transform: translateX(5px);
}

/* Medium desktop screens - 2x3 grid layout */
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .category-card {
    min-height: 420px;
  }
}

/* Desktop and larger screens - 2x3 grid layout */
@media screen and (min-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .category-card {
    min-height: 450px;
  }
  
  .category-image {
    height: 220px;
  }
}

/* Enhanced Mobile Responsiveness for Categories */
@media screen and (max-width: 1024px) {
  #categories {
    padding: 80px 30px;
  }
  
  .categories-header {
    margin-bottom: 70px;
  }

  .category-features li::before {
  content: "•";
  color: var(--yellow);
  position: absolute;
  top: -10px;
  font-weight: bold;
  font-size: 30px;
}
  
  .categories-title {
    font-size: clamp(2.8rem, 8vw, 6rem);
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 70px;
  }
  
  .category-content {
    padding: 30px;
  }
  
  .categories-cta {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 1024px) {
  #categories {
    padding: 80px 25px;
  }
  
  .categories-header {
    margin-bottom: 70px;
  }
  
  .categories-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 30px;
  }
  
  .categories-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    padding: 0 20px;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 70px;
  }
  
  .category-image {
    height: 200px;
  }
  
  .category-icon {
    font-size: clamp(3.5rem, 6vw, 4rem);
  }
  
  .category-content {
    padding: 35px 25px;
  }
  
  .category-name {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 18px;
  }
  
  .category-description {
    font-size: clamp(15px, 2.2vw, 17px);
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .category-features li {
    font-size: clamp(14px, 2vw, 16px);
    margin-bottom: 10px;
    line-height: 2.4;
  }
  
  .category-link {
    font-size: clamp(14px, 2vw, 16px);
  }
  
  .categories-cta {
    padding: 50px 25px;
  }
  
  .categories-cta h3 {
    font-size: clamp(22px, 4vw, 28px);
  }
  
  .categories-cta p {
    font-size: clamp(16px, 2.2vw, 18px);
    margin-bottom: 30px;
  }
  
  .quiz-button {
    padding: 18px 40px;
    font-size: clamp(15px, 2vw, 17px);
  }
}

@media screen and (max-width: 1024px) {
  #categories {
    padding: 70px 20px;
  }
  
  .categories-header {
    margin-bottom: 60px;
  }
  
  .categories-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
    margin-bottom: 25px;
  }
  
  .categories-subtitle {
    font-size: clamp(15px, 2.8vw, 18px);
    padding: 0 15px;
    line-height: 1.4;
  }
  
  .categories-grid {
    gap: 35px;
    margin-bottom: 60px;
  }
  
  .category-image {
    height: 180px;
  }
  
  .category-icon {
    font-size: clamp(3rem, 5.5vw, 3.5rem);
  }
  
  .category-content {
    padding: 30px 20px;
  }
  
  .category-name {
    font-size: clamp(18px, 3.5vw, 22px);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
  }
  
  .category-description {
    font-size: clamp(14px, 2.5vw, 16px);
    margin-bottom: 22px;
    line-height: 1.5;
  }
  
  .category-features {
    margin-bottom: 25px;
  }
  
  .category-features li {
    font-size: clamp(13px, 2.2vw, 15px);
    margin-bottom: 8px;
    padding-left: 18px;
    line-height: 1.4;
  }
  
  .category-link {
    font-size: clamp(13px, 2.2vw, 15px);
  }
  
  .categories-cta {
    padding: 40px 20px;
  }
  
  .categories-cta h3 {
    font-size: clamp(20px, 4.5vw, 24px);
    margin-bottom: 15px;
  }
  
  .categories-cta p {
    font-size: clamp(14px, 2.5vw, 16px);
    margin-bottom: 25px;
    line-height: 1.4;
  }
  
  .quiz-button {
    padding: 16px 32px;
    font-size: clamp(14px, 2.5vw, 16px);
  }
}



/* Footer */
.site-footer{
  background: #005065;
  color: #fff;
  padding: 32px 0 80px;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 50px 0 100px; 
}

.site-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Top nav + newsletter */
.site-footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.site-footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}
.site-footer-nav a:hover {
  color: #f8842f;
  transition: 300ms;
}

.site-footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.newsletter-title {
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 6px;
  color: #ccc;
}
.site-footer-newsletter form {
  display: flex;
}
.site-footer-newsletter input[type="email"] {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid #777;
  color: #fff;
  font-size: 0.9rem;
  width: 220px;
}
.site-footer-newsletter button {
  background: #f8842f;
  color: #000000;
  border: none;
  padding: 6px 18px;
  margin-left: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 300ms;
}
.site-footer-newsletter button:hover {
  background: #fff;
  color: #000;
  transition: 300ms;
}

/* Social icons */
.site-footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer-social img {
  width: 24px;
  height: 24px;
  filter: invert(1);
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.site-footer-social a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* Divider with tabs */
.site-footer-divider {
  position: relative;
  height: 1px;
  width: 100%;
  margin: 16px 0;
}
.divider-bar {
  background: #f8842f;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.divider-tab {
  width: 48px;
  height: 0;
  position: absolute;
}
.divider-tab.left {
  left: 0;
  border-top: 6px solid #f8842f;
  border-right: 10px solid transparent;
}
.divider-tab.right {
  right: 0;
  border-top: 6px solid #f8842f;
  border-left: 10px solid transparent;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #ccc;
}
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  color: #b3b3b3;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Roboto Condensed, roboto, Microsoft JhengHei, sans-serif;
}
.site-footer-links a {
  text-decoration: none;
  color: #ccc;
  font-weight: 600;
}
.site-footer-links a:hover {
  color: #f8842f;
}
.site-footer-links span {
  font-weight: 400;
}

.footer-icon svg {
  padding: 2px;
  box-sizing: content-box;
}

.footer-icon svg path {
  transition: fill 0.3s ease;
}

.footer-icon:hover svg path {
  fill: #f8842f;
}



.site-footer-logo {
    position: absolute;
    bottom: 12px;
    left: 80%;
    transform: translateX(-50%);
    width: 125px;
    opacity: 1;
    pointer-events: none;
    user-select: none;
    top: 15px;
  
}

@media (max-width: 1440px) {
  .site-footer-logo {
    left:93%;
  }
}

@media (max-width: 1240px) {
  .site-footer-logo {
    left:90%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-footer-newsletter {
    align-items: flex-start;
  }
  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-logo {
    left:93%;
  }

  .site-footer-social {
    align-self: center;
  }

  .site-footer-links span {
    text-align: -webkit-center;

  }
}

@media (max-width: 430px) {
  .site-footer-logo {
    left:80%;
    width:105px;
  }
  .site-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 20px;
  }
}

/* Contact Section - The Greatest Section! */
#contact {
  min-height: 100vh;
  background: var(--black-bg);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fdf5ee;
  pointer-events: none;
}

.contact-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 100px 20px;
}

.contact-hero {
  text-align: center;
  margin-bottom: 80px;
}

.contact-title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 30px;
}

.contact-line {
  display: block;
  overflow: hidden;
  color: var(--primary-bg);
}

.contact-line-highlight {
  display: block;
  overflow: hidden;
  color: #f8842f;
  background: linear-gradient(45deg, #f8842f, #f8842f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--primary-bg);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-section {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(231, 207, 177, 1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-bg);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.form-header p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--yellow);
  opacity: 0.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-bg);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #005065;
  border-radius: 12px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--primary-bg);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(243, 199, 124, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(231, 207, 177, 0.5);
}

.submit-button {
  background: linear-gradient(45deg, var(--primary-bg), var(--yellow));
  border: none;
  padding: 20px 40px;
  border-radius: 60px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-bg);
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(231, 207, 177, 0.3);
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(231, 207, 177, 0.4);
  background: linear-gradient(45deg, var(--yellow), #ffd700);
}

.submit-button:active {
  transform: translateY(-1px);
}

.button-arrow {
  transition: transform 0.3s ease;
}

.submit-button:hover .button-arrow {
  transform: translateX(5px);
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-methods h3 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-bg);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.contact-methods > p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--yellow);
  margin-bottom: 30px;
  opacity: 0.8;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(33, 18, 0, 0.9);
  border-radius: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(231, 207, 177, 0.3);
  transform: translateX(5px);
}

.method-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary-bg), var(--yellow));
  border-radius: 50%;
}

.method-details h4 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-bg);
  margin-bottom: 4px;
}

.method-details p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--yellow);
  margin-bottom: 2px;
}

.method-details span {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--primary-bg);
  opacity: 0.7;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    gap: 20px;
  }
  
  #contact {

    min-height: auto;
  }
  
  .contact-container {
    padding: 0 10px;
  }
  
  .contact-hero {
    margin-bottom: 40px;
  }
  
  .contact-title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 20px;
  }
  
  .contact-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    padding: 0 20px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-section {
    padding: 24px;
    border-radius: 16px;
  }
  
  .form-header h3 {
    font-size: clamp(20px, 4vw, 24px);
  }
  
  .form-header p {
    font-size: clamp(14px, 3vw, 16px);
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .form-group label {
    font-size: clamp(13px, 2.5vw, 14px);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: clamp(14px, 3vw, 16px);
    border-radius: 8px;
  }
  
  .submit-button {
    padding: 16px 32px;
    font-size: clamp(14px, 3vw, 16px);
    border-radius: 50px;
  }
  
  .contact-methods h3 {
    font-size: clamp(18px, 4vw, 22px);
  }
  
  .contact-methods > p {
    font-size: clamp(14px, 3vw, 16px);
  }
  
  .contact-method {
    padding: 16px;
    border-radius: 12px;
  }
}

@media screen and (max-width: 480px) {
  
  .contact-container {
    padding: 0 5px;
  }
  
  .contact-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  
  .contact-subtitle {
    font-size: clamp(14px, 4vw, 18px);
    padding: 0 10px;
  }
  
  .contact-form-section {
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .form-header h3 {
    font-size: clamp(18px, 5vw, 22px);
    margin-bottom: 8px;
  }
  
  .form-header p {
    font-size: clamp(12px, 3.5vw, 14px);
  }
  
  .form-group {
    margin-bottom: 4px;
  }
  
  .form-group label {
    font-size: clamp(12px, 3vw, 13px);
    margin-bottom: 6px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: clamp(14px, 3.5vw, 16px);
  }
  
  .submit-button {
    padding: 14px 28px;
    font-size: clamp(13px, 3.5vw, 15px);
  }
  
  .contact-methods h3 {
    font-size: clamp(16px, 5vw, 20px);
  }
  
  .contact-methods > p {
    font-size: clamp(12px, 3.5vw, 14px);
  }
  
  .contact-method {
    padding: 12px;
    gap: 15px;
  }
  
  .method-details h4 {
    font-size: clamp(14px, 4vw, 16px);
  }
  
  .method-details p {
    font-size: clamp(12px, 3.5vw, 14px);
  }
  
  .method-details span {
    font-size: clamp(11px, 3vw, 13px);
  }
}


/* App download buttons styling */
.app-download-buttons {
  margin-top: 18px !important;
  display: flex !important;
  gap: 12px !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.app-download-buttons a {
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.app-download-buttons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.app-download-buttons img {
  height: 48px !important;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.app-download-buttons a:hover img {
  transform: scale(1.05);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .app-download-buttons {
    flex-direction: column;
    gap: 8px !important;
  }
  
  .app-download-buttons img {
    height: 40px !important;
  }
}

@media (max-width: 480px) {
  .app-download-buttons {
    margin-top: 12px !important;
  }
  
  .app-download-buttons img {
    height: 36px !important;
  }
}
