/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #DA9E3B;
  --primary-light: #FCD657;
  --primary-dark: #a8782a;
  --secondary-color: #f97316;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-dark: #a8782a;
  --success: #10b981;
  --star-color: #ffc107;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-divider {
  height: 4px;
  width: 60px;
  background: var(--primary-color);
  margin: 0 auto;
  border-radius: 2px;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
  margin-left: 1rem;
}

.btn-secondary:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Header Styles */
header {
  background-color: var(--text-white);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#company-logo {
  max-height: 80px;
  max-width: 200px;
}

/* Banner Styles */
.banner {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-white);
  text-align: center;
  padding: 180px 20px 120px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.banner-shape {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--bg-light);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.title {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  animation: fadeInUp 1.2s ease-out;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.5s ease-out;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.banner-cta {
  animation: fadeInUp 1.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonials Styles */
.testimonials {
  padding: 100px 0;
  background-color: var(--text-white);
  position: relative;
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-container {
  overflow: hidden;
  position: relative;
  min-height: 280px; /* Reduced height since we removed images */
}

.testimonial {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  max-width: 800px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  background-color: var(--bg-light);
  border-top: 5px solid var(--primary-color);
  text-align: center;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-stars {
  margin-bottom: 1.25rem;
  color: var(--star-color);
  font-size: 1.25rem;
}

.testimonial-stars i {
  margin: 0 2px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.client-info {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.client-info h4, .client-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.client-description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.client-location {
  font-size: 0.875rem;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
}

.client-location:before {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--secondary-color);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.prev-btn,
.next-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.dots {
  display: flex;
  margin: 0 1rem;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Contact Section Styles */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  position: relative;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background-color: var(--text-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.contact-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--primary-color);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--text-white);
  font-size: 1.75rem;
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-card a {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary-dark);
}

.social-media {
  text-align: center;
  margin-top: 3rem;
}

.social-media h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-5px);
}

/* Footer Styles */
footer {
  background-color: #ffffff;
  color: ##1f2937;
  text-align: center;
  padding: 2rem 0;
}


/* Flags Styles */
.flags-section {
  background-color: #DA9E3B;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.flags-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.flags-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.flags {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.flags img {
  width: 60px;
  height: auto;
}

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}



/* Responsive Styles */
@media (max-width: 992px) {
  .title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.25rem;
  }

  .contact-cards {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .banner {
    padding: 150px 20px 100px;
  }

  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .testimonial-container {
    min-height: 320px;
  }

  .testimonial {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .banner {
    padding: 130px 15px 80px;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .banner-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .testimonial-container {
    min-height: 380px;
  }

  .testimonial {
    padding: 1.5rem;
  }
}
