/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Poppins:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  /* background: linear-gradient(135deg, #f9fafb, #eef2f7); */
  background: #fff;
  color: #333;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Baskervville", serif;
  color: #1d4632;
  line-height: 1.3;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Buttons */
button,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

button,
.btn-primary,
.btn-secondary {
  background-color: #1d4632; /* secondary */
  color: #ffffff; /* white text */
}

button:hover,
.btn-primary:hover,
.btn-secondary:hover {
  background-color: #714929; /* primary on hover */
}

/* Utility Classes */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
/* Sticky Navbar */
/* Transparent header by default */
.site-header {
  position: fixed;
  top: 0;
  padding-top: 30px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.9s ease, box-shadow 0.5s ease;
}

/* Scrolled state */
.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding-top: 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

/* Logo */
.logo img {
  max-height: 50px;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* Default nav link style */
.main-nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s, background-color 0.3s;
}

/* On scroll, change link color */
.main-nav ul li a.scrolled {
  color: #000000;
}

.main-nav ul li a:hover {
  color: #1d4632;
}

/* Mobile Menu */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: #fff;
  margin-right: 20px;
}

/* Hamburger → X Animation */
.menu-toggle.active {
  transform: rotate(90deg);
}

/* Mobile Menu Hidden by Default */
.main-nav {
  display: flex;
}

@media (max-width: 768px) {
  .logo {
    margin-left: 20px;
  }
  .main-nav {
    display: block;
    position: absolute;
    top: 70px; /* below header */
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

    max-height: 0; /* hidden */
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
  .main-nav ul li a {
    color: #000;
  }

  .main-nav.active {
    max-height: 400px; /* expand height */
    opacity: 1;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== HERO SECTION ===== */
/* ===== HERO BASE ===== */
.hero,
.pkg-hero {
  position: relative;
  width: calc(100% - 40px); /* 20px left + 20px right */
  height: calc(100vh - 40px); /* 20px top + bottom */
  margin: 20px; /* outer space (white background visible) */
  overflow: hidden;
  color: #ffffff;
  border-radius: 16px; /* smooth rounded corners */
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25); /* optional soft shadow */
}

/* ===== BACKGROUND SLIDES (Ken Burns) ===== */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.2s ease, transform 7s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.08); /* slow zoom */
  z-index: 0;
}

/* ===== OVERLAY ===== */
/* slight dark overlay to improve legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.6) 25%,
    rgba(0, 0, 0, 0.6) 75%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

/* ===== CONTENT WRAPPER ===== */
.hero-content {
  position: relative; /* so inner elements are above overlay */
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* default mobile center */
  justify-content: center;
  text-align: center;
}

/* GLASS BADGE */
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.034);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(#ffffff);
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}

/* HERO TITLE */
.hero-content h1 {
  font-weight: 400 !important;
  margin: 0;
  line-height: 1.02;
  color: #ffffff;
  /* responsive size */
  font-size: clamp(2rem, 6.5vw, 5.2rem);
  text-wrap: balance;
  margin-bottom: 18px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  animation: heroTitleIn 0.9s ease both;
}

/* italic highlighting if used */
.hero-content h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.96);
  opacity: 0.95;
  font-weight: 300;
}

/* SUBTEXT paragraph */
.hero-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  max-width: 520px;
  line-height: 1.6;
  transition: opacity 0.35s ease;
  /* default (mobile) static position) */
  position: relative;
}

/* CTA button (pill outline like Travoka) */
.btn-hero {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  padding: 10px 22px;
  border-radius: 28px;
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  margin-top: 14px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
}
.btn-hero:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #1d4632;
  transform: translateY(-3px);
}

/* hero text entrance animation */
@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== DESKTOP LAYOUT ADJUSTMENTS ===== */
/* On desktop: heading & badge remain centered; paragraph (p) bottom-left; CTA (.btn-hero) bottom-right
   Both bottom elements share the same baseline (appear as one row). */
@media (min-width: 992px) {
  .hero-content {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 6%;
    padding-right: 6%;
  }

  /* keep title visually centered vertically (slightly above true center for better composition) */
  .hero-content {
    /* nudge the vertical center slightly up for the heading */
    transform: translateY(-3%);
  }

  /* Position paragraph at bottom-left of the HERO (absolute relative to .hero) */
  .hero-content p {
    position: absolute;
    bottom: 48px;
    left: 2%;
    text-align: left;
    max-width: 520px;
    margin: 0;
  }

  /* Position CTA at bottom-right of the HERO */
  .hero-content .btn-hero {
    position: absolute;
    bottom: 44px;
    right: 2%;
    margin: 0;
  }

  /* ensure badge & title are centered horizontally even though bottom row is absolute */
  .hero-badge {
    margin-bottom: 18px;
  }
  .hero-content h1 {
    margin-bottom: 14px;
  }
}

/* ===== TABLET / MOBILE: keep everything CENTERED & stacked ===== */
@media (max-width: 991px) {
  .hero-content {
    transform: none; /* reset any desktop translation */
    padding-left: 6%;
    padding-right: 6%;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .hero-content p {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: 640px;
    margin-top: 12px;
    text-align: center;
  }

  .hero-content .btn-hero {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 14px;
  }
}

/* small phones fine-tuning */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
  .hero-badge {
    font-size: 0.82rem;
    padding: 6px 12px;
  }
  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .btn-hero {
    padding: 9px 18px;
    font-size: 0.95rem;
  }
}

/* ===== Accessibility & performance tweaks ===== */
.hero-slide,
.hero-overlay {
  will-change: opacity, transform;
}

/* ====================== Highlights Section ========================*/
.highlights-odisha {
  padding: 20px 20px;
  overflow-x: hidden;
}

.section-title {
  font-family: "Raleway", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #1d4632;
  margin-bottom: 60px;
  position: relative;
}
.section-title i {
  font-family: "Baskerville", serif;
  font-weight: 300;
}

.section-title::after {
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  background: #714929;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Rows */
.highlight-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.highlight-row.reverse {
  flex-direction: row-reverse;
}

.highlight-image {
  flex: 1;
}

.highlight-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.highlight-text {
  flex: 1.2;
  font-family: "Raleway", sans-serif;
  color: #333;
  line-height: 1.7;
}

.highlight-text h3 {
  font-family: "Baskervville", serif;
  font-size: 1.8rem;
  color: #714929;
  margin-bottom: 20px;
  font-weight: 600;
}

.highlight-text p {
  margin-bottom: 18px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .highlight-row {
    flex-direction: column;
    text-align: center;
  }
  .highlight-row.reverse {
    flex-direction: column;
  }
  .highlight-text {
    text-align: left;
  }
}
/* Initial state */
.highlight-row {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease;
}

/* Active state */
.highlight-row.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Direction-specific */
[data-animate="fade-right"] {
  transform: translateX(-60px);
}
[data-animate="fade-left"] {
  transform: translateX(60px);
}

[data-animate="fade-right"].animate,
[data-animate="fade-left"].animate {
  transform: translateX(0);
  opacity: 1;
}

/*================================ Packages Section Styling =================================*/
.packages {
  padding: 20px 20px;
}

.packages .section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: #1d4632;
}

/* Grid Layout */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}

/* Package Card */
.package-card {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease;
}

.package-card.animate {
  transform: translateY(0);
  opacity: 1;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.1) 60%
  );
  z-index: 1;
}

/* Overlay Content */
.package-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.package-text {
  max-width: 70%;
  margin-right: 5px;
}

.package-text h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5px;
}

.package-text p {
  font-size: 0.7rem;
  color: #f6f6f6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.package-btn a {
  padding: 5px 15px;
  white-space: nowrap;
  font-size: 0.8rem;
}

/* Hover */
.package-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 28px rgba(29, 70, 50, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .package-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .package-text {
    max-width: 100%;
  }

  .package-btn {
    width: 100%;
  }

  .package-btn a {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

/* Why Choose Us */
.why-choose {
  padding: 80px 20px;
  background: #fff;
}

.why-choose-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Image Grid */
.why-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-images .top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.img-box {
  overflow: hidden;
  border-radius: 15px;
}

.img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.img-box:hover img {
  transform: scale(1.05);
}

.bottom-row .img-box img {
  height: 280px;
}

/* Content */
.why-content h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #1d4632;
}

.why-content h2 i {
  font-family: "Georgia", serif;
  font-style: italic;
  color: #1d4632;
}

.why-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Feature Box */
.why-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: background 0.3s;
}

.why-feature:hover {
  background: #f1f1f1;
}

.why-feature .icon {
  flex-shrink: 0;
  background: #000;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.why-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #111;
}

.why-feature p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-container {
    grid-template-columns: 1fr;
  }

  .why-images .top-row img {
    height: 180px;
  }

  .bottom-row .img-box img {
    height: 220px;
  }

  .why-content {
    text-align: center;
  }

  .why-feature {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .why-content h2 {
    font-size: 1.8rem;
  }

  .img-box img {
    height: 180px;
  }
}

/* ==========================Testimonials============================= */
.testimonials {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.testimonials .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
  font-size: 1rem;
}

/* Slider Container */
.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
}

/* Individual Card */
.testimonial-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 30px;
  min-width: 100%;
  flex: 0 0 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #eee;
}

.stars {
  color: #ffcc00;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #aaa;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: background 0.3s;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.096);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

/* Responsive */
@media (min-width: 768px) {
  .testimonial-card {
    min-width: 50%;
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-width: 33.33%;
    flex: 0 0 33.33%;
  }
}

/* =========================Gallery Section =========================== */
.gallery-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.gallery-section .section-title {
  font-size: 2.2rem;
  color: #1d4632;
  margin-bottom: 10px;
}

.gallery-section .section-title span {
  font-style: italic;
}

.gallery-section .section-subtitle {
  font-family: "Montserrat", sans-serif;
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
}

/* Masonry-like Responsive Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 280px;
  grid-gap: 20px;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 10px;
  }
  .gallery-section .section-title {
    font-size: 1.8rem;
  }
  .gallery-section .section-subtitle {
    font-size: 0.95rem;
  }
}

/* ======================Login/Register============================  */

/* Modal Base */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-family: "Raleway", sans-serif;
}

/* Animations */
.animate-scale {
  animation: scaleUp 0.3s ease;
}
@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Close Button */
.close-modal {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Tabs */
.auth-tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 1.5rem;
}

.tab-btn {
  flex: 1;
  padding: 0.8rem;
  margin: 5px;
  font-family: "Baskervville", serif;
  font-weight: 500;
  border: none;
  background: #a5a5a5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #1d4632;
  color: #fff;
  border-radius: 8px;
}

/* Forms */
.auth-form {
  display: none;
}
.auth-form.active {
  display: block;
}

.auth-form h2 {
  font-family: "Baskervville", serif;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  text-align: center;
}

.auth-form label {
  display: block;
  margin: 0.5rem 0 0.2rem;
  font-weight: 500;
}

.auth-form input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.auth-form .btn-secondary {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  background: #1d4632;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.auth-form .btn-secondary:hover {
  opacity: 0.9;
}

.form-extra {
  text-align: right;
  margin-top: 0.5rem;
}

.form-extra a {
  font-size: 0.85rem;
  color: var(--secondary-color);
  text-decoration: none;
}
.form-extra a:hover {
  text-decoration: underline;
}

/* Notification Popup */
.notify-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #1d4632; /* secondary */
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: "Raleway", sans-serif;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.notify-popup.success {
  background: #1d4632;
}
.notify-popup.error {
  background: #714929;
}

.notify-message {
  flex: 1;
}

.notify-close {
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  margin-left: 8px;
}

/* ---------- Package Details ---------- */

/* Overview */
.overview {
  padding: 26px 0 6px;
  border-bottom: 1px solid #f3f3f3;
}
.section-heading {
  font-family: "Baskervville", serif;
  color: #1d4632;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.lead {
  color: #444;
  margin: 0;
}

/* DETAILS GRID rows (use flex for equal heights) */
.details {
  padding: 22px 0 40px;
}
.detail-row {
  display: flex;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}
.detail-row.rev {
  flex-direction: row-reverse;
}
.col-image {
  flex: 0 0 42%;
}
.col-content {
  flex: 1 1 58%;
  display: flex;
  flex-direction: column;
}
.col-image img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* typographic detail */
.col-content h3 {
  font-family: "Baskervville", serif;
  color: var(--primary);
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.col-content p {
  margin: 0 0 10px;
  color: #444;
}
.col-content ul {
  margin: 0 0 0 16px;
  color: #333;
}
.col-content li {
  margin: 8px 0;
}

/* facilities grid */
.facilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.facility {
  flex: 1 1 calc(50% - 12px);
  background: #f9f9f9;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #f1f1f1;
  font-weight: 600;
  color: #222;
}

.facility:hover {
  background: #f1f1f1;
}

.facility.small {
  flex: 1 1 calc(33.333% - 12px);
}

/* itinerary details */
.itinerary details {
  background: #f9f9f9;
  border: 1px solid #f1f1f1;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.itinerary summary {
  cursor: pointer;
  font-weight: 600;
}
.itinerary .day-desc {
  margin-top: 8px;
  color: #444;
}

/* accommodation */
.accom {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.thumb {
  width: 140px;
  flex: 0 0 140px;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.meta ul {
  margin: 8px 0 0 16px;
}

/* gallery */
.gallery-title {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Baskervville", serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
}

/* include/exclude boxes */
.include-exclude {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
  flex-direction: column;
}
.box {
  flex: 1 1 220px;
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #f1f1f1;
  background: #fff;
}
.box h4 {
  margin: 0 0 8px;
  color: var(--primary);
}

/* booking panel (desktop) */
.booking-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
  margin-bottom: 30px;
}
.bp-left .price-large {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}
.bp-actions {
  display: flex;
  gap: 10px;
}

/* Responsive */
@media (max-width: 980px) {
  .detail-row {
    flex-direction: column;
  }
  .detail-row.rev {
    flex-direction: column;
  }
  .col-image {
    width: 100%;
    flex-basis: auto;
  }
  .col-content {
    width: 100%;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .facility.small {
    flex: 1 1 calc(50% - 12px);
  }
}
@media (max-width: 720px) {
  .gallery-grid img {
    height: 90px;
    object-fit: cover;
  }
  .thumb {
    width: 100%;
  }
  .booking-panel {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}

/* Booking Hero */
.booking-hero {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 25%,
      rgba(0, 0, 0, 0.6) 75%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../images/webp2.jpg")
      center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem 4rem;
  height: 60vh;
  margin: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
}
.booking-hero h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  margin-bottom: 1rem;
  color: #fff;
}
.booking-hero p {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}
/* ---------- Booking Checkout — Visual upgrade (uses your classes/ids) ---------- */

/* Base page container */
.booking-checkout {
  padding: 48px 24px;
  color: #222;
}

/* Grid: force left = form, right = summary (visual order only) */
.checkout-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-areas: "form summary";
  gap: 28px;
  align-items: start;
}

/* ensure the DOM can remain in any order — assign areas by class */
.booking-form.card {
  grid-area: form;
}
.package-summary.card {
  grid-area: summary;
}

/* Card base: luxe surface */
.card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px; /* keep gentle rounding for premium feel */
  box-shadow: 0 18px 40px rgba(21, 28, 22, 0.08);
  border: 1px solid rgba(27, 35, 28, 0.04);
}

/* ---------------- Left: Booking Form (big, airy) ---------------- */
.booking-form.card {
  padding: 32px;
  position: relative;
  overflow: visible;
}

/* header */
.booking-form h2 {
  font-size: 1.5rem;
  color: #1d4632; /* secondary deep green */
  margin: 0 0 6px 0;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.booking-form .subtext {
  color: #6c6c6c;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

/* form rows: flexible */
.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.form-group {
  flex: 1;
  min-width: 180px;
}

/* inputs and selects */
.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e6e1da;
  background: #fff;
  font-size: 0.98rem;
  color: #222;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease;
}

/* nice focus state */
.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: #1d4632;
  box-shadow: 0 8px 24px rgba(29, 70, 50, 0.06);
  transform: translateY(-1px);
}

/* time fields same size as other inputs */
.booking-form input[type="time"] {
  padding-left: 12px;
}

/* total price display (left) */
.payble{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
  font-weight: 600;
}

#totalPrice {
  text-align: center;
  font-weight: 800;
  font-size: 1.25rem;

}

/* submit button */
.btn-primary {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  background-color: #163a2e; /* primary */
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(113, 73, 41, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(113, 73, 41, 0.22);
}

/* ---------------- Right: Package Summary (compact & sticky) ---------------- */
.package-summary.card {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* make the right summary sticky to viewport (nice UX) */
.package-summary.card {
  position: sticky;
  top: 28px;
}

/* top thumbnail + title */
.package-summary img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.summary-content h2 {
  margin: 8px 0 4px;
  font-size: 1.25rem;
  color: #163a2e;
  font-weight: 700;
}

.summary-content p {
  color: #5e5e5e;
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* rating */
.rating {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}
.rating-badge {
  background: #1d4632;
  color: #fff;
  padding: 4px 8px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* summary detail blocks */
.summary-details {
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
  padding-top: 12px;
  margin-top: 6px;
  color: #424242;
  font-size: 0.95rem;
}

/* small device behavior — stack, keep booking form first visually */
@media (max-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "form"
      "summary";
  }

  .booking-form.card::before {
    left: 12px;
    top: 16px;
    height: calc(100% - 32px);
  } /* tweak accent bar for mobile */
  .package-summary.card {
    position: relative;
    top: 0;
  }
}

/* accessibility & micro-adjusts */
.booking-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2e3e36;
}
.booking-form .form-group input[disabled] {
  opacity: 0.6;
}

/* If you use a global .container class in theme, this CSS will still work — no changes needed */

/* =================================CONTACT PAGE=================== */
.contact-hero {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 25%,
      rgba(0, 0, 0, 0.6) 75%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../images/webp7.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem 4rem;
  height: 60vh;
  margin: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
}
.contact-hero h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  margin-bottom: 1rem;
  color: #fff;
}
.contact-hero p {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Contact Modern Section */
.contact-modern {
  background: linear-gradient(135deg, #f9fafb, #eef2f7);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  max-height: 100%;
}

/* Left Info Section */
.contact-info h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  color: #1d4632;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.info-block p {
  font-weight: 500;
  color: #1d4632;
  margin: 0.5rem 0;
}

.info-links {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.info-links div {
  border-top: 1px solid #1d463252;
  border-bottom: 1px solid #1d463252;
  padding: 10px 30px;
}

.info-links h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #714929;
}

.info-links p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Right Form Card */
.contact-form-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #1d4632;
}

.form-subtext {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1d4632;
  box-shadow: 0 0 0 3px rgba(29, 70, 50, 0.15);
  outline: none;
}

/* .btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #1d4632, #2f6e4d);
  color: #fff;
  padding: 0.9rem;
  border: none;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
} */

/* .btn-primary:hover {
  background: linear-gradient(135deg, #714929, #57351e);
  transform: translateY(-2px);
} */

/* Responsive */
@media (max-width: 992px) {
  .contact-modern {
    padding: 100px 10px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    margin-top: 2rem;
  }
}

/* =================================ABOUT PAGE========================================= */

/* Hero Section */
.about-hero {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 25%,
      rgba(0, 0, 0, 0.6) 75%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../images/webp20.jpg")
      center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem 4rem;
  height: 60vh;
  margin: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
}
.about-hero h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  margin-bottom: 1rem;
  color: #fff;
}
.about-hero p {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about-section {
  padding: 4rem 1rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.about-text h2 {
  color: #1d4632;
  margin-bottom: 1rem;
}
.about-text p {
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.6;
}
.about-img img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Values */
.about-values {
  background: #f9fafb;
  padding: 4rem 1rem;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.value-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.value-card h3 {
  color: #714929;
  margin-bottom: 0.8rem;
}

/* Why Choose Us */
.about-choose {
  padding: 4rem 1rem;
  text-align: center;
}
.choose-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.choose-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}
.choose-card h4 {
  color: #1d4632;
  margin-bottom: 0.5rem;
}

/* CTA */
.about-cta {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://odishatourism.gov.in/content/dam/tourism/home/discover/about-odisha/glimpses-of-odisha/climate-thumb.jpg")
      center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  border-radius: 1rem;
  margin: 3rem 1rem;
  overflow: hidden;
}
.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.349); /* deep green transparent overlay */
  backdrop-filter: blur(5px); /* blur effect */
  border-radius: inherit;
  z-index: 0;
}
.about-cta h2,
.about-cta p,
.about-cta .btn-primary {
  position: relative;
  z-index: 1;
}

.about-cta h2 {
  margin-bottom: 1rem;
}
.about-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid,
  .values-grid,
  .choose-grid {
    grid-template-columns: 1fr;
  }
  .choose-card {
    text-align: left;
  }
}

/* =======================================USER ACCOUNT============================================ */

.account-hero {
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 25%,
      rgba(0, 0, 0, 0.6) 75%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../images/webp2.jpg")
      center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 5rem 1rem 4rem;
  height: 60vh;
  margin: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
}
.account-hero h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
  margin-bottom: 1rem;
  color: #fff;
}
.account-hero p {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

.account-container {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  min-height: 100vh;
  padding: 100px 10%;
  width: 100%;
}

.account-sidebar {
  width: 250px;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.user-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;

  p {
    font-size: 12px;
  }
}
.user-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.account-nav ul {
  list-style: none;
  padding: 0;
}
.account-nav li {
  padding: 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s;
}
.account-nav li:hover,
.account-nav li.active {
  background: #f0f8ff;
  font-weight: bold;
}
.account-nav a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.account-main {
  flex: 1;
}

.account-section {
  display: none;
}
.account-section.active {
  display: block;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.bookings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.booking-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.booking-header h3 {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.booking-details p {
  margin: 6px 0;
  font-size: 14px;
  color: #555;
}

.status {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
}

.status.success {
  background: #e6f7ec;
  color: #2e8b57;
}

.status.cancelled {
  background: #ffeaea;
  color: #d32f2f;
}

.status.pending {
  background: #fff8e1;
  color: #f57c00;
}

.booking-actions {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
}

.btn-secondary,
.btn-disabled {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
}

.no-bookings {
  text-align: center;
  margin-top: 30px;
}

.no-bookings p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
}

.profile-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  max-width: 600px;
}

.profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.profile-row:last-child {
  border-bottom: none;
}

.label {
  font-weight: 600;
  color: #444;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value {
  color: #555;
  font-size: 15px;
}

.profile-card:hover {
  transform: translateY(-3px);
  transition: all 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

@media only screen and (max-width:786px) {
  .account-container{
    flex-direction: column  ;
  }
  .account-sidebar{
    width: 100%;
  }
}

/* ===================Forgot Password======================= */

.auth-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  background: var(--section-bg);
}
.auth-container {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  width: 100%;
}
.auth-container h2 {
  color: var(--primary-color);
  text-align: center;
}
.auth-container p {
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth-container form label {
  display: block;
  font-weight: 600;
  margin-top: 10px;
}
.auth-container form input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.auth-container form button {
  width: 100%;
  margin-top: 15px;
}

.feedback-form-box textarea {
  width: 100%;
  min-height: 120px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.upload-box {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background: #fafafa;
  cursor: pointer;
}
.preview-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.preview-images img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.feedback-list {
  margin-top: 25px;
}
.feedback-card {
  border-top: 1px solid #eee;
  padding: 15px 0;
}
.feedback-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #888;
}
.feedback-text {
  margin: 10px 0;
  line-height: 1.5;
  color: #333;
}
.feedback-images {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feedback-images img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 600px) {
  .feedback-images img {
    width: 80px;
    height: 80px;
  }
}

/* ================================FOOTER=============================== */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #fff;
}

/* Top Section */
.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-about .logo img {
  height: 30px;
}

.footer-about p {
  max-width: 300px;
  color: #ccc;
  line-height: 1.6;
}

.footer-newsletter h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-newsletter form {
  display: flex;
  max-width: 350px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 25px 0 0 25px;
  border: none;
  background: #222;
  color: #fff;
  outline: none;
}

.footer-newsletter button {
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border: none;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #ddd;
}

/* Middle Section */
.footer-middle .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 0;
}

.footer-hours h4,
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-hours ul li {
  display: flex;
  color: #ccc;
  margin-bottom: 6px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}

.footer-contact ul li {
  color: #ccc;
  margin-bottom: 6px;
  font-size: 0.95rem;
  list-style-type: none;
}

.footer-links {
  display: flex;
  gap: 60px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 30px;
}

.footer-links ul li {
  margin-bottom: 6px;
  list-style-type: none;
}

.footer-links h4 {
  margin-bottom: 14px;
}

/* Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #222;
  border-radius: 50%;
  margin-left: 10px;
  font-size: 14px;
  color: #fff;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }

  .footer-middle {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
    border: 0;
    padding: 0;
  }

  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-newsletter input,
  .footer-newsletter button {
    border-radius: 25px;
  }

  .footer-newsletter button {
    margin-top: 10px;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
