/**
* Main CSS File - Tempo Events
* Black Background with Yellow Text (#fff803)
*/

/*--------------------------------------------------------------
# Reset & Base Styles
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  color: #fff803;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Header & Navigation - Desktop
--------------------------------------------------------------*/
.header {
  background-color: #000000;
  padding: 15px 20px;
  border-bottom: 1px solid #fff803;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .container-fluid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 50px;
  width: auto;
}

/* Desktop Navigation */
.navmenu {
  display: flex;
  align-items: center;
}

.navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.navmenu ul li a {
  color: #fff803;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  opacity: 0.8;
  text-decoration: underline;
}

.btn-getstarted {
  display: inline-block;
  background-color: #fff803;
  color: #000000;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-left: 30px;
  transition: opacity 0.3s;
}

.btn-getstarted:hover {
  opacity: 0.85;
}

/*--------------------------------------------------------------
# Mobile Menu Button - CLEAN (no extra icons)
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
  background: transparent !important;
  border: none !important;
  font-size: 28px;
  color: #fff803 !important;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  width: auto !important;
  height: auto !important;
  line-height: 1;
  box-shadow: none !important;
  outline: none !important;
}

.mobile-nav-toggle i {
  font-size: 28px;
  color: #fff803 !important;
  background: transparent !important;
  display: inline-block;
}

/* Remove any pseudo-elements that might add extra icons */
.mobile-nav-toggle::before,
.mobile-nav-toggle::after {
  display: none !important;
  content: none !important;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus,
.mobile-nav-toggle:active {
  background: transparent !important;
  opacity: 0.8;
  outline: none;
  box-shadow: none !important;
}

/*--------------------------------------------------------------
# Mobile Navigation Styles
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }
  
  .btn-getstarted {
    display: none;
  }
  
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #000000;
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 2px solid #fff803;
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
  }
  
  .navmenu.open {
    right: 0;
  }
  
  .navmenu ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .navmenu ul li {
    width: 100%;
  }
  
  .navmenu ul li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 248, 3, 0.2);
    font-size: 18px;
  }
  
  .navmenu .btn-getstarted {
    display: block;
    text-align: center;
    margin: 30px 0 0;
    width: 100%;
  }
  
  body.menu-open {
    overflow: hidden;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../img/showcase-1.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
    min-height: 90vh;
  }
}

.hero .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 30%) 0%, color-mix(in srgb, var(--background-color), transparent 50%) 100%);
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
}

@media (max-width: 768px) {
  .hero .hero-content {
    padding: 100px 0 60px;
  }
}

.hero .hero-text {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .hero .hero-text {
    margin-bottom: 40px;
  }
}

.hero .hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 1200px) {
  .hero .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

.hero .hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

.hero .event-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero .event-details {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

.hero .detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero .detail-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero .detail-item {
    font-size: 1rem;
  }
}

.hero .countdown-section {
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .hero .countdown-section {
    margin-bottom: 40px;
  }
}

.hero .countdown-label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero .countdown-label {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}

.hero .countdown {
  gap: 30px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero .countdown {
    gap: 20px;
  }
}

.hero .countdown div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px 20px;
  min-width: 120px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero .countdown div:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero .countdown div {
    padding: 16px 12px;
    min-width: 90px;
  }
}

.hero .countdown div h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
}

@media (max-width: 768px) {
  .hero .countdown div h3 {
    font-size: 2rem;
  }
}

.hero .countdown div h4 {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color) 90%, white 15%);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero .countdown div h4 {
    font-size: 0.8rem;
  }
}

.hero .cta-section {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .hero .cta-section {
    margin-bottom: 50px;
  }
}

.hero .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .hero .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.hero .btn-cta {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
}

@media (max-width: 768px) {
  .hero .btn-cta {
    padding: 14px 28px;
    font-size: 1rem;
    min-width: 160px;
  }
}

.hero .btn-cta.btn-primary {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .btn-cta.btn-primary:hover {
  transform: translateY(-2px);
}

.hero .btn-cta.btn-secondary {
  background: transparent;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-cta.btn-secondary:hover {
  transform: translateY(-2px);
}

.hero .cta-note {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
}

@media (max-width: 768px) {
  .hero .cta-note {
    font-size: 0.9rem;
  }
}

.hero .clients-section {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 40px;
}

@media (max-width: 768px) {
  .hero .clients-section {
    padding-top: 30px;
  }
}

.hero .clients-label {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  font-size: 0.9rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero .clients-label {
    font-size: 0.85rem;
    margin-bottom: 24px;
  }
}

.hero .clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero .clients-logos {
    gap: 24px;
  }
}

.hero .clients-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hero .client-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero .client-logo {
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.intro {
  position: relative;
  background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
  overflow: hidden;
}

.intro::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
  transform: rotate(-15deg);
  z-index: 1;
}

.intro .container {
  position: relative;
  z-index: 2;
}

.intro .content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background-clip: text;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .intro .content h2 {
    font-size: 2.5rem;
  }
}

.intro .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.intro .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.intro .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.intro .stat-item {
  text-align: center;
  position: relative;
}

.intro .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.intro .stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

.intro .stat-item::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
  border-radius: 2px;
}

.intro .cta-section {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.intro .cta-section .btn {
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.intro .cta-section .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  border: none;
  color: var(--contrast-color);
}

.intro .cta-section .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.intro .cta-section .btn.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.intro .cta-section .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.intro .visual-section {
  position: relative;
}

.intro .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: all 0.3s ease;
}

.intro .image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.intro .image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.intro .image-wrapper .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 60%) 0%, transparent 100%);
}

.intro .image-wrapper .floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.intro .image-wrapper .floating-badge i {
  font-size: 1.1rem;
}

.intro .highlight-cards {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .intro .highlight-cards {
    flex-direction: column;
  }
}

.intro .highlight-card {
  flex: 1;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}

.intro .highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.intro .highlight-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 30%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro .highlight-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.intro .highlight-card p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.6;
}

.intro .founder-quote {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
  border-radius: 25px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  position: relative;
  overflow: hidden;
}

.intro .founder-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-weight: bold;
  line-height: 1;
}

.intro .founder-quote .founder-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.intro .founder-quote blockquote {
  margin: 0;
}

.intro .founder-quote blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .intro .founder-quote blockquote p {
    font-size: 1.1rem;
  }
}

.intro .founder-quote blockquote cite {
  display: block;
  text-align: left;
}

.intro .founder-quote blockquote cite strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.intro .founder-quote blockquote cite span {
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .intro .founder-quote {
    text-align: center;
  }

  .intro .founder-quote .founder-img {
    margin-bottom: 2rem;
  }

  .intro .founder-quote blockquote cite {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .intro .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .intro .cta-section {
    justify-content: center;
  }

  .intro .cta-section .btn {
    flex: 1;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Main Content
--------------------------------------------------------------*/
main {
  margin-top: 80px;
  padding: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid #fff803;
  margin-bottom: 40px;
  background-color: #000000;
}

.page-title h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #fff803;
}

.page-title p {
  color: #fff803;
  margin-bottom: 15px;
}

.breadcrumbs ol {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.breadcrumbs a {
  color: #fff803;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .current {
  color: #fff803;
  opacity: 0.8;
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #fff803;
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff803;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #fff803;
}

.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  background-color: #111111;
  padding: 30px;
  border-radius: 10px;
}

.mission, .vision {
  flex: 1;
  min-width: 250px;
}

.mission h3, .vision h3 {
  color: #fff803;
  margin-bottom: 15px;
  font-size: 24px;
}

.mission p, .vision p {
  color: #fff803;
  line-height: 1.6;
}

.team-section {
  margin: 60px 0;
}

.team-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff803;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-card {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  text-align: center;
  background-color: #111111;
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid #fff803;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff803;
}

.team-card span {
  font-size: 13px;
  opacity: 0.8;
  display: block;
  color: #fff803;
}

/*--------------------------------------------------------------
# Services Page Styles
--------------------------------------------------------------*/
.travel-info {
  background-color: #111111;
  border: 1px solid #fff803;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  height: 100%;
}

.travel-icon i, .flag-icon i {
  font-size: 40px;
  color: #fff803;
  margin-bottom: 15px;
  display: inline-block;
}

.travel-info strong {
  display: block;
  font-size: 18px;
  margin: 15px 0 10px;
  color: #fff803;
}

.travel-info p {
  color: #fff803;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/*--------------------------------------------------------------
# Gallery Page Styles
--------------------------------------------------------------*/
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-links {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery-links a {
  width: 40px;
  height: 40px;
  background-color: #fff803;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.gallery-links a:hover {
  transform: scale(1.1);
}

.gallery-links a i {
  font-size: 20px;
  color: #000000;
}

/* Video iframe styling */
iframe {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-info-box {
  background-color: #111111;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #fff803;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-info-box .icon-box i {
  font-size: 30px;
  color: #fff803;
}

.contact-info-box .info-content h4 {
  color: #fff803;
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-info-box .info-content p {
  color: #fff803;
  margin-bottom: 5px;
}

.contact-form-wrapper {
  background-color: #111111;
  border-radius: 12px;
  padding: 40px;
  border: 1px solid #fff803;
}

.contact-form-wrapper h2 {
  color: #fff803;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form-wrapper .form-control {
  background-color: #000000;
  border: 1px solid #fff803;
  color: #fff803;
  padding: 12px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
}

.contact-form-wrapper .form-control:focus {
  outline: none;
  border-color: #fff803;
  box-shadow: 0 0 5px rgba(255, 248, 3, 0.5);
}

.contact-form-wrapper textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/*--------------------------------------------------------------
# Button Styles - EXCLUDING hamburger button
--------------------------------------------------------------*/
.btn {
  display: inline-block;
  background-color: #fff803;
  color: #000000;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-cta, .btn-secondary {
  background-color: #fff803;
  color: #000000;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  background-color: #000000;
  border-top: 1px solid #fff803;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about {
  flex: 2;
  min-width: 280px;
}

.footer-about .sitename {
  font-size: 28px;
  font-weight: bold;
  color: #fff803;
  text-decoration: none;
}

.footer-contact p {
  margin: 8px 0;
  color: #fff803;
}

.footer-contact strong {
  color: #fff803;
}

.footer-links {
  flex: 1;
  min-width: 150px;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff803;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  color: #fff803;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff803;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.8;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 248, 3, 0.3);
  margin-top: 20px;
}

.copyright p {
  margin: 5px 0;
  font-size: 14px;
  color: #fff803;
}

.copyright a {
  color: #fff803;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background-color: #fff803;
  color: #000000;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top i {
  font-size: 20px;
  color: #000000;
}

/*--------------------------------------------------------------
# Preloader - FIXED (hidden immediately)
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 9999;
  display: none !important;
}

/* Keep animation but not used */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .page-title h1 {
    font-size: 32px;
  }
  
  .about-content h2 {
    font-size: 28px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  
  .team-card {
    min-width: 160px;
  }
  
  .team-card img {
    width: 100px;
    height: 100px;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
}