/* ─── Testimonials Section ─── */
#testimonials {
  padding: 130px 8%;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.testimonials-container { position: relative; }

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 44px 36px;
  position: relative;
  transition: border-color 0.3s;
  flex-shrink: 0;
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(201,168,76,0.08);
  top: 10px;
  right: 24px;
  user-select: none;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.testimonial-text {
  font-size: 15px;
  line-height: 2;
  color: rgba(245,240,232,0.75);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,0.3);
}
.author-name {
  font-weight: 700;
  font-size: 15px;
}
.author-role {
  font-size: 12px;
  color: var(--gold);
  margin-top: 2px;
}

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

.t-nav-btn {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 18px;
  cursor: none;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.t-nav-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ─── Contact Section ─── */
#contact {
  padding: 130px 8%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-tagline {
  font-family: 'Tajawal', sans-serif;
  font-size: 17px;
  color: rgba(245,240,232,0.6);
  line-height: 1.9;
  margin-bottom: 50px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  cursor: none;
  transition: all 0.3s;
}
.contact-item:hover { padding-right: 10px; }

.contact-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}
.contact-item:hover .contact-icon {
  background: var(--gold);
  color: var(--black);
}

.contact-item-label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-item-val {
  font-size: 15px;
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.social-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gray);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  text-decoration: none;
}
.social-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ─── Contact Form ─── */
.contact-form {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 50px 44px;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-group select option { background: var(--dark3); }

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: none;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  position: relative;
  overflow: hidden;
}
.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.5s;
}
.submit-btn:hover::before { transform: translateX(100%) skewX(-20deg); }
.submit-btn:hover { box-shadow: 0 10px 40px rgba(201,168,76,0.4); }

/* ─── Footer ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 70px 8% 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about p {
  font-size: 14px;
  color: var(--gray);
  line-height: 2;
  margin-top: 20px;
}

.footer-col h4 {
  font-family: 'Tajawal', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
}
.footer-links a:hover {
  color: var(--gold);
  padding-right: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom span { color: var(--gold); }
