.equal-row {
    display: flex;
    flex-wrap: wrap;
}

.equal-row > [class*="col-"] {
    display: flex;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: #2c783a;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 55px;
    color: #2c783a;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* HARGA SEWA */
.pricing-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.price-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: #2c783a;
}

.price-card .header {
    margin-bottom: 20px;
}

.price-card .header h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-card .price {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #057b1b;
}

.price-card ul {
    text-align: left;
    padding-left: 0;
    list-style: none;
    margin: 0 auto;
    max-width: 250px;
}

.price-card ul li {
    padding: 6px 0;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
}

.price-card ul li i {
    margin-right: 10px;
    color: #057b1b;
}

.price-card .footer {
    margin-top: auto;
    padding-top: 20px;
}

.price-card .footer a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: #057b1b;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.price-card .footer a:hover {
    background: #fff;
    border: 1px solid #285430;
    color: #285430;
}

/* GALERY */

.gallery-section {
    padding: 90px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.gallery-container {
    position: relative;
    z-index: 3;
}

.gallery-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* GRID PREMIUM */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

/* CARD */
.gallery-card {
    position: relative;
    height: 260px;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transform-style: preserve-3d;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.gallery-card:hover img {
    transform: scale(1.15);
    filter: brightness(1.15);
}

/* OVERLAY */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 38px;
    opacity: 0;
    transform: scale(0.7);
    transition: 0.4s ease;
}

.gallery-card:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1.15);
}

/* ANIMASI MUNCUL */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.7s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   HIGH PRIORITY RESPONSIVE FIXES
   Added: 2025-11-30
   ======================================== */

/* FIX #2: Hero Banner Mobile Padding */
@media only screen and (max-width: 767px) {
    .header-bnr.p-tb190 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .header-bnr h2 {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .header-bnr .h1 {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    /* Gallery Grid Responsive */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .gallery-card {
        height: 220px;
    }

    .gallery-title {
        font-size: 32px;
    }
}

@media only screen and (max-width: 480px) {
    .header-bnr.p-tb190 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery-title {
        font-size: 28px;
    }
}

/* FIX #3: Location Info Box Responsive */
.location-info-box {
    width: 85%;
    margin: 0 auto;
}

@media only screen and (max-width: 991px) {
    .location-info-box {
        width: 90%;
    }
}

@media only screen and (max-width: 767px) {
    .location-info-box {
        width: 95%;
        padding: 20px 15px !important;
    }

    .location-info-box .font-20 {
        font-size: 16px !important;
    }

    .location-info-box .font-16 {
        font-size: 14px !important;
    }
}

/* Price Cards Mobile Optimization */
@media only screen and (max-width: 767px) {
    .price-card .price {
        font-size: 26px;
    }

    .price-card .header h3 {
        font-size: 20px;
    }

    .price-card ul li {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .price-card .price {
        font-size: 24px;
    }

    .price-card .header h3 {
        font-size: 18px;
    }
}

/* ========================================
   MEDIUM PRIORITY ADDITIONAL FIXES
   Added: 2025-11-30
   ======================================== */

/* FIX #7: Price Cards Additional Optimization */
.price-card {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.price-card .price {
    font-size: 28px;
    font-weight: bold;
    padding: 20px 0;
}

@media only screen and (max-width: 991px) {
    .price-card {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .price-card {
        padding: 25px 20px;
    }

    .price-card .price {
        font-size: 22px;
        padding: 15px 0;
    }

    .price-card .header h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .price-card ul {
        max-width: 100%;
    }

    .price-card ul li {
        font-size: 14px;
        padding: 8px 0;
    }

    .price-card .footer a {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .price-card .price {
        font-size: 20px;
    }

    .price-card .header h3 {
        font-size: 18px;
    }

    .price-card ul li {
        font-size: 13px;
    }
}
