@font-face {
  font-family: "Thunder";
  src: url("/fonts/Web-TT/Thunder-LightLC.woff") format("woff"),
    url("/fonts/Web-TT/Thunder-LightHC.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}

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

:root {
  --primary-color: #ede2cd;
  --secondary-color: #f7f9f6;
  --tersiary-color: #c6b186;
  --text-color: #2f2f2f;
  --text-color-light: #605f5c;
  --button-color: #5f3f1c;
  --white: #ffffff;
}

body {
  /* font-family: "Georgia", serif; */
  min-height: 100vh;
  background-color: white;
  max-width: 100vw;
}

.hero1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("bg.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 85vh; /* Reduced from 100vh */
  height: 85vh;
  font-family: "Georgia", serif;
  position: relative;
}

.hero1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(95, 63, 28, 0.1),
    rgba(47, 47, 47, 0.1)
  );
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 85vh; /* Reduced from 100vh */
  padding: 2rem; /* Reduced padding */
}

.hero-content {
  max-width: 520px; /* Reduced from 600px */
  text-align: left;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 2rem 1.8rem; /* Reduced padding */
  border-radius: 16px; /* Slightly smaller radius */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Reduced shadow */
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 1.5rem; /* Reduced margin */
}

.hero-badge {
  display: inline-block;
  background: var(--button-color);
  color: white;
  padding: 0.4rem 1.2rem; /* Reduced padding */
  border-radius: 50px;
  font-size: 0.8rem; /* Smaller font */
  font-weight: 500;
  margin-bottom: 1rem; /* Reduced margin */
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.8rem); /* Reduced size */
  font-weight: 400;
  color: white;
  margin-bottom: 1rem; /* Reduced margin */
  line-height: 1.2;
  letter-spacing: -1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem); /* Reduced size */
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem; /* Reduced margin */
  line-height: 1.5; /* Reduced line height */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-features {
  display: flex;
  justify-content: flex-start;
  gap: 0.6rem; /* Reduced gap */
  margin-bottom: 1.5rem; /* Reduced margin */
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.4rem 0.8rem; /* Reduced padding */
  border-radius: 20px; /* Smaller radius */
  font-size: 0.8rem; /* Smaller font */
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--button-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-width: 150px;
}

.btn-primary:hover {
  background: #4a2f15;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(95, 63, 28, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-width: 150px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.section2 {
  display: flex;
  align-items: center;
  padding: 3rem 2rem; /* Removed min-height and reduced padding */
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  gap: 2.5rem; /* Reduced gap */
}

.section2_1 {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-frame {
  position: relative;
  width: 320px; /* Reduced from 400px */
  height: 400px; /* Reduced from 500px */
  border-radius: 16px; /* Slightly smaller radius */
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); /* Reduced shadow */
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.image-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(
    135deg,
    var(--button-color),
    var(--tersiary-color)
  );
  border-radius: 25px;
  z-index: -1;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.floating-badge {
  position: absolute;
  top: -15px; /* Reduced from -20px */
  right: -15px; /* Reduced from -20px */
  background: white;
  padding: 1rem; /* Reduced from 1.5rem */
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Reduced shadow */
  text-align: center;
  min-width: 65px; /* Reduced from 80px */
  min-height: 65px; /* Reduced from 80px */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.badge-text {
  font-size: 1rem; /* Reduced from 1.2rem */
  font-weight: 700;
  color: var(--button-color);
  line-height: 1;
}

.badge-subtext {
  font-size: 0.8rem;
  color: var(--text-color-light);
  margin-top: 0.2rem;
}

.section2_2 {
  flex: 1;
  max-width: 600px;
  padding-left: 2rem;
}

.section-badge {
  display: inline-block;
  background: var(--button-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.section2_2 h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-family: "Georgia", serif;
}

.section2_2 p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color-light);
  margin-bottom: 2.5rem;
  font-family: "Georgia", serif;
}

.features-list {
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-family: "Georgia", serif;
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--text-color-light);
  line-height: 1.5;
  margin: 0;
}

.button-container {
  display: flex;
}

#section2-btn {
  background: var(--button-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: "Georgia", serif;
  min-width: 200px;
}

#section2-btn:hover {
  background: #4a2f15;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(95, 63, 28, 0.3);
}

/* Contact Us Page Styles */
.contact-nav {
  z-index: 100;
  position: fixed;
  top: 0px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4vw 1.5vw;
  gap: 1vw;
}

.contact-nav ul {
  list-style: none;
  display: flex;
  gap: 2vw;
}

.contact-nav ul a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.contact-nav ul a:hover,
.contact-nav ul a.active {
  color: #d4a574;
}

.hamburger-menu {
  display: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.contact-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background: #121212;
}

.contact-left-panel {
  width: 70%;
  min-height: 100vh;
  background: #121212;
  padding: 8% 4% 4% 8%;
  display: flex;
  flex-direction: column;
}

.contact-right-panel {
  display: none;
  width: 30%;
  background: #1a1a1a;
  padding: 8% 4%;
  flex-direction: column;
}

.contact-heading {
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-tagline {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 3rem;
  max-width: 500px;
  line-height: 1.5;
}

.contact-form-large {
  width: 100%;
  max-width: 600px;
  margin-bottom: 3rem;
}

.contact-form-small {
  width: 100%;
}

.form-field {
  margin-bottom: 1.5rem;
  width: 100%;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: "Georgia", serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom: 1px solid #d4a574;
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.send-button {
  background-color: rgba(212, 165, 116, 0.9);
  color: #fff;
  border: none;
  padding: 0.9rem 3rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  margin-top: 1rem;
}

.send-button:hover {
  background-color: rgba(212, 165, 116, 1);
}

.contact-info {
  margin-top: auto;
  display: flex;
  gap: 3rem;
}

.contact-info-mobile {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-block h3 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-info-block p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.social-links {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
}

.social-links-mobile {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.social-icon {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  border-color: #d4a574;
  background: rgba(212, 165, 116, 0.1);
}

@media (max-width: 1024px) {
  .hero-content {
    max-width: 450px; /* Reduced from 500px */
    padding: 1.8rem 1.5rem; /* Reduced padding */
    margin-left: 0.8rem; /* Reduced margin */
  }

  .section2 {
    padding: 2rem 1.5rem; /* Increased from 1.5rem for proper spacing */
    gap: 2rem; /* Increased from 1.5rem */
  }

  .section2_1 {
    flex: 0 0 40%;
  }

  .image-frame {
    width: 280px; /* Reduced */
    height: 350px; /* Reduced */
  }

  .section2_2 h2 {
    font-size: 2rem; /* Reduced from 2.2rem */
  }

  .carousel-container {
    height: 45vh; /* Reduced height */
  }

  .reviews-section {
    padding: 40px 15px; /* Reduced padding */
  }
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    padding: 0 1rem;
  }

  .hero-content {
    max-width: 90%;
    margin-left: 0;
    padding: 1.5rem 1.2rem; /* Reduced padding */
    text-align: center;
  }

  .hero-features {
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .section2 {
    flex-direction: column;
    padding: 2rem 1rem; /* Increased vertical padding */
    gap: 1.5rem; /* Increased gap */
    min-height: auto;
  }

  .section2_1 {
    flex: none;
    width: 100%;
    margin-bottom: 1rem;
  }

  .image-frame {
    width: 250px; /* Reduced for mobile */
    height: 300px; /* Reduced for mobile */
  }

  .section2_2 {
    flex: none;
    width: 100%;
    max-width: none;
    padding-left: 0;
    text-align: left;
  }

  .section2_2 h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .section2_2 p {
    margin-bottom: 1.5rem;
  }

  .box,
  .box2,
  .box3 {
    width: 80%;
    margin: 2vw auto;
    text-align: center;
  }

  nav {
    padding: 1rem;
  }

  nav ul {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    max-width: 95%;
    padding: 1.5rem 1rem;
  }

  .hero-features {
    gap: 0.5rem;
  }

  .feature-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: 120px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .section2 {
    padding: 1.5rem 0.8rem; /* Increased padding for better spacing */
  }

  .image-frame {
    width: 220px; /* Further reduced for mobile */
    height: 280px; /* Further reduced for mobile */
  }
  .section2_2 h2 {
    font-size: 1.5rem;
  }

  .section2_2 p {
    font-size: 0.9rem;
  }

  #section2-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .box,
  .box2,
  .box3 {
    width: 90%;
    padding: 1rem;
  }

  button {
    padding: 0.8rem 1.5rem;
    margin-right: 0.5rem;
  }
}

.carousel-section {
  position: relative;
  background: var(--white);
  padding: 3rem 0; /* Reduced from 5rem */
  overflow: hidden;
}

.carousel-header {
  text-align: center;
  margin-bottom: 2rem; /* Reduced from 3rem */
  padding: 0 2rem;
}

.carousel-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem); /* Reduced font size */
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 0.8rem; /* Reduced margin */
  font-family: "Georgia", serif;
}

.carousel-header p {
  font-size: 1.1rem; /* Reduced from 1.2rem */
  color: var(--text-color-light);
  max-width: 500px; /* Reduced from 600px */
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 55vh; /* Reduced from 70vh */
  max-width: 1000px; /* Reduced from 1200px */
  margin: 0 auto;
  border-radius: 16px; /* Reduced from 20px */
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Reduced shadow */
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: flex-end;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 3rem;
  max-width: 500px;
}

.slide-category {
  display: inline-block;
  background: var(--button-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.slide-content h3 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  font-family: "Georgia", serif;
}

.slide-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 0 2rem;
}

.carousel-btn {
  background: var(--primary-color);
  border: 2px solid var(--button-color);
  color: var(--button-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--button-color);
  color: white;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--tersiary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--button-color);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--button-color);
  transform: scale(1.1);
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--button-color),
    var(--tersiary-color)
  );
  transition: width 0.3s ease;
  width: 0%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-overlay {
    width: 350px;
    height: 280px;
  }

  .details-content {
    padding: 25px;
  }

  .details-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .content-overlay {
    position: relative;
    width: 100%;
    height: auto;
    bottom: auto;
    right: auto;
  }

  .carousel-section {
    height: auto;
    padding: 2rem 1rem; /* Added specific padding */
  }

  .carousel-container {
    position: relative;
    height: 40vh; /* Reduced from 60vh */
    min-height: 300px; /* Reduced from 400px */
  }

  .nav-controls {
    height: 50px;
  }

  .nav-btn {
    font-size: 12px;
  }

  .details-content {
    padding: 20px;
  }

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

  .details-text {
    font-size: 13px;
  }

  .arrow-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .arrow-prev {
    left: 10px;
  }

  .arrow-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    height: 50vh;
    min-height: 300px;
  }

  .nav-controls {
    flex-direction: column;
    height: auto;
  }

  .nav-btn {
    height: 40px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .nav-btn:last-child {
    border-bottom: none;
  }

  .details-content {
    padding: 15px;
  }

  .details-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .details-text {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.reviews-section {
  background: var(--white);
  padding: 50px 20px; /* Reduced from 80px and removed min-height */
}

.container {
  max-width: 1000px; /* Reduced from 1200px */
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px; /* Reduced from 60px */
}

.section-title {
  font-size: 2.8rem; /* Reduced from 3.5rem */
  font-weight: 600;
  margin-bottom: 15px; /* Reduced from 20px */
  color: var(--text-color);
  letter-spacing: -0.5px;
  font-family: "Thunder", sans-serif;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-color-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Reduced from 25px */
  margin-bottom: 30px; /* Reduced from 40px */
}

.review-card {
  background: var(--secondary-color);
  border-radius: 10px; /* Reduced from 12px */
  padding: 20px; /* Reduced from 30px */
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--button-color), #ffed4e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-card:hover::before {
  opacity: 1;
}

.star-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 5px;
}

.star {
  color: var(--button-color);
  font-size: 18px;
}

.rating-number {
  color: var(--button-color);
  font-weight: 600;
  margin-left: 8px;
  font-size: 14px;
}

.review-text {
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a4a4a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: white;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-color);
  font-size: 15px;
  margin-bottom: 2px;
}

.reviewer-title {
  font-size: 13px;
  color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .reviews-section {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .review-card {
    padding: 18px; /* Reduced from 25px */
  }

  .reviews-section {
    padding: 35px 15px; /* Reduced from 50px */
  }

  .section-header {
    margin-bottom: 25px; /* Reduced from 40px */
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .review-card {
    padding: 20px;
  }

  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .review-text {
    font-size: 14px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card {
  animation: fadeInUp 0.6s ease forwards;
}

.review-card:nth-child(1) {
  animation-delay: 0.1s;
}
.review-card:nth-child(2) {
  animation-delay: 0.2s;
}
.review-card:nth-child(3) {
  animation-delay: 0.3s;
}
.review-card:nth-child(4) {
  animation-delay: 0.4s;
}
.review-card:nth-child(5) {
  animation-delay: 0.5s;
}
.review-card:nth-child(6) {
  animation-delay: 0.6s;
}
.review-card:nth-child(7) {
  animation-delay: 0.7s;
}
.review-card:nth-child(8) {
  animation-delay: 0.8s;
}
.review-card:nth-child(9) {
  animation-delay: 0.9s;
}
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

.faq-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 2rem 0; /* Further reduced from 3rem */
}

.faq-container {
  max-width: 700px; /* Further reduced from 800px */
  margin: 0 auto;
  padding: 0 1.5rem; /* Reduced padding */
}

.faq-header {
  text-align: center;
  margin-bottom: 1.5rem; /* Further reduced from 2rem */
}

.faq-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); /* Reduced font size */
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 0.6rem; /* Reduced margin */
  font-family: "Georgia", serif;
}

.faq-subtitle {
  font-size: 1rem; /* Reduced from 1.2rem */
  color: var(--text-color-light);
  max-width: 500px; /* Reduced from 600px */
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem; /* Reduced from 1rem */
}

.faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem; /* Reduced from 1.3rem */
  color: var(--text-color);
  padding: 1rem 1.5rem; /* Reduced from 1.5rem 2rem */
  background: white;
  border-radius: 10px; /* Reduced from 12px */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05); /* Reduced shadow */
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-row:hover {
  transform: translateY(-1px); /* Reduced hover effect */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* Reduced shadow */
}
.faq-q {
  flex: 1;
  text-align: left;
  font-family: inherit;
}
.faq-plus {
  color: #e0c48a;
  font-size: 2.2rem;
  font-weight: 400;
  margin-left: 1.5vw;
  user-select: none;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  background: none;
  color: #7a8a8a;
  font-size: 1.1rem;
  padding: 0 3vw;
  border-bottom: 2px solid #e0c48a;
}
.faq-answer.open {
  max-height: 200px;
  opacity: 1;
  padding: 1rem 3vw 1.2rem 3vw;
  background: #f9f6ed;
}
@media (max-width: 900px) {
  .faq-title {
    font-size: 2rem;
    padding-left: 2vw;
  }
  .faq-row {
    font-size: 1.2rem;
    padding: 0.5rem 2vw 0.5rem 2vw;
  }
  .faq-answer,
  .faq-answer.open {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media (max-width: 600px) {
  .faq-title {
    font-size: 1.3rem;
    padding-left: 1vw;
  }
  .faq-row {
    font-size: 1rem;
    padding: 0.5rem 1vw 0.5rem 1vw;
  }
  .faq-title-line {
    width: 60px;
  }
  .faq-answer,
  .faq-answer.open {
    padding-left: 1vw;
    padding-right: 1vw;
    font-size: 0.98rem;
  }
}

.contact-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  padding: 2rem 0; /* Further reduced from 3rem */
}

.contact-container {
  max-width: 900px; /* Further reduced from 1000px */
  margin: 0 auto;
  padding: 0 1.5rem; /* Reduced padding */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem; /* Further reduced from 3rem */
  align-items: start;
}

.contact-left {
  padding-right: 2rem;
}

.contact-badge {
  display: inline-block;
  background: var(--button-color);
  color: white;
  padding: 0.4rem 1.2rem; /* Reduced padding */
  border-radius: 50px;
  font-size: 0.8rem; /* Reduced font size */
  font-weight: 500;
  margin-bottom: 1rem; /* Reduced margin */
  letter-spacing: 0.5px;
}

.contact-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); /* Reduced font size */
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 1rem; /* Reduced margin */
  font-family: "Georgia", serif;
}

.contact-desc {
  font-size: 1rem; /* Reduced from 1.1rem */
  color: var(--text-color-light);
  line-height: 1.6; /* Reduced line height */
  margin-bottom: 1.5rem; /* Reduced margin */
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Reduced from 1.5rem */
}

.contact-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-feature-icon {
  font-size: 1.6rem; /* Reduced from 2rem */
  width: 40px; /* Reduced from 50px */
  height: 40px; /* Reduced from 50px */
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); /* Reduced shadow */
}

.contact-feature-text h4 {
  font-size: 1rem; /* Reduced from 1.2rem */
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.3rem; /* Reduced margin */
  font-family: "Georgia", serif;
}

.contact-feature-text p {
  font-size: 0.9rem; /* Reduced from 0.95rem */
  color: var(--text-color-light);
  line-height: 1.4; /* Reduced line height */
  margin: 0;
}

.contact-form {
  background: white;
  padding: 1.8rem; /* Reduced from 2.5rem */
  border-radius: 16px; /* Reduced from 20px */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #f8f9fa;
  font-size: 1rem;
  color: var(--text-color);
  outline: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--button-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(95, 63, 28, 0.1);
}

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

.contact-form button {
  background: var(--button-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  align-self: flex-end;
  min-width: 180px;
}

.contact-form button:hover {
  background: #4a2f15;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(95, 63, 28, 0.3);
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 2vw;
  }
  .contact-left {
    padding-left: 0;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 600px) {
  .contact-section {
    padding: 2vw 0 2vw 0;
  }
  .contact-heading {
    font-size: 1.2rem;
  }
  .contact-desc {
    font-size: 0.98rem;
  }
}

/* Additional contact page styles */
.contact-nav ul.show-mobile-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem 0;
  text-align: center;
}

.contact-nav ul.show-mobile-menu li {
  margin: 0.8rem 0;
}

/* Specific adjustments to match the image */
.contact-right-panel {
  background: #1a1a1a;
}

.contact-left-panel {
  background: #121212;
}

/* Full width send button for mobile */
@media (max-width: 768px) {
  .send-button {
    width: 100%;
    margin-top: 1.5rem;
  }

  .contact-info-mobile {
    margin-top: 2.5rem;
  }
}

/* Properly align icons for both desktop and mobile */
@media (min-width: 769px) {
  .social-links {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .social-links-mobile {
    justify-content: center;
    margin-top: 2.5rem;
  }

  .contact-info-block {
    text-align: center;
  }
}

/* Additional mobile optimizations for better spacing and screen fit */
@media (max-width: 480px) {
  .carousel-section {
    padding: 1.5rem 0.8rem;
  }

  .carousel-header h2 {
    font-size: 1.4rem;
  }

  .carousel-header p {
    font-size: 0.95rem;
  }

  .floating-badge {
    min-width: 55px;
    min-height: 55px;
    padding: 0.8rem;
  }

  .badge-text {
    font-size: 0.9rem;
  }

  .faq-section,
  .contact-section {
    padding: 2rem 0;
  }
}

/* Ensure sections don't overflow on very small screens */
@media (max-width: 360px) {
  body {
    padding-top: 70px;
  }

  .hero1 {
    margin-top: -70px;
    height: 80vh;
    min-height: 80vh;
  }

  .hero-content {
    padding: 1.2rem 0.8rem;
    max-width: 98%;
  }

  .image-frame {
    width: 200px;
    height: 250px;
  }

  .carousel-container {
    height: 30vh;
    min-height: 220px;
  }

  .reviews-section {
    padding: 25px 10px;
  }
}

/* Mobile Responsive Fixes */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 450px;
    padding: 1.8rem 1.5rem;
    margin-left: 0.8rem;
  }

  .section2 {
    padding: 4rem 2rem; /* Increased vertical padding */
    gap: 3rem; /* Increased gap between elements */
  }

  .section2_1 {
    flex: 0 0 40%;
  }

  .image-frame {
    width: 280px;
    height: 350px;
  }

  .section2_2 h2 {
    font-size: 2rem;
  }

  .carousel-container {
    height: 45vh;
  }

  .carousel-section {
    padding: 4rem 2rem; /* Increased section padding */
  }

  .faq-section,
  .contact-section {
    padding: 4rem 0; /* Increased section padding */
  }

  .client-list-section {
    padding: 4rem 0; /* Add proper spacing for client list */
  }
}

@media (max-width: 768px) {
  .hero1 {
    min-height: 70vh; /* Reduce hero height on mobile */
    height: 70vh;
    margin-bottom: 2rem; /* Add space after hero */
  }

  .hero {
    justify-content: center;
    padding: 1rem;
    min-height: 70vh;
  }

  .hero-content {
    max-width: 90%;
    margin-left: 0;
    padding: 2rem 1.5rem; /* Increased padding */
    text-align: center;
  }

  .hero-features {
    justify-content: center;
    margin-bottom: 2rem; /* Increased margin */
  }

  .hero-buttons {
    justify-content: center;
    gap: 1.5rem; /* Increased gap */
  }

  .section2 {
    flex-direction: column;
    padding: 4rem 1.5rem; /* Increased padding */
    gap: 3rem; /* Increased gap */
    min-height: auto;
  }

  .section2_1 {
    flex: none;
    width: 100%;
    margin-bottom: 2rem; /* Increased margin */
  }

  .image-frame {
    width: 280px;
    height: 350px;
  }

  .section2_2 {
    flex: none;
    width: 100%;
    max-width: none;
    padding-left: 0;
    text-align: left;
  }

  .section2_2 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem; /* Increased margin */
  }

  .section2_2 p {
    margin-bottom: 2rem; /* Increased margin */
  }

  .features-list {
    margin-bottom: 3rem; /* Increased margin */
  }

  .carousel-section {
    padding: 4rem 1rem; /* Increased padding */
  }

  .carousel-container {
    height: 40vh;
    min-height: 350px; /* Increased minimum height */
  }

  .slide-content {
    padding: 2rem; /* Adjusted padding */
  }

  .slide-content h3 {
    font-size: 2rem; /* Adjusted font size */
  }

  /* Services Section Responsive */
  .services-section {
    padding: 4rem 1rem; /* Increased padding */
  }

  .services-grid {
    gap: 2rem; /* Increased gap */
    margin-bottom: 3rem; /* Increased margin */
  }

  .service-card {
    padding: 2rem 1.5rem; /* Increased padding */
  }

  /* Client List Section Responsive */
  .client-list-section {
    padding: 4rem 1rem; /* Increased padding */
  }

  .client-list {
    padding: 2.5rem 1.5rem; /* Increased padding */
  }

  .client-list li {
    padding: 1rem 0; /* Increased padding */
    font-size: 1rem; /* Adjusted font size */
  }

  /* FAQ Section Responsive */
  .faq-section {
    padding: 4rem 1rem; /* Increased padding */
  }

  .faq-container {
    padding: 0 1rem; /* Adjusted padding */
  }

  .faq-header {
    margin-bottom: 2.5rem; /* Increased margin */
  }

  .faq-list {
    gap: 0.5rem; /* Increased gap */
  }

  .faq-row {
    padding: 1.2rem 1.5rem; /* Increased padding */
    font-size: 1rem;
  }

  /* Contact Section Responsive */
  .contact-section {
    padding: 4rem 1rem; /* Increased padding */
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem; /* Increased gap */
    padding: 0 1rem;
  }

  .contact-left {
    padding-right: 0;
    margin-bottom: 2rem; /* Added margin */
  }

  .contact-form {
    padding: 2rem; /* Increased padding */
  }

  .form-row {
    flex-direction: column;
    gap: 1.5rem; /* Increased gap */
  }
}

@media (max-width: 480px) {
  .hero1 {
    min-height: 60vh; /* Further reduce hero height */
    height: 89vh;
    margin-bottom: 2rem;
  }

  .hero {
    min-height: 60vh;
    padding: 0.5rem;
  }

  .hero-content {
    max-width: 95%;
    padding: 1.5rem 1rem;
  }

  .hero-title {
    font-size: 1.8rem; /* Reduced font size */
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    margin: 0;
    border-radius: 2rem;
    font-size: 1rem;
  }

  .feature-tag {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    width: 45%;
  }

  .btn-primary,
  .btn-secondary {
    width: 95%;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .section2 {
    padding: 3rem 1rem; /* Adjusted padding */
    gap: 2.5rem;
  }

  .image-frame {
    width: 250px;
    height: 300px;
  }

  .floating-badge {
    min-width: 60px;
    min-height: 60px;
    top: -10px;
    right: -10px;
  }

  .badge-text {
    font-size: 0.9rem;
  }

  .section2_2 h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .section2_2 p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .feature-item {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  /* Carousel adjustments */
  .carousel-section {
    padding: 3rem 0.5rem;
  }

  .carousel-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .carousel-header p {
    font-size: 0.95rem;
  }

  .carousel-container {
    height: 35vh;
    min-height: 280px;
  }

  .slide-content {
    padding: 1.5rem;
  }

  .slide-content h3 {
    font-size: 1.6rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  /* Services Section */
  .services-section {
    padding: 3rem 0.5rem;
  }

  .services-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .service-card {
    padding: 2rem 1rem;
  }

  .service-heading {
    font-size: 1.3rem;
  }

  .service-desc {
    font-size: 1rem;
  }

  /* Client List Section */
  .client-list-section {
    padding: 3rem 0.5rem;
  }

  .client-list-header h2 {
    font-size: 1.8rem;
  }

  .client-list {
    padding: 2rem 1rem;
  }

  .client-list li {
    padding: 0.8rem 0;
    font-size: 0.9rem;
    flex-direction: column;
    text-align: center;
  }

  .client-list li span {
    float: none !important;
    display: block;
    margin-top: 0.3rem;
  }

  /* FAQ Section */
  .faq-section {
    padding: 3rem 0.5rem;
  }

  .faq-title {
    font-size: 1.6rem;
  }

  .faq-subtitle {
    font-size: 0.9rem;
  }

  .faq-row {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-plus {
    font-size: 1.8rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  /* Contact Section */
  .contact-section {
    padding: 3rem 0.5rem;
  }

  .contact-heading {
    font-size: 1.6rem;
  }

  .contact-desc {
    font-size: 0.9rem;
  }

  .contact-feature-icon {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }

  .contact-feature-text h4 {
    font-size: 0.95rem;
  }

  .contact-feature-text p {
    font-size: 0.85rem;
  }

  .contact-form {
    padding: 1.5rem;
    gap: 1.2rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .contact-form button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    min-width: 150px;
    align-self: stretch;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  body {
    padding-top: 50px;
  }

  .hero1 {
    height: 90vh;
    margin-bottom: 1.5rem;
  }

  .hero {
    height: 90vh;
  }

  .hero-content {
    padding: 1rem 0.8rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section2 {
    padding: 2rem 0.5rem;
    gap: 2rem;
  }

  .image-frame {
    width: 200px;
    height: 250px;
  }

  .carousel-container {
    height: 30vh;
    min-height: 220px;
  }

  .services-section,
  .client-list-section,
  .faq-section,
  .contact-section {
    padding: 2rem 0.3rem;
  }

  .client-list li {
    font-size: 0.8rem;
    padding: 0.6rem 0;
  }
}

/* Prevent horizontal overflow */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

* {
  box-sizing: border-box;
}

/* Ensure proper spacing between all sections */
.hero1 + .section2 {
  margin-top: 0;
}

.section2 + .carousel-section {
  margin-top: 0;
}

.carousel-section + .services-section {
  margin-top: 0;
}

.services-section + .client-list-section {
  margin-top: 0;
}

.client-list-section + .faq-section {
  margin-top: 0;
}

.faq-section + .contact-section {
  margin-top: 0;
}
