/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--dark-gray);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header .section-label {
  justify-content: center;
}

.testimonials-header .section-label::before {
  display: none;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 50px;
  text-align: center;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.2rem;
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-blue), var(--navy-blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.testimonial-info {
  text-align: left;
}

.testimonial-info h5 {
  font-size: 1.05rem;
  color: var(--white);
  font-family: var(--font-heading);
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--gold);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--gold);
  width: 35px;
  border-radius: 6px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 11, 11, 0.92) 0%, rgba(15, 45, 82, 0.85) 100%);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
}

.cta-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--light-gray);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--midnight-black);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header .section-label {
  justify-content: center;
}

.contact-header .section-label::before {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

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

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: var(--card-dark);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.contact-info-card:hover {
  border-color: rgba(200, 161, 74, 0.3);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon i {
  font-size: 1.3rem;
  color: var(--midnight-black);
}

.contact-info-card h5 {
  font-size: 0.95rem;
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  display: block;
  transition: var(--transition-fast);
}

.contact-info-card a:hover {
  color: var(--gold);
}

.contact-map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  border: 1px solid rgba(200, 161, 74, 0.2);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5) invert(0.9) contrast(0.8);
}

/* Contact Form */
.contact-form-wrapper {
  padding: 40px;
  background: var(--card-dark);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(200, 161, 74, 0.05);
  box-shadow: 0 0 0 3px rgba(200, 161, 74, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8A14A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 40px;
}

.form-group select option {
  background: var(--card-dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-wrapper .btn {
  width: 100%;
  margin-top: 10px;
}

.form-success {
  display: none;
  padding: 15px;
  background: rgba(200, 161, 74, 0.1);
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 15px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060606;
  padding: 70px 0 0;
  border-top: 1px solid rgba(200, 161, 74, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
  height: 55px;
}

.footer-brand .nav-logo img {
  height: 52px;
  width: auto;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  transition: var(--transition-fast);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--midnight-black);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 1rem;
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-contact-item p,
.footer-contact-item a {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.85rem;
}

.footer-bottom p a {
  color: var(--gold);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
  animation: float 3s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 1.8rem;
  color: var(--white);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px var(--gold-glow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-5px);
}

.back-to-top i {
  font-size: 1.3rem;
  color: var(--midnight-black);
}
