/* ===== GLOBAL STYLES ===== */
:root {
  --black: #000000;
  --yellow: #FFD700;
  --dark-yellow: #FFC000;
  --gray: #222222;
  --light-gray: #f5f5f5;
  --text-light: #ffffff;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
  }
  
  /* ===== HEADER STYLES ===== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) ease;
  }
  
  .header.scrolled {
    padding: 0.5rem 5%;
    background-color: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
  }
  
  .logo a {
    color: var(--text-light);
    text-decoration: none;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 1px;
    transition: color var(--transition-speed) ease;
  }
  
  .logo a:hover {
    color: var(--secondary-color);
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }
  
  .nav-item .nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
  }
  
  .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #FFC000;
    transition: width var(--transition-speed) ease;
  }
  
  .nav-item .nav-link:hover::after,
  .nav-item .nav-link.active::after {
    width: 70%;
  }
  
  .nav-item .nav-link:hover {
    color: #FFC000;
  }
  
  .nav-item .nav-link.active {
    color: #FFC000;
    font-weight: 600;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-light);
  }
  
  /* ===== HERO SECTION ===== */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 1200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    margin-top: 68px; /* Account for fixed header */
  }
  
  .hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
  }
  
  .hero-video,
  .hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
  }
  
  .hero-content {
    width: 100%;
    padding: 0 5%;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
  }
  
  .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .pre-title {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    display: inline-block;
    position: relative;
    padding-left: 1em;
  }
  
  .pre-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5em;
    height: 2px;
    background-color: var(--secondary-color);
  }
  
  h1 {
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  }
  
  .title-line {
    display: block;
  }
  
  .subtitle {
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.9;
  }
  
  .cta-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  
  .cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
    background-color: var(--secondary-color);
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  }
  
  .cta-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
  }
  
  .cta-primary i {
    margin-left: 0.7rem;
    transition: transform var(--transition-speed) ease;
  }
  
  .cta-primary:hover i {
    transform: translateX(5px);
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-speed) ease;
  }
  
  .scroll-indicator:hover {
    opacity: 1;
  }
  
  .scroll-indicator span {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  
  .indicator-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-light), transparent);
    animation: bounce 2s infinite;
  }
  
  .hero-features {
    position: absolute;
    bottom: 2rem;
    left: 5%;
    right: 5%;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    z-index: 2;
  }
  
  .feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  
  .feature-card i {
    font-size: 1.2rem;
    color: var(--secondary-color);
  }
  
  .feature-card span {
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 500;
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  /* ===== RESPONSIVE ADJUSTMENTS ===== */
  @media (max-width: 992px) {
    .nav-menu {
      gap: 1rem;
    }
  }
  
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  
    .nav-menu {
      position: fixed;
      top: 0;
      left: -100%;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      gap: 0;
      flex-direction: column;
      background-color: black;
      text-align: left;
      transition: 0.3s;
      padding: 6rem 2rem;
      box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .nav-item {
      margin: 1rem 0;
      width: 100%;
    }
  
    .nav-item .nav-link {
      padding: 0.8rem 1rem;
      display: block;
    }
  
    .hero {
      min-height: 700px;
      text-align: center;
    }
  
    .content-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .subtitle {
      margin-left: auto;
      margin-right: auto;
    }
  
    .cta-container {
      justify-content: center;
    }
  
    .hero-features {
      position: static;
      margin-top: auto;
      padding-bottom: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .header {
      padding: 0.8rem 5%;
    }
  
    .hero {
      min-height: 650px;
      margin-top: 60px;
    }
  
    h1 .title-line {
      display: inline;
    }
  
    .cta-primary {
      width: 100%;
      justify-content: center;
      padding: 0.8rem 1.5rem;
    }
  
    .feature-card {
      padding: 0.8rem 1rem;
      width: 100%;
      max-width: 250px;
      justify-content: center;
    }
  }
  
  @media (max-height: 500px) and (orientation: landscape) {
    .hero {
      height: 120vh;
      min-height: 450px;
    }
  
    .hero-content {
      padding-top: 3rem;
    }
  
    .hero-features {
      display: none;
    }
  }
 /*about section*/
 :root {
  --black: #000000;
  --yellow: #FFD700;
  --dark-yellow: #FFC000;
  --gray: #222222;
  --light-gray: #f5f5f5;
  --text-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--black);
  color: var(--text-light);
  line-height: 1.6;
}

.about-section {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--black) 0%, var(--gray) 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--yellow);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--yellow);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--light-gray);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about-image {
  flex: 1 1 45%;
  min-width: 300px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--yellow);
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.8s ease;
}

.about-image.reveal {
  transform: translateX(0);
  opacity: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  flex: 1 1 45%;
  min-width: 300px;
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.8s ease 0.2s;
}

.about-text.reveal {
  transform: translateX(0);
  opacity: 1;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--yellow);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--yellow);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--light-gray);
  line-height: 1.8;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  flex: 1 1 120px;
  background-color: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--yellow);
  border-radius: 5px;
  padding: 20px;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--light-gray);
}

.adventure-icon {
  position: absolute;
  font-size: 3rem;
  color: rgba(255, 215, 0, 0.1);
  z-index: 0;
}

.icon-1 {
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.icon-2 {
  bottom: 15%;
  right: 5%;
  animation: float 8s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
      flex-direction: column;
  }
  
  .about-image, .about-text {
      transform: translateY(30px);
      min-width: 100%;
  }
  
  .about-text {
      text-align: center;
  }
  
  .about-text h3::after {
      left: 50%;
      transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .section-header h2 {
      font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
      font-size: 2rem;
  }
  
  .stat-box {
      flex: 1 1 100%;
  }
}
/*award winning section*/

/*service section*/
:root {
  --black: #000000;
  --yellow: #FFD700;
  --dark-yellow: #FFC000;
  --gray: #222222;
  --light-gray: #f5f5f5;
  --text-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f7fa;
}

.services-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--secondary), var(--accent));
}

.services-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(50px);
}

.service-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }

.service-image {
  flex: 1;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-title {
  font-size: 1.8rem;
  color: black;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
}

.service-description {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #555;
}

.service-contact {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: black;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 1.2rem;
}

.contact-info {
  font-weight: 600;
  color: var(--primary);
}

.contact-info a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #FFC000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-card {
      flex-direction: column;
  }
  
  .service-image {
      min-height: 200px;
  }
}

@media (max-width: 768px) {
  .section-title h2 {
      font-size: 2rem;
  }
  
  .service-content {
      padding: 30px;
  }
  
  .service-title {
      font-size: 1.5rem;
  }
}
/* packages block*/
:root {
  --black: #000000;
  --yellow: #FFD700;
  --dark-yellow: #FFC000;
  --gray: #222222;
  --light-gray: #f5f5f5;
  --text-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--black);
  color: var(--text-light);
  line-height: 1.6;
}

.packages-section {
  padding: 100px 20px;
  background-color: var(--gray);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.8rem;
  color: var(--yellow);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--yellow);
}

.packages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.package-card {
  background-color: var(--black);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--yellow);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.5s ease;
}

.package-card.reveal {
  transform: translateY(0);
  opacity: 1;
}

.package-card:nth-child(1) { transition-delay: 0.1s; }
.package-card:nth-child(2) { transition-delay: 0.2s; }
.package-card:nth-child(3) { transition-delay: 0.3s; }
.package-card:nth-child(4) { transition-delay: 0.4s; }

.package-header {
  background-color: var(--yellow);
  color: var(--black);
  padding: 20px;
  text-align: center;
}

.package-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 800;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
}

.package-body {
  padding: 30px;
}

.package-features {
  list-style: none;
  margin-bottom: 30px;
}

.package-features li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.package-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--yellow);
}

.package-button {
  display: block;
  text-align: center;
  background-color: var(--yellow);
  color: var(--black);
  padding: 12px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
}

.package-button:hover {
  background-color: var(--dark-yellow);
  transform: translateY(-3px);
}

.popular-tag {
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: var(--yellow);
  color: var(--black);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h2 {
      font-size: 2.2rem;
  }
  
  .packages-container {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
      font-size: 2rem;
  }
  
  .package-name {
      font-size: 1.5rem;
  }
  
  .package-price {
      font-size: 2rem;
  }
}
/*contact and footer section */
:root {
  --black: #000000;
  --yellow: #FFD700;
  --dark-yellow: #FFC000;
  --gray: #222222;
  --light-gray: #f5f5f5;
  --text-light: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--black);
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)); 
              
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--yellow);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--yellow);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info {
  background-color: rgba(34, 34, 34, 0.8);
  padding: 40px;
  border-radius: 10px;
  border-left: 5px solid var(--yellow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
  color: var(--yellow);
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--yellow);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--yellow);
}

.info-content p, 
.info-content a {
  color: var(--light-gray);
  text-decoration: none;
}

.info-content a:hover {
  color: var(--yellow);
}

.contact-form {
  background-color: rgba(34, 34, 34, 0.8);
  padding: 40px;
  border-radius: 10px;
  border-left: 5px solid var(--yellow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gray);
  border-radius: 5px;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: var(--yellow);
  background-color: rgba(255, 215, 0, 0.05);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--yellow);
  color: var(--black);
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: var(--dark-yellow);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
  background-color: var(--black);
  padding: 70px 20px 30px;
  border-top: 2px solid var(--yellow);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--yellow);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--yellow);
}

.footer-col p {
  color: var(--light-gray);
  margin-bottom: 20px;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--yellow);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gray);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--yellow);
  color: var(--black);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-bottom p {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
      font-size: 2.2rem;
  }
  
  .contact-info, .contact-form {
      padding: 30px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
      font-size: 2rem;
  }
  
  .info-item {
      flex-direction: column;
  }
  
  .info-icon {
      margin-bottom: 15px;
  }
}