/* ========== GLOBAL RESET & VARIABLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Disable right-click context menu on images */
img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
}

/* Hide image alt text on right-click / save as */
img {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

:root {
  --dark-bg: #323133;
  --gold: #f9cf0a;
  --white: #ffffff;
  --gray-icon: #343134;
  --light-gray: #f8f9fa;
  --text-dark: #1e1e1e;
  --text-muted: #4a4a4a;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== STICKY HEADER ========== */
.navbar {
  background-color: var(--dark-bg);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
  font-size: 1rem;
  padding: 6px 0;
}

.nav-menu a:hover {
  color: var(--gold);
}

@media (max-width: 860px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-menu {
    justify-content: center;
    gap: 1.3rem;
  }
  .logo-img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 35px;
  }
}

/* ========== REVOLUTION SLIDER ========== */
.slider-section {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 580px;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 6s ease-out;
  pointer-events: none;
  user-select: none;
}

.swiper-slide-active .slide-bg {
  transform: scale(1.08);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  padding: 1.8rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 28px;
  backdrop-filter: blur(4px);
  top: 50%;
  transform: translateY(-50%);
}

.slide-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.slide-content p {
  font-size: 1.2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.slide-content .highlight {
  color: var(--gold);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold);
  background: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--gold);
  color: var(--dark-bg);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
}

.swiper-pagination-bullet {
  background: white;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
}

@media (max-width: 768px) {
  .swiper {
    height: 450px;
  }
  .slide-content h2 {
    font-size: 1.8rem;
  }
  .slide-content p {
    font-size: 0.95rem;
  }
}

/* ========== SECTION COMMON ========== */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--dark-bg);
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 85px;
  height: 4px;
  background: var(--gold);
  margin: 14px auto 0;
  border-radius: 4px;
}

/* ========== SERVICES 4 COLUMNS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 28px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #ececec;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3.5rem;
  color: var(--gray-icon);
  margin-bottom: 1.2rem;
  transition: 0.2s;
}

.service-card:hover .service-icon {
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--dark-bg);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.5;
}

.service-list {
  text-align: left;
  margin-top: 1rem;
  font-size: 0.9rem;
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.service-list li {
  margin: 0.3rem 0;
}

/* ========== IMAGE BREAK ========== */
.image-break {
  width: 100%;
  height: 400px;
  background-image: url('images/break/break-image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .image-break {
    height: 200px;
    background-attachment: scroll;
  }
}

/* ========== WHY CHOOSE US ========== */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--light-gray);
  border-radius: 32px;
  padding: 2rem 1.8rem;
  text-align: center;
  transition: 0.25s;
  border-bottom: 4px solid var(--gold);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
  transform: scale(1.02);
  background: var(--white);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.why-icon {
  background: var(--dark-bg);
  width: 75px;
  height: 75px;
  line-height: 75px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  color: var(--white);
  font-size: 2.2rem;
  transition: 0.2s;
}

.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--dark-bg);
}

.why-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.55;
}

/* ========== FAQ SECTION ========== */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
  overflow: hidden;
}

.faq-question {
  background: var(--white);
  padding: 1.2rem 1.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-bg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
}

.faq-question i {
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform 0.2s;
}

.faq-question:hover {
  background: #fff9e6;
}

.faq-answer {
  padding: 0 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fefef7;
  color: #2d2d2d;
  line-height: 1.5;
  border-top: 0px solid var(--gold);
}

.faq-answer p {
  padding-bottom: 1.2rem;
  margin-top: 0.6rem;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  border-top: 1px solid var(--gold);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* ========== CONTACT SECTION ========== */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: var(--light-gray);
  border-radius: 38px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.contact-info {
  flex: 1;
  padding-right: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.8rem;
  background: white;
  border-radius: 60px;
  transition: 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-detail:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-text {
  color: var(--text-dark);
  font-weight: 500;
}

.contact-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: normal;
}

.support-hours {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 0.8rem;
  background: rgba(249, 207, 10, 0.15);
  border-radius: 60px;
  color: var(--dark-bg);
  font-weight: 600;
}

.support-hours i {
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-form {
  flex: 1.5;
}

.form-group {
  margin-bottom: 1.2rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  transition: 0.2s;
  background: white;
  font-family: inherit;
}

textarea {
  border-radius: 28px;
  resize: vertical;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(249, 207, 10, 0.2);
}

.btn-submit {
  background-color: var(--dark-bg);
  color: white;
  border: none;
  padding: 14px 38px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}

.btn-submit:hover {
  background-color: var(--gold);
  color: var(--dark-bg);
}

.form-status {
  margin-top: 1rem;
  font-weight: 500;
}

/* ========== FOOTER WITH BACKGROUND IMAGE ========== */
footer {
  background-color: var(--dark-bg);
  position: relative;
  background-image: url('images/footer/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #e0e0e0;
  padding: 3rem 0 1.5rem;
  margin-top: 1.5rem;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(50, 49, 51, 0.9);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.footer-col p,
.footer-col a {
  color: #cccccc;
  line-height: 1.6;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.social-icons a:hover i {
  color: var(--dark-bg);
}

.social-icons i {
  font-size: 1.2rem;
  color: var(--gold);
  transition: 0.2s;
}

.back-to-top {
  margin-top: 1.5rem;
  border-top: 1px solid #5a5a5a;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.back-to-top a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}

.back-to-top a i {
  margin-left: 6px;
}

.back-to-top a:hover {
  color: white;
}

.copyright {
  font-size: 0.8rem;
  line-height: 1.5;
}

.credit {
  font-size: 0.7rem;
  opacity: 0.8;
  margin-top: 4px;
  display: inline-block;
}

.credit strong {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    padding: 1.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .contact-info {
    padding-right: 0;
  }
  .footer-logo {
    height: 42px;
  }
  .copyright {
    font-size: 0.7rem;
  }
}