/* Section */
/* .image-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
} */

/* Background Image */
/* .section-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

/* Overlay Container */
/* .text-overlay {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 420px;
} */

/* SVG Shape */
/* .overlay-shape {
  width: 100%;
  height: auto;
  display: block;
} */

/* Text Inside Shape */
/* .overlay-content {
  position: absolute;
  top: 35px;
  left: 40px;
  right: 40px;
} */

/* .overlay-content h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #000;
} */
/* 
.overlay-content p {
  font-size: 14px;
  color: #333;
} */
/* HERO SECTION */
/* .hero-section {
  position: relative;
  height: 650px;
  overflow: hidden;
  border-radius: 24px;
} */
/* 
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* SVG TEXT OVERLAY */
/* .hero-overlay {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 420px;
} */
/* 
.overlay-shape {
  width: 100%;
} */

/* .overlay-content {
  position: absolute;
  top: 35px;
  left: 40px;
  right: 40px;
}

.overlay-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.overlay-content p {
  font-size: 14px;
  color: #555;
} */

/* FILTER CARD */
/* .filter-wrapper {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 45px;
  box-shadow:
    0px 2px 5px rgba(0, 0, 0, 0.10),
    0px 8px 8px rgba(0, 0, 0, 0.09),
    0px 19px 11px rgba(0, 0, 0, 0.05);
} */

/* TABS */
/* .filter-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
} */

/* .tab {
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  font-weight: 500;
} */

/* .tab.active {
  background: #F47419;
  color: white;
} */

/* FIELDS */
/* .filter-fields {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
} */

/* .field {
  background: #fafafa;
  padding: 15px 20px;
  border-radius: 12px;
  min-width: 200px;
  flex: 1;
}

.field.small {
  max-width: 160px;
} */

/* .field label {
  font-size: 14px;
  color: #777;
  display: block;
  margin-bottom: 5px;
}

.field h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
} */
/* 
.field small {
  font-size: 11px;
  color: #999;
} */




.hero-text-venue {
    position: absolute;
    top: -24px;
    left: 120px;
    height: 150px;
    width: 525px;

    padding: 18px 28px;
    border-radius: 16px 16px 16px 16px;
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
    z-index: 2;
    background-image: url('/images/venuetext.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* make it cover the whole box */
}


.hero-line1-venue {
    color: #333;
    font-size: 25.5px;
    position: relative;
    top: 16px
}

.hero-line2-venue {
    color: #F47419;
    font-size: 43.5px;
    top: 16px;
    position: relative;
}




/* ===== SECTION WRAPPER ===== */
.fare-section {
    padding: 80px 0;
    background: #f8f9fb;
}

.fare-wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADER LAYOUT ===== */
.fare-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== TITLE ===== */
.fare-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0;
}

.fare-highlight {
    color: #ff7a00;
    /* Orange Accent */
}

/* ===== NAVIGATION BUTTONS ===== */
.fare-navigation {
    display: flex;
    gap: 12px;
}

.fare-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fare-btn i {
    font-size: 14px;
    color: #333;
}

.fare-btn:hover {
    background: #ff7a00;
    border-color: #ff7a00;
}

.fare-btn:hover i {
    color: #fff;
}





/* ================= CARD WRAPPER ================= */
.venue-card {
    width: 300px;
    flex-shrink: 0;
    margin-bottom: 20px;
    /* added for better spacing if they wrap */
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ================= IMAGE SECTION ================= */
.venue-image {
    position: relative;
    height: 230px;
}

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

/* Rating Badge */
.venue-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Favorite Button */
.venue-fav {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.venue-fav i {
    font-size: 16px;
    color: #444;
}

.venue-fav:hover {
    background: #ff7a00;
}

.venue-fav:hover i {
    color: #fff;
}

/* ================= CONTENT ================= */
.venue-body {
    padding: 20px;
}

/* Category */
.venue-category {
    font-size: 13px;
    font-weight: 600;
    color: #ff7a00;
    display: inline-block;
    margin-bottom: 6px;
}

/* Title */
.venue-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #1e1e1e;
}

/* ================= 2x2 GRID ================= */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
    font-size: 13px;
    color: #555;
    margin-bottom: 18px;
}

.venue-grid div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.venue-grid i {
    color: #ff7a00;
    font-size: 13px;
}

/* ================= DIVIDER ================= */
.venue-divider {
    border: none;
    border-top: 1px solid #eeeeee;
    margin: 15px 0;
}

/* ================= HIGHLIGHTS ================= */
.venue-highlights {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: #444;
    gap: 8px;
}

.venue-highlights span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.venue-highlights i {
    color: #ff7a00;
    font-size: 12px;
}


/* ================= CARD WRAPPER ================= */
.listing-card {
    display: flex;
    gap: 30px;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    max-width: 950px;
}

.listing-card:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ================= LEFT SIDE ================= */
.listing-media {
    width: 350px;
    flex-shrink: 0;
}

/* Main Image */
.listing-main-image {
    position: relative;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
}

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

/* Rating Badge */
.listing-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Like Button */
.listing-like {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.listing-like:hover {
    background: #ff7a00;
}

.listing-like:hover i {
    color: #fff;
}

/* ================= THUMBNAILS ================= */
.listing-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.listing-thumbnails img {
    width: 100%;
    max-width: 110px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.listing-thumbnails img:hover {
    transform: scale(1.05);
}

/* ================= RIGHT SIDE ================= */
.listing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Category */
.listing-tag {
    font-size: 14px;
    font-weight: 600;
    color: #ff7a00;
    margin-bottom: 5px;
}

/* Title */
.listing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1e1e1e;
}

/* 2x2 Grid */
.listing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.listing-features div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.listing-features i {
    color: #ff7a00;
}

/* Price + Button */
.listing-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.listing-price span {
    font-size: 13px;
    color: #888;
}

.listing-price strong {
    font-size: 22px;
    font-weight: 700;
    color: #1e1e1e;
    display: block;
}

.listing-btn {
    padding: 10px 20px;
    background: #ff7a00;
    border: none;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.listing-btn:hover {
    background: #e56c00;
}

/* Divider */
.listing-divider {
    border: none;
    border-top: 1px solid #eeeeee;
    margin: 15px 0;
}

/* Highlights */
.listing-highlights {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.listing-highlights span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-highlights i {
    color: #ff7a00;
    font-size: 13px;
}



/* ================= SECTION ================= */
.property-section {
    padding: 80px 0;
    background: #f6f8fb;
}

.property-card {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* ================= LEFT SIDE ================= */
.property-media {
    flex: 1.2;
    /* more space on left */
}

.property-main-image {
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
}

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

.property-gallery {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.property-gallery img {
    width: 100%;
    max-width: 110px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s ease;
}

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

/* ================= RIGHT SIDE ================= */
.property-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Top Row */
.property-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.property-category {
    font-size: 14px;
    font-weight: 600;
    color: #ff7a00;
}

.property-rating {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

/* Title */
.property-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e1e1e;
}

/* Description */
.property-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* Tags Row */
.property-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.property-tags span {
    background: #f1f3f6;
    padding: 6px 10px;
    border-radius: 8px;
}

/* Price */
.property-price {
    margin-bottom: 15px;
}

.property-price strong {
    font-size: 26px;
    font-weight: 700;
    color: #1e1e1e;
}

.property-price span {
    font-size: 14px;
    color: #888;
}

/* Button */
.property-btn {
    width: 100%;
    padding: 14px;
    background: #ff7a00;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 12px;
    text-align: center;
}

.property-btn:hover {
    background: #e66c00;
}

/* More Options */
.property-more {
    font-size: 14px;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-more i {
    font-size: 12px;
}

/* ================= OVERVIEW SECTION ================= */

.property-overview-section {
    padding: 60px 0;
    background: #ffffff;
}

.property-overview-container {
    width: 90%;
    max-width: 990px;
    margin: 0 auto;
}

/* Heading */
.property-overview-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 20px;
    position: relative;
}

/* Optional underline accent */
.property-overview-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ff7a00;
    margin-top: 8px;
    border-radius: 3px;
}

/* Paragraph */
.property-overview-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
}

/* ================= AMENITIES SECTION ================= */

.amenities-section {
    padding: 70px 0;
    background: #f9fafc;
}

.amenities-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.amenities-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 30px;
    position: relative;
}

.amenities-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #ff7a00;
    margin-top: 8px;
    border-radius: 3px;
}

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

/* Individual Item */
.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
    transition: 0.3s ease;
}

.amenity-item i {
    font-size: 18px;
    color: #ff7a00;
    width: 22px;
}

.amenity-item:hover {
    transform: translateX(4px);
}

/* ================= ROOM TYPES SECTION ================= */

.room-types-section {
    padding: 80px 0;
    background: #ffffff;
}

.room-types-container {
    max-width: 1299px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading */
.room-types-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.room-types-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #ff7a00;
    margin-top: 10px;
    border-radius: 4px;
}


/* ================= CARD ================= */

.room-type-card {
    display: flex;
    gap: 30px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 35px;
    /* IMPORTANT for stacking */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.room-type-card:hover {
    transform: translateY(-4px);
}


/* ================= LEFT MEDIA ================= */

.room-type-media {
    width: 40%;
}

.room-type-main-image {
    position: relative;
}

.room-type-main-image img {
    width: 100%;
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

.room-type-rating {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffffff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 600;
}

.room-type-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffffff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.room-type-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.room-type-thumbnails img {
    width: 32%;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}


/* ================= RIGHT CONTENT ================= */

.room-type-content {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.room-type-category {
    font-size: 13px;
    color: #ff7a00;
    font-weight: 600;
}

.room-type-name {
    font-size: 22px;
    margin: 8px 0 15px;
}

.room-type-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    font-size: 14px;
    color: #555;
}

.room-type-features i {
    color: #ff7a00;
    margin-right: 6px;
}


/* ================= PRICE + BUTTON ================= */

.room-type-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.room-type-price span {
    font-size: 13px;
    color: #888;
    display: block;
}

.room-type-price strong {
    font-size: 22px;
    color: #1e1e1e;
}

.room-type-btn {
    background: #ff7a00;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.room-type-btn:hover {
    background: #e66900;
}


/* ================= DIVIDER ================= */

.room-type-divider {
    margin: 20px 0;
    border: none;
    height: 1px;
    background: #eee;
}


/* ================= HIGHLIGHTS ================= */

.room-type-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #555;
}

.room-type-highlights i {
    color: #28a745;
    margin-right: 6px;
}

/* ================= BOOKING PAGE ================= */
/* ================= PAGE ================= */

.booking-page {
    padding: 80px 0;
    background: #f9fafc;
}

.booking-wrapper {
    width: 90%;
    max-width: 950px;
    margin: 0 auto;
}


/* ================= BLOCK ================= */

.booking-block {
    background: #fff;
    padding: 35px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.booking-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    /* display: flex; */
    align-items: center;
    gap: 10px;
}

.booking-heading::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #ff7a00;
    display: block;
    margin-top: 8px;
    border-radius: 3px;
}


/* ================= FORM ================= */

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.booking-field {
    display: flex;
    flex-direction: column;
}

.booking-field label {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.full-width {
    grid-column: span 2;
}


/* ================= MEAL LIST ================= */

.meal-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.meal-item:hover {
    border-color: #ff7a00;
}

.meal-item span {
    font-size: 14px;
    color: #777;
}


/* ================= BUTTONS ================= */

.booking-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.booking-back {
    background: #ddd;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
}

.booking-next {
    background: #ff7a00;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
}

.booking-next:hover {
    background: #e66900;
}

/* ================= CARD ================= */

.venue-horizontal-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    max-width: 700px;
    overflow: hidden;
    /* prevents overflow */
}


/* ================= LEFT IMAGE ================= */

.venue-card-image {
    width: 40%;
    flex-shrink: 0;
}

.venue-card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}


/* ================= RIGHT CONTENT ================= */

.venue-card-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}


/* Category */
.venue-category {
    font-size: 13px;
    font-weight: 600;
    color: #ff7a00;
    margin-bottom: 6px;
}

/* Title */
.venue-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Rating */
.venue-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.stars {
    color: #f4b400;
    font-size: 14px;
}

.review-count {
    font-size: 13px;
    color: #666;
}

/* Location */
.venue-location {
    font-size: 14px;
    color: #555;
}

.form-field-venue {
    flex: 1;
    width: 100px;
    display: flex;
    flex-direction: column;
    /* stack rows vertically */
    align-items: flex-start;
    /* left-align text */
    gap: 4px;
    /* spacing between rows */
    padding: 12px 14px 12px 14px;
    /* padding inside box */
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    /* needed for absolute arrow */
    box-sizing: border-box;
}

.field-sub-venue {
    font-size: 7px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.field-main-venue {
    font-size: 10px;
    font-weight: 600;
    color: #333;
}

.field-to-venue {
    font-size: 8px;
    font-weight: 600;
    color: #333;
}

.room-type-content-review {
    width: 77%;
    display: flex;
    flex-direction: column;
    position: relative;
    left: 35px;
}

.booking-divider {
    margin: 20px 0 10px 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

.cancel-policy {
    margin-top: 5px;
}

.cancel-link {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.cancel-link:hover {
    text-decoration: underline;
}

.edit-link {
    background: none;
    border: none;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    padding: 0;
    position: relative;
    left: 351px;
}

.edit-link:hover {
    text-decoration: underline;
}


.map-section {
    max-width: 1230px;
    margin: 0 auto;
    padding: 30px 20px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.location-info {
    margin-bottom: 20px;
}

.main-location {
    font-weight: 600;
    margin: 0;
}

.address {
    margin: 3px 0 0 0;
    color: #666;
    font-size: 14px;
}

.map-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.map-left {
    flex: 1;
}

.map-left img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.map-right {
    flex: 1;
}

.landmark-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.landmark-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.landmark-row span:first-child {
    color: #333;
}

.landmark-row span:last-child {
    color: #666;
}

.review-slider {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 40px 0;
}

.review-track {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.review-card {
    flex: 0 0 30%;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    scroll-snap-align: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.85);
    opacity: 0.7;
}

.review-card.active {
    transform: scale(1.1);
    opacity: 1;
}

.review-quote {
    font-size: 24px;
    color: #F47419;
    margin-bottom: 15px;
}

.review-author {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.review-avatar {
    display: inline-flex;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #F47419;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-weight: bold;
}