/* --- GLOBAL RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --button-color: #c5a47e;
  --hover-color: #a8845c;
}

/* h1, h2 {
  font-family: 'Playfair Display', serif;
}

h3, h4 {
  font-family: 'Cormorant Garamond', serif;
}

body, p {
  font-family: 'Montserrat', sans-serif;
} */

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

html,
body {
  width: 100%;
  overflow-x: hidden;
  /* background-color: var(--dark-bg); */
}

/* --- HEADER & NAV DESKTOP --- */
nav {
  width: 100%;
  min-height: 90px;
  /* background: linear-gradient(to right, #e9e4f0, #d3cce3); */
  background: linear-gradient(to right, #eaeaea, #dbdbdb, #f2f2f2, #ada996);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0px 20px;
  font-family: "Montserrat", sans-serif;
}

.logo {
  height: 150px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#check {
  display: none;
}

.CheckBtn {
  display: none;
  cursor: pointer;
  font-size: 30px;
  color: var(--button-color);
}

/* NAV LINKS */
.list {
  display: flex;
  align-items: center;
  list-style: none;
}

.list li {
  margin: 0 20px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.list li:hover {
  transform: translateY(-5px);
}

.list li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #795f42;
  transition: color 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1.5px;
  font-weight: bold;
  text-transform: uppercase;
}

.list li a:hover {
  color: #C5A47E;
  border-bottom: 1px solid #795f42;
}

/* <!-- ---HOME SECTION--- --> */

#h-container {
  width: 100%;
  min-height: 80vh;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0.1) 55%),
    url('./Imgs/home-img.webp') center center / cover no-repeat;
  padding: 20px 8%;
}

.h-content {
  margin-top: 10%;
  max-width: 620px;
  color: mintcream;
  font-family: 'Cormorant Garamond', serif;
}

.h-content h1 {
  font-size: 20px;
  letter-spacing: 1.5px;
  color: var(--button-color);
}

.h-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.h-content p {
  margin-bottom: 35px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

/* Button */
.button-5 {
  align-items: center;
  background-clip: padding-box;
  background: var(--button-color);
  border: 1px solid transparent;
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui, -apple-system, system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-5:hover,
.button-5:focus {
  background: #a8845c;
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
}

.button-5:hover {
  transform: translateY(-1px);
}

/* --- ABOUT-US SECTION --- */

#about-section {
  padding: 50px 5%;
  background: #f5f2ef;
}

#about-section h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 35px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 800;
}

.about-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Image */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* Content */
.about-content {
  position: relative;
  left: -60px;
  flex: 1;
  background: #eae4df;
  padding: 50px;
  border-radius: 6px;
}

.about-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

/* Button */
.about-btn {
  margin-top: 20px;
  padding: 12px 28px;
  border: none;
  background: #c5a47e;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  background: #a8845c;
}

/* --- OUR-SERVICES SECTION --- */

#services-section {
  padding: 60px 6%;
  background: #f8f5f2;
  text-align: center;
  /* border: 2px solid peru; */
}

.section-title {
  font-size: 35px;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 800;
}

.section-para {
  font-size: 16px;
  color: var(--hover-color);
  margin-bottom: 50px;
}

/* Grid Layout */
.services-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  /* border: 2px solid purple; */
}

/* Card */
.service-card {
  text-align: center;
  transition: 0.3s ease;
  cursor: pointer;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  /* border: 2px solid red; */
}

/* Circle Image */
.service-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #eae4df;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  /* border: 2px solid blue; */
}

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

.service-card:hover .service-img {
  transform: scale(1.05);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

/* Title */
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #444;
  margin-bottom: 15px;
}

.service-card p {
  color: #000;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.section-footer {
  margin-top: 50px;
  font-size: 20px;
  color: var(--hover-color);
  font-family: 'Cormorant Garamond', serif;
}

/* <!-- ---F A Q SECTION--- --> */

#faq {
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
  background: #f8f5f2;
  /* border: 2px solid darkred; */
}

/* Main Container */
.faq-container {
  max-width: 1200px;
  margin: 10px auto;
  padding: 20px;
  /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
  /* border: 2px solid blue; */
}

/* Header Styling */
.faq-header {
  text-align: center;
  margin-bottom: 40px;
  background-color: transparent;
}

.faq-header .main-title-faq {
  font-size: 35px;
  font-weight: 800;
  font-family: 'Cormorant Garamond', serif;
  color: #000;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.subtitle-faq {
  color: var(--button-color);
  font-size: 16px;
  margin-top: 5px;
}

/* Content Wrapper (Two-Column Layout) */
.content-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  /* border: 2px solid green; */
}

/* FAQ List Styling (Left Column) */
.faq-list {
  height: 570px;
  flex: 2;
  min-width: 0;
  /* border: 2px solid red; */
}

.faq-item {
  background: #eae4df;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  font-family: 'Montserrat', sans-serif;
  /* border: 2px solid red; */
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 500;
  color: black;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #f7fafc;
}

.toggle-icon {
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

/* Creating the 'plus' icon using CSS */
.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  background-color: var(--button-color);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.toggle-icon::before {
  width: 2px;
  height: 16px;
}

.toggle-icon::after {
  width: 16px;
  height: 2px;
}

/* Icon state when open */
.faq-item.active .toggle-icon {
  transform: rotate(45deg);
}

.faq-item.active .toggle-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .toggle-icon::after {
  width: 16px;
}

/* FAQ Answer Styling */
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  background-color: #f5f2ef;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 20px 20px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #718096;
  border-top: 1px solid #edf2f7;
  padding-top: 15px;
}

/* Right Column: Contact Card Styling */
.contact-card {
  flex: 1;
  color: #000;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  text-align: center;
  background: #eae4df;
  /* border: 2px solid greenyellow; */
}

.contact-card img {
  height: 250px;
  margin-bottom: 20px;

  /* border: 1px solid green; */
}

.contact-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
}

/* <!-- ---WHY CHOOSE US SECTION--- --> */

.why-section {
  padding: 70px 8%;
  /* background: #f9f6f3; */
  background: #eae4df;
  /* border: 2px solid red; */
}

.why-title {
  font-size: clamp(50px, 10vw, 140px);
  font-weight: bolder;
  margin-bottom: 60px;
  font-family: 'Cormorant Garamond', serif;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.why-card {
  cursor: pointer;
  border-left: 2px solid #e0dcd8;
  padding-left: 15px;
  transition: 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/* ICON STYLE */
.why-card i {
  font-size: 28px;
  color: #c5a47e;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.4s ease;
}

/* Hover Animation */
.why-card:hover i {
  transform: scale(1.2) rotate(8deg);
  color: #a8845c;
}

.why-card:hover {
  transform: translateY(-8px);
}

/* Text */
.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* <!-- ---TESTIMONIAL SECTION--- --> */

.testimonial-section {
  padding: 100px 8%;
  background: #f8f5f2;
}

.testimonial-container {
  display: flex;
  align-items: center;
  gap: 60px;
  /* border: 2px solid red; */
}

/* LEFT */
.testimonial-left {
  flex: 1;
  /* border: 2px solid green; */
}

.testimonial-left h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-weight:900;
  /* border: 2px solid red; */
}

.testimonial-left p {
  margin-bottom: 25px;
  color: #666;
  line-height: 1.6;
  /* border: 2px solid green; */
}

/* IMAGE */
.testimonial-img {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.testimonial-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
}

.testimonial-img img:hover {
  transform: translateY(-8px);
}

/* RIGHT */
.testimonial-right {
  flex: 1;
  height: 420px;
  touch-action: pan-y;
  overflow: hidden;
}

/* IMPORTANT */
.testimonialSwiper {
  height: 100%;
  padding: 20px 0;
}

.swiper-slide {
  opacity: 0.3;
  transform: scale(0.85);
  transition: all 0.4s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.6;
  transform: scale(0.92);
}

/* CARD */
.testimonial-card {
  display: flex;
  gap: 15px;
  align-items: center;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.swiper-slide-active .testimonial-card {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.swiper-slide-active .testimonial-card:hover {
  transform: scale(1.03);
}

.testimonial-card img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-card h4 {
  margin-bottom: 5px;
}

.testimonial-card p {
  font-size: 13px;
  color: #555;
}