* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.logo {
  color: #d4af37;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #d4af37;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #b8860b;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  padding: 20px 20px;
  background-color: #16213e;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left {
  color: #fff;
  padding: 40px;
  border: 3px solid #d4af37;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.05);
}

.hero-left h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #d4af37;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-left h2 {
  font-size: 28px;
  color: #b8860b;
  margin-bottom: 25px;
  font-weight: normal;
  font-style: italic;
}

.description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #e0e0e0;
  text-align: justify;
  letter-spacing: 0.5px;
  font-weight: 300;
  background: linear-gradient(135deg, #e0e0e0 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  transition: all 0.4s ease;
}

.description:hover {
  letter-spacing: 1px;
}

.contact-info {
  margin-bottom: 30px;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  color: #d4af37;
  margin-bottom: 20px;
  text-decoration: none;
  padding: 15px 20px;
  border: 2px solid #d4af37;
  border-radius: 50px;
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
}

.phone-info:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(184, 134, 11, 0.2) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.phone-info i {
  font-size: 24px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  color: #d4af37;
}

.social-icon:hover {
  background-color: #d4af37;
  color: #1a1a2e;
  transform: translateY(-5px);
}

.social-icon.whatsapp {
  border-color: #25d366;
  color: #25d366;
}

.social-icon.whatsapp:hover {
  background-color: #25d366;
  color: #fff;
}

.social-icon.viber {
  border-color: #7360f2;
  color: #7360f2;
}

.social-icon.viber:hover {
  background-color: #7360f2;
  color: #fff;
}

.social-icon.email {
  border-color: #ea4335;
  color: #ea4335;
}

.social-icon.email:hover {
  background-color: #ea4335;
  color: #fff;
}

/* Service Capsules */
.service-capsules {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.capsule {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(184, 134, 11, 0.2) 100%
  );
  border: 2px solid #d4af37;
  border-radius: 50px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.capsule:hover {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #1a1a2e;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Hero Right - Image */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  border: 3px solid #d4af37;
  background: linear-gradient(135deg, #2c2c54 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: #16213e;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder-about {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  border: 3px solid #d4af37;
  background: linear-gradient(135deg, #2c2c54 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  color: #fff;
  padding: 25px;
  border: 3px solid #d4af37;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.05);
}

.about-text h2 {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 25px;
  text-align: justify;
  letter-spacing: 0.5px;
  font-weight: 300;
  background: linear-gradient(135deg, #e0e0e0 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.about-text p:hover {
  letter-spacing: 1px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Areas Section */
.areas-section {
  padding: 60px 20px;
  background-color: #16213e;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.areas-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.areas-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.image-placeholder-areas {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  border: 3px solid #d4af37;
  background: linear-gradient(135deg, #2c2c54 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder-areas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.area-item {
  padding: 15px 20px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(184, 134, 11, 0.15) 100%
  );
  border: 2px solid #d4af37;
  border-radius: 10px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.area-item:hover {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #1a1a2e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.areas-content {
  color: #fff;
  padding: 25px;
  border: 3px solid #d4af37;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.05);
}

.areas-content h2 {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.areas-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 25px;
  text-align: justify;
  letter-spacing: 0.5px;
  font-weight: 300;
  background: linear-gradient(135deg, #e0e0e0 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.areas-content p:hover {
  letter-spacing: 1px;
}

.areas-content p:last-child {
  margin-bottom: 0;
}

/* Floating Contact Icons */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.floating-icon.whatsapp {
  background-color: #25d366;
  color: #fff;
}

.floating-icon.whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.floating-icon.viber {
  background-color: #7360f2;
  color: #fff;
}

.floating-icon.viber:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(115, 96, 242, 0.4);
}

.floating-icon.email {
  background-color: #ea4335;
  color: #fff;
}

.floating-icon.email:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(234, 67, 53, 0.4);
}

/* Process Section */
.process-section {
  padding: 60px 20px;
  background-color: #16213e;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.process-section h2 {
  text-align: center;
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  background: rgba(212, 175, 55, 0.05);
  border: 3px solid #d4af37;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.process-step:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #1a1a2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  position: absolute;
  top: -15px;
  left: 20px;
}

.step-content h3 {
  font-size: 18px;
  margin-top: 15px;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 600;
}

.step-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
  text-align: justify;
}

/* Service Detail Sections */
.service-detail-section {
  padding: 60px 20px;
  background-color: #16213e;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.service-detail-section.alternate {
  background-color: #1a1a2e;
}

.service-detail-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-detail-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder-service {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  border: 3px solid #d4af37;
  background: linear-gradient(135deg, #2c2c54 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  color: #fff;
  padding: 25px;
  border: 3px solid #d4af37;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.05);
}

.service-detail-content h2 {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-detail-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  letter-spacing: 0.5px;
  font-weight: 300;
  background: linear-gradient(135deg, #e0e0e0 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.service-detail-content p:last-child {
  margin-bottom: 0;
}

/* Certificate Section */
.certificate-section {
  padding: 60px 20px;
  background-color: #1a1a2e;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.certificate-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.certificate-section .section-title {
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.certificate-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.certificate-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificate-image img {
  max-width: 100%;
  height: auto;
  border: 3px solid #d4af37;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
  max-height: 600px;
  object-fit: contain;
}

.certificate-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
  border-color: #b8860b;
}

.certificate-text {
  color: #e0e0e0;
  padding: 30px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  background: rgba(212, 175, 55, 0.05);
}

.certificate-text h3 {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.certificate-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
  letter-spacing: 0.5px;
}

.certificate-text p:last-of-type {
  margin-bottom: 0;
}

.certificate-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  color: #e0e0e0;
}

.certificate-list li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
}

.certificate-list li:before {
  content: "✨";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 16px;
}

/* Responsive Certificate */
@media (max-width: 968px) {
  .certificate-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  background-color: #16213e;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.gallery-section h2 {
  text-align: center;
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border: 3px solid #d4af37;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  aspect-ratio: 1/1;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
  border-color: #b8860b;
}

.gallery-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #2c2c54 0%, #16213e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background-color: #fff;
}

.contact-section h2 {
  text-align: center;
  font-size: 36px;
  color: #1a1a2e;
  margin-bottom: 50px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #d4af37;
  border-radius: 5px;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b8860b;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #1a1a2e;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 40px 20px;
  border-top: 2px solid #d4af37;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-section {
  color: #e0e0e0;
  font-size: 14px;
  text-align: center;
  flex: 1;
}

.footer-section p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #b8860b;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease-in-out,
      visibility 0.4s ease-in-out;
    border-bottom: 2px solid #d4af37;
    visibility: hidden;
  }

  .nav-links.active {
    max-height: 300px;
    visibility: visible;
  }

  .nav-links a {
    font-size: 18px;
    color: #fff;
    display: block;
    padding: 10px 0;
  }

  .navbar .container {
    position: relative;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-section {
    text-align: center;
    flex: 1 1 100%;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-left {
    display: contents;
  }

  .hero-left h1 {
    order: 1;
    font-size: 36px;
    margin-bottom: 5px;
  }

  .hero-left h2 {
    order: 2;
    font-size: 22px;
    margin-bottom: 15px;
  }

  .description {
    margin-bottom: 0;
  }

  .hero-right {
    order: 3;
  }

  .hero-left > *:not(h1):not(h2) {
    order: 4;
  }

  .nav-links {
    gap: 15px;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .service-capsules {
    gap: 10px;
    margin-top: 20px;
  }

  .capsule {
    padding: 10px 18px;
    font-size: 11px;
    letter-spacing: 0.5px;
    flex: 1 1 calc(50% - 5px);
    text-align: center;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .about-section {
    padding: 40px 20px;
  }

  .areas-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .areas-section {
    padding: 40px 20px;
  }

  .areas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-section {
    padding: 40px 20px;
  }

  .process-section h2 {
    font-size: 36px;
  }

  .service-detail-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-detail-section {
    padding: 40px 20px;
  }

  .service-detail-content h2 {
    font-size: 28px;
  }

  .image-placeholder-service {
    max-width: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-section {
    padding: 40px 20px;
  }

  .gallery-section h2 {
    font-size: 36px;
  }

  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  min-height: 100vh;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 60px;
  font-weight: bold;
}

.testimonials-page {
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}

.testimonials-page.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #d4af37;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16213e;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-header h3 {
  color: #d4af37;
  font-size: 1.1rem;
  margin: 0;
}

.rating {
  font-size: 0.9rem;
  color: #ffd700;
  margin-top: 5px;
}

.testimonial-text {
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-date {
  color: #b0b0b0;
  font-size: 0.85rem;
  text-align: right;
}

.testimonials-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.pagination-btn {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background: rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
  transform: scale(1.1);
}

.pagination-btn.active {
  background: #d4af37;
  color: #16213e;
  border-color: #d4af37;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 20px;
  }

  .testimonials-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .testimonial-card {
    padding: 20px;
  }
}
