/* MAIN STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #000;
  color: #fff;
}

/* loading */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 9999;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* NAVIGATION */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #151515;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #fcd500;
  flex-wrap: wrap;
}

.logo img {
  max-width: 150px;
  height: auto;
}

.amv {
  max-width: 150px;
  height: 65px;
  margin: 0 10px;
  order: -1;
}

.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fcd500;
}
/* FLOATING OFFER BUTTON - SIDE WALL VERSION */
.floating-offer-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fcd500;
  color: #000;
  padding: 25px 15px;
  border-radius: 10px 0 0 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  box-shadow: -3px 0 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform-origin: right center;
  cursor: pointer;
  writing-mode: vertical-lr;
  text-orientation: mixed;
  letter-spacing: 2px;
}

.floating-offer-btn:hover {
  background-color: #ffdf32;
  padding: 25px 20px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
}

/* Animation for attention */
@keyframes pulse {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-50%) scaleX(1.1);
  }
  100% {
    transform: translateY(-50%);
  }
}

.floating-offer-btn.pulse {
  animation: pulse 1.5s ease-in-out 2;
}

.floating-offer-btn::after {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  font-size: 1.5rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.floating-offer-btn:hover::after {
  opacity: 1;
  bottom: 15px;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .floating-offer-btn {
    padding: 20px 12px;
    font-size: 0.9rem;
  }

  .floating-offer-btn:hover {
    padding: 20px 15px;
  }

  .floating-offer-btn::after {
    font-size: 1.2rem;
  }
}

.campaign-bar {
  background-color: #fcd500;
  color: #141414;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 5px;
  margin-top: 90px;
}

.campaign-track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.campaign-text {
  display: flex;
}
.campaign-text span {
  display: inline-block;
  font-family: "Archivo Black", sans-serif;
  margin-right: 50px;
  white-space: nowrap;
  font-size: 16px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HERO SECTION */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.99));
  z-index: 1;
}

.background-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: url(../images/cover/2025-07-05.png);
}

.background-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 40px 20px;
}

.hero-heading {
  color: #fcd500;
  font-family: "Archivo Black", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-subheading {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.highlight-item {
  background: rgba(252, 213, 0, 0.1);
  border: 2px solid #fcd500;
  border-radius: 10px;
  padding: 20px;
  max-width: 280px;
  text-align: center;
}

.highlight-icon {
  font-size: 2.5rem;
  color: #fcd500;
  margin-bottom: 15px;
}

.highlight-title {
  color: #fcd500;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.highlight-text {
  color: #fff;
  font-size: 1rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  min-width: 220px;
  text-align: center;
}

.btn-primary {
  background-color: #fcd500;
  color: #000;
  border: 2px solid #fcd500;
}

.btn-primary:hover {
  background-color: transparent;
  color: #fcd500;
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-3px);
}

.location-badge {
  background: #fcd500;
  color: #000;
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  font-weight: bold;
  margin-top: 30px;
  font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
  }

  .hero-subheading {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
  }

  .highlight-item {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 1.8rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }
}

/* SERVICES SECTION */
#services {
  background-color: #141414;
  padding: 100px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: #fcd500;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #fcd500;
  border-radius: 2px;
}

.section-subtitle {
  color: #fff;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.service-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 30px;
}

.service-title {
  color: #fcd500;
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.service-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #fcd500;
}

.service-description {
  color: #ddd;
  margin-bottom: 25px;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #ccc;
}

.feature-icon {
  color: #fcd500;
  margin-right: 10px;
  width: 20px;
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery-btn {
  flex: 1;
  min-width: 120px;
  background: #fcd500;
  color: #000;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery-btn:hover {
  background: #ffdf32;
  transform: translateY(-3px);
}

.more-about-container {
  text-align: center;
  margin-top: 40px;
}

.more-about-btn {
  display: inline-block;
  background: transparent;
  color: #fcd500;
  border: 2px solid #fcd500;
  padding: 15px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.more-about-btn:hover {
  background: #fcd500;
  color: #000;
  transform: translateY(-3px);
}

/* CONTACT SECTION */
#contact {
  background: #0f0f0f;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 1.3rem;
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-container {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(252, 213, 0, 0.2);
}

.contact-info-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.info-card {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(252, 213, 0, 0.1);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(252, 213, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #fcd500;
}

.info-content h3 {
  color: #fcd500;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.info-content p {
  color: #ddd;
  line-height: 1.6;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  transition: 0.3s ease all;
  background: transparent;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease all;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fcd500;
  background: #222;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
  top: -10px;
  left: 15px;
  font-size: 13px;
  color: #fcd500;
  background: #1a1a1a;
  padding: 0 5px;
}

.submit-btn {
  background: #fcd500;
  color: #000;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease all;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #ffdf32;
  transform: translateY(-3px);
}

/* File Upload Styles */
.file-upload-container {
  margin-top: 30px;
}

.file-upload-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(26, 26, 26, 0.5);
  border: 2px dashed #444;
  border-radius: 10px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.file-upload-label:hover {
  border-color: #fcd500;
  background: rgba(252, 213, 0, 0.05);
  color: #ddd;
}

.file-upload-label i {
  color: #fcd500;
  font-size: 1.2rem;
}

.file-upload-label input[type="file"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  appearance: none;
  -webkit-appearance: none;
}

.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.file-preview .file-item {
  background: rgba(252, 213, 0, 0.1);
  border: 1px solid rgba(252, 213, 0, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.file-preview .file-item i {
  color: #fcd500;
}

.file-preview .file-item .remove-file {
  color: #ff6b6b;
  cursor: pointer;
  margin-left: 5px;
}

.form-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(252, 213, 0, 0.1);
  border-left: 3px solid #fcd500;
  padding: 10px 15px;
  margin: 10px 0 20px;
  border-radius: 0 5px 5px 0;
}

.form-notice i {
  color: #fcd500;
  font-size: 1.2rem;
}

.form-notice p {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
  .contact-grid {
    gap: 30px;
  }

  .contact-info-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 30px;
  }

  .contact-header h1 {
    font-size: 2.5rem;
  }

  .contact-header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 25px 20px;
  }

  .contact-header h1 {
    font-size: 2rem;
  }
}

/* FOOTER */
footer {
  background-color: #151515;
  padding: 50px 20px;
  border-top: 2px solid #fcd500;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  color: #fcd500;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.footer-section p {
  color: #fff;
  margin-bottom: 10px;
}

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
  align-items: center;
}

.cert-logos a,
.cert-logos div {
  display: flex;
  align-items: center;
}

.cert-logos img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cert-logos img:hover {
  transform: scale(1.05);
}

.amv {
  max-height: 65px;
}

.id06 {
  max-height: 70px;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  margin-right: 15px;
  transition: color 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.social-links a:hover {
  color: #fcd500;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
  .footer-content {
    gap: 40px;
  }

  .footer-section {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    width: 100%;
  }

  .cert-logos {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 40px 15px;
  }

  .cert-logos {
    flex-direction: column;
    align-items: flex-start;
  }

  .cert-logos img {
    max-height: 60px;
  }
}

/*WHITE*/

.white {
  color: white;
}

.yellow {
  color: #fcd500;
}

/* Hamburger Menu */

.hamburger {
  display: none;
  padding: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  order: 2;
  transition: transform 0.3s ease;
}

.hamburger i {
  transition: transform 0.3s ease;
}

.hamburger.active i {
  transform: rotate(90deg);
}

.amv {
  max-width: 60px;
  height: auto;
  margin-right: auto;
  order: 1;
}

.logo {
  order: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  order: 3;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    height: calc(100vh - 70px);
    background-color: #151515;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 15px;
    border-bottom: 1px solid #333;
  }

  nav {
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 10px 15px;
  }

  .logo img {
    max-width: 100px;
  }

  /* Hide AMV logo on mobile if needed */
  .amv {
    display: none;
  }
}
