/* ============================================================
   AGRO-TOURISM STYLES
   Flyer-style design system for the Ham Animal Breeding Farm
   agro-tourism pages.
   Extracted from inline <style> blocks in Blade templates.
   ============================================================ */

/* ------------------------------------------------------------
   1. BASE / SHARED
   ------------------------------------------------------------ */
.acc-page {
    background: #F4EFEA;
    font-family: 'Inter', sans-serif;
    color: #2C2420;
    overflow-x: hidden;
}
.acc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.botanical-svg {
    display: block;
    width: 60px;
    height: auto;
    margin: 0 auto 16px;
    opacity: 0.6;
}
.botanical-svg--dark path,
.botanical-svg path {
    stroke: #2D4A22;
}
.botanical-svg--orange path {
    stroke: #D4732A;
}

/* ------------------------------------------------------------
   2. ACCOMMODATIONS – HERO
   ------------------------------------------------------------ */
.acc-hero {
    padding: 80px 0 60px;
    background: #F4EFEA;
    position: relative;
    overflow: hidden;
}
.acc-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45,74,34,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.acc-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,115,42,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.acc-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.acc-hero__label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #2D4A22;
    margin-bottom: 12px;
}
.acc-hero__title-main {
    font-family: 'Mali', cursive;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    color: #2D4A22;
    margin-bottom: 20px;
}
.acc-hero__badge {
    display: inline-flex;
    align-items: center;
    background: #2D4A22;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.acc-hero__badge i {
    margin-right: 8px;
    font-size: 14px;
}
.acc-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #5A4A42;
    max-width: 480px;
    margin-bottom: 28px;
}
.acc-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #D4732A;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.acc-hero__btn:hover {
    background: #2D4A22;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45,74,34,0.25);
}
.acc-hero__image {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: #E0D8D0;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.acc-hero-lightbox {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
.acc-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.acc-hero__image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(244,239,234,0.92);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 13px;
    color: #2C2420;
    font-family: 'Inter', sans-serif;
}
.acc-hero__image-caption strong {
    color: #2D4A22;
}

/* ------------------------------------------------------------
   3. ACCOMMODATIONS – GALLERY STRIP
   ------------------------------------------------------------ */
.acc-gallery {
    padding: 0;
    background: #F4EFEA;
}
.acc-gallery__strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
}
.acc-gallery__item {
    height: 200px;
    overflow: hidden;
    background: #E0D8D0;
    position: relative;
}
.acc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.acc-gallery__item:hover img {
    transform: scale(1.05);
}
.acc-gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(45,74,34,0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.acc-gallery__item:hover .acc-gallery__item-overlay {
    opacity: 1;
}

/* ------------------------------------------------------------
   4. ACCOMMODATIONS – THREE-COLUMN INFO
   ------------------------------------------------------------ */
.acc-info {
    padding: 90px 0;
    background: #F4EFEA;
}
.acc-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
.acc-info__col-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2D4A22;
    margin-bottom: 28px;
    text-align: center;
}
.acc-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.acc-info__list-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.acc-info__list-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2D4A22;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}
.acc-info__list-icon--orange {
    background: #D4732A;
}
.acc-info__list-icon--gold {
    background: #C8A45A;
}
.acc-info__list-content h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2D4A22;
    margin: 0 0 4px;
    letter-spacing: 0.5px;
}
.acc-info__list-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #5A4A42;
    line-height: 1.5;
    margin: 0;
}
.acc-info__portrait-wrap {
    text-align: center;
    padding: 0 10px;
}
.acc-info__portrait {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    background: #E0D8D0;
    border: 3px solid #2D4A22;
    padding: 4px;
}
.acc-info__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.acc-info__portrait-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #2D4A22;
    margin-bottom: 4px;
    letter-spacing: 1px;
}
.acc-info__portrait-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #D4732A;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.acc-info__portrait-bio {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #5A4A42;
    text-align: center;
}
.acc-info__portrait-bio p {
    margin-bottom: 10px;
}
.acc-info__schedule {
    list-style: none;
    padding: 0;
    margin: 0;
}
.acc-info__schedule-item {
    display: grid;
    grid-template-columns: 60px 28px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(45,74,34,0.1);
}
.acc-info__schedule-item:last-child {
    border-bottom: none;
}
.acc-info__schedule-time {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2D4A22;
    text-align: right;
}
.acc-info__schedule-icon {
    font-size: 17px;
    color: #D4732A;
    text-align: center;
}
.acc-info__schedule-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2C2420;
}

/* ------------------------------------------------------------
   5. ACCOMMODATIONS – LISTING / TAB CARDS
   ------------------------------------------------------------ */
.acc-listing {
    padding: 0 0 80px;
    background: #F4EFEA;
}
.acc-listing__tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.acc-listing__tab {
    background: transparent;
    border: 2px solid #2D4A22;
    color: #2D4A22;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.acc-listing__tab.active {
    background: #2D4A22;
    color: #fff;
}
.acc-listing__tab:hover:not(.active) {
    background: rgba(45,74,34,0.08);
}
.acc-listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.acc-listing__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.acc-listing__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.acc-listing__card-img {
    height: 180px;
    overflow: hidden;
    background: #E0D8D0;
}
.acc-listing__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.acc-listing__card-body {
    padding: 18px 20px 22px;
}
.acc-listing__card-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #2D4A22;
    margin-bottom: 6px;
}
.acc-listing__card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #5A4A42;
    margin-bottom: 8px;
}
.acc-listing__card-meta i {
    margin-right: 4px;
    color: #D4732A;
}
.acc-listing__card-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #D4732A;
    margin-bottom: 10px;
}
.acc-listing__card-amenities {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.acc-listing__card-amenity {
    background: rgba(45,74,34,0.08);
    color: #2D4A22;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
}
.acc-listing__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2D4A22;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s;
}
.acc-listing__card-btn:hover {
    background: #D4732A;
    color: #fff;
}
.acc-listing__panel {
    display: none;
}
.acc-listing__panel.active {
    display: block;
}
.acc-listing__card-img .placeholder-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #2D4A22;
    color: #fff;
    font-size: 36px;
}
/* Listing responsive */
@media (max-width: 768px) {
    .acc-listing__grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .acc-listing__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------------------------------------
   6. ACCOMMODATIONS – CTA / FOOTER
   ------------------------------------------------------------ */
.acc-cta {
    padding: 0 0 80px;
    background: #F4EFEA;
}
.acc-cta__card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
.acc-cta__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2D4A22, #D4732A, #C8A45A, #2D4A22);
    background-size: 300% 100%;
}
.acc-cta__grid {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 1.4fr;
    gap: 36px;
    align-items: start;
}
.acc-cta__image {
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    background: #E0D8D0;
}
.acc-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.acc-cta__features-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2D4A22;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.acc-cta__features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.acc-cta__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #5A4A42;
    margin-bottom: 10px;
}
.acc-cta__features li i {
    width: 20px;
    color: #2D4A22;
    font-size: 16px;
    text-align: center;
}
.acc-cta__contact-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2D4A22;
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.acc-cta__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.acc-cta__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #5A4A42;
    text-decoration: none;
    transition: color 0.2s;
}
.acc-cta__contact-item:hover {
    color: #2D4A22;
}
.acc-cta__contact-item i {
    width: 20px;
    color: #D4732A;
    text-align: center;
}
.acc-cta__qrcode {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: #E0D8D0;
    flex-shrink: 0;
}
.acc-cta__qrcode img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.acc-cta__contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.acc-cta__contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ------------------------------------------------------------
   7. DETAIL PAGES – HERO
   (Shared by cottage, retreat, camping, event detail)
   ------------------------------------------------------------ */
.ag-detail-hero {
    padding: 60px 0 40px;
    background: #F4EFEA;
}
.ag-detail-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}
.ag-detail-hero__img {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    background: #E0D8D0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.ag-detail-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ag-detail-hero__label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #2D4A22;
    margin-bottom: 8px;
}
.ag-detail-hero__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 38px);
    color: #2D4A22;
    margin-bottom: 12px;
    line-height: 1.2;
}
.ag-detail-hero__price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #D4732A;
    margin-bottom: 16px;
}
.ag-detail-hero__price small {
    font-size: 16px;
    color: #5A4A42;
    font-weight: 400;
}
.ag-detail-hero__price .free-label {
    font-size: 16px;
    color: #2e7d32;
    font-weight: 700;
}
.ag-detail-hero__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.ag-detail-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: #5A4A42;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.ag-detail-hero__meta-item i {
    color: #D4732A;
}
.ag-detail-hero__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #5A4A42;
    margin-bottom: 20px;
}

/* ------------------------------------------------------------
   8. DETAIL PAGES – BOOKING STEPPER
   (Shared by cottage, retreat, camping, event detail)
   ------------------------------------------------------------ */
.booking-stepper {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 100px;
}
.booking-stepper__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #2D4A22;
    margin-bottom: 20px;
    text-align: center;
}
.booking-stepper__steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}
.booking-stepper__step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}
.booking-stepper__step--active {
    background: #2D4A22;
    color: #fff;
}
.booking-stepper__step--done {
    background: #D4732A;
    color: #fff;
}
.booking-stepper__step--pending {
    background: #E0D8D0;
    color: #5A4A42;
}
.booking-stepper__connector {
    width: 20px;
    height: 2px;
    background: #E0D8D0;
    align-self: center;
}
.booking-stepper__connector--done {
    background: #D4732A;
}
.step-section {
    display: none;
}
.step-section.active {
    display: block;
}
.step-section label {
    font-size: 13px;
    font-weight: 600;
    color: #2D4A22;
    display: block;
    margin-bottom: 4px;
}
.step-section .field {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E0D8D0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #F9F7F4;
    transition: border-color 0.2s;
    margin-bottom: 14px;
    box-sizing: border-box;
}
.step-section .field:focus {
    border-color: #2D4A22;
    outline: none;
    background: #fff;
}
.step-section .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Feature/amenity grids on detail pages */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}
.amenities-grid span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #5A4A42;
}
.amenities-grid i {
    color: #2D4A22;
    font-size: 14px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}
.features-grid span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #5A4A42;
}
.features-grid i {
    color: #2D4A22;
    font-size: 14px;
}

/* ------------------------------------------------------------
   9. EVENTS PAGE – HERO
   ------------------------------------------------------------ */
.ag-hero {
    padding: 60px 0 40px;
    background: #F4EFEA;
    position: relative;
    overflow: hidden;
}
.ag-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45,74,34,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.ag-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.ag-hero__label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #2D4A22;
    margin-bottom: 12px;
}
.ag-hero__title {
    font-family: 'Mali', cursive;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    color: #2D4A22;
    margin-bottom: 16px;
}
.ag-hero__subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #5A4A42;
    max-width: 480px;
    margin-bottom: 24px;
}
.ag-hero__image {
    width: 100%;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    background: #E0D8D0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.ag-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------------------------
   10. EVENTS PAGE – CARD GRID
   ------------------------------------------------------------ */
.ag-grid {
    padding: 0 0 80px;
}
.ag-grid__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ag-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.ag-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.ag-card__img {
    height: 200px;
    overflow: hidden;
    background: #E0D8D0;
    position: relative;
}
.ag-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.ag-card:hover .ag-card__img img {
    transform: scale(1.05);
}
.ag-card__date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2D4A22;
    color: #fff;
    border-radius: 10px;
    padding: 6px 14px;
    text-align: center;
    line-height: 1.2;
}
.ag-card__date-badge .day {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    display: block;
}
.ag-card__date-badge .mon {
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.9;
}
.ag-card__price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #D4732A;
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.ag-card__price-badge--free {
    background: #2e7d32;
}
.ag-card__body {
    padding: 18px 20px 22px;
}
.ag-card__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #2D4A22;
    margin-bottom: 8px;
    line-height: 1.3;
}
.ag-card__title a {
    color: #2D4A22;
    text-decoration: none;
}
.ag-card__title a:hover {
    color: #D4732A;
}
.ag-card__meta {
    font-size: 13px;
    color: #5A4A42;
    margin-bottom: 8px;
}
.ag-card__meta i {
    color: #D4732A;
    margin-right: 4px;
    width: 16px;
}
.ag-card__excerpt {
    font-size: 14px;
    color: #5A4A42;
    line-height: 1.5;
    margin-bottom: 12px;
}
.ag-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #2D4A22;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s;
}
.ag-card__btn:hover {
    background: #D4732A;
    color: #fff;
}

/* Empty state */
.ag-empty {
    text-align: center;
    padding: 60px 0;
}
.ag-empty i {
    font-size: 48px;
    color: #2D4A22;
    margin-bottom: 12px;
    display: block;
}
.ag-empty h4 {
    font-family: 'Outfit', sans-serif;
    color: #2D4A22;
    margin-bottom: 8px;
}

/* ------------------------------------------------------------
   11. GENERAL BOOKING MODAL
   ------------------------------------------------------------ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.modal-overlay.open {
    display: flex;
}
.modal-content {
    background: #fff;
    border-radius: 24px;
    max-width: 560px;
    width: 100%;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #F4EFEA;
    color: #2C2420;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.modal-close:hover {
    background: #E0D8D0;
}
.gen-step {
    display: none;
}
.gen-step.active {
    display: block;
}
.gen-step label {
    font-size: 13px;
    font-weight: 600;
    color: #2D4A22;
    display: block;
    margin-bottom: 4px;
}
.gen-step .field {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E0D8D0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #F9F7F4;
    transition: border-color 0.2s;
    margin-bottom: 14px;
    box-sizing: border-box;
}
.gen-step .field:focus {
    border-color: #2D4A22;
    outline: none;
    background: #fff;
}
.gen-step .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.gen-step textarea.field {
    min-height: 80px;
    resize: vertical;
}

/* ------------------------------------------------------------
   12. RESPONSIVE – ACCOMMODATIONS
   ------------------------------------------------------------ */
@media (max-width: 992px) {
    .acc-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .acc-hero__image {
        height: 320px;
    }
    .acc-info__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .acc-cta__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .acc-gallery__strip {
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
    }
    .acc-gallery__item {
        height: 130px;
    }
}

@media (max-width: 640px) {
    .acc-hero {
        padding: 50px 0 40px;
    }
    .acc-hero__image {
        height: 240px;
    }
    .acc-gallery__strip {
        grid-template-columns: repeat(5, 1fr);
        gap: 3px;
    }
    .acc-gallery__item {
        height: 80px;
    }
    .acc-cta__card {
        padding: 28px 20px;
        border-radius: 16px;
    }
    .acc-info {
        padding: 56px 0;
    }
    .acc-info__grid {
        gap: 36px;
    }
    .acc-info__schedule-item {
        grid-template-columns: 50px 22px 1fr;
        gap: 8px;
    }
}

/* ------------------------------------------------------------
   13. RESPONSIVE – DETAIL PAGES
   ------------------------------------------------------------ */
@media (max-width: 768px) {
    .ag-detail-hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ag-detail-hero__img {
        height: 260px;
    }
    .booking-stepper {
        position: static;
    }
    .step-section .field-row {
        grid-template-columns: 1fr;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------------------
   14. RESPONSIVE – EVENTS
   ------------------------------------------------------------ */
@media (max-width: 992px) {
    .ag-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ag-hero__image {
        height: 280px;
    }
    .ag-grid__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .ag-grid__cards {
        grid-template-columns: 1fr;
    }
    .ag-hero__image {
        height: 220px;
    }
}
