
.hp-single {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    color: #0f172a;
    background-color: #f8fafc;
    padding-bottom: 80px;
}
.hp-single * {
    box-sizing: border-box;
}
.hp-single h1, .hp-single h2, .hp-single h3, .hp-single h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0f172a;
    margin: 0;
}
.hp-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
}

/* Hero Section (Navy background) */
.hp-hero {
    background: #0b1329;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 1px;
    margin-top: 0px;
    box-shadow: 0 10px 30px -10px rgba(11, 19, 41, 0.3);
}
.hp-hero h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.hp-hero .sub {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
}
.hp-hero .rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #cbd5e1;
}
.hp-hero .stars {
    color: #facc15;
    font-size: 18px;
    letter-spacing: 2px;
}

/* Two-column layout */
.hp-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    margin-top: 32px;
}
@media(min-width: 992px) {
    .hp-grid {
        grid-template-columns: 1.8fr 1.15fr;
    }
}

.hp-main, .hp-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Cards style */
.hp-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
}
.hp-card h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}
.hp-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Overview section */
.hp-desc {
    color: #334155;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 24px;
}
.hp-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}
@media(min-width: 576px) {
    .hp-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.hp-feature-card {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}
.hp-check-icon {
    width: 16px;
    height: 16px;
    color: #eab308;
    flex-shrink: 0;
}

/* Gallery Section */
.hp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.hp-gallery-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
}
.hp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Pricing Section */
.hp-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}
@media(min-width: 576px) {
    .hp-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.hp-pricing-card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px 20px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 200px;
    transition: all 0.2s ease;
}
.hp-pricing-card.featured {
    background: #fffbeb;
    border-color: #fef08a;
    box-shadow: 0 10px 15px -3px rgba(254, 240, 138, 0.3);
}
.hp-price-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}
.hp-pricing-card.featured .hp-price-title {
    color: #b45309;
}
.hp-price-amount {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}
.hp-price-desc {
    font-size: 12px;
    color: #475569;
    line-height: 1.4;
    margin-bottom: 16px;
}
.hp-price-btn {
    width: 100%;
    text-align: center;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.2s ease;
}
.hp-price-btn.outline {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}
.hp-price-btn.outline:hover {
    border-color: #0f172a;
    background: #f8fafc;
}
.hp-price-btn.solid {
    background: #facc15;
    border: 1px solid #facc15;
    color: #0b1329;
}
.hp-price-btn.solid:hover {
    background: #eab308;
    border-color: #eab308;
}

/* Reviews section */
.hp-review-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    background: #ffffff;
    margin-bottom: 16px;
}
.hp-review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}
.hp-review-item-name {
    font-weight: 700;
    color: #0f172a;
}
.hp-review-item-date {
    color: #94a3b8;
}
.hp-review-item-stars {
    color: #ffb400;
    font-size: 14px;
    margin-bottom: 8px;
}
.hp-review-item-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
}

/* Forms */
.hp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}
.hp-input, .hp-textarea, .hp-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.2s;
}
.hp-input:focus, .hp-textarea:focus, .hp-select:focus {
    outline: none;
    border-color: #facc15;
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
}
.hp-textarea {
    min-height: 100px;
    resize: vertical;
}
.hp-submit-btn {
    width: 100%;
    background: #facc15;
    color: #0b1329;
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.hp-submit-btn:hover {
    background: #eab308;
}
.hp-submit-btn svg {
    width: 16px;
    height: 16px;
}

/* Right Side Cards */
.hp-side-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
}
.hp-side-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
}

/* Contact Information */
.hp-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    margin-bottom: 14px;
    color: #475569;
}
.hp-contact-item svg {
    width: 16px;
    height: 16px;
    color: #64748b;
    margin-top: 3px;
    flex-shrink: 0;
}
.hp-contact-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}
.hp-contact-item a:hover {
    text-decoration: underline;
}

/* Quick Facts */
.hp-fact-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}
.hp-fact-row:last-child {
    border-bottom: none;
}
.hp-fact-label {
    color: #64748b;
}
.hp-fact-val {
    font-weight: 700;
    color: #0f172a;
}

/* Map Mockup */
.hp-map-mockup {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    background: #e2e8f0;
    overflow: hidden;
    border: 1px solid #cbd5e1;
}
.hp-map-bg {
    width: 100%;
    height: 100%;
    background-color: #cadcf9;
    background-image: 
        radial-gradient(#e5e7eb 20%, transparent 20%),
        radial-gradient(#e5e7eb 20%, transparent 20%),
        linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
    background-size: 20px 20px, 20px 20px, 40px 40px, 40px 40px;
    background-position: 0 0, 10px 10px, 0 0, 0 0;
    position: relative;
}
.hp-map-road {
    position: absolute;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.hp-map-road-h {
    width: 100%;
    height: 14px;
    top: 50%;
}
.hp-map-road-v {
    height: 100%;
    width: 14px;
    left: 45%;
}
.hp-map-pin {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-30%, -100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}
.hp-map-pin-circle {
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hp-map-label {
    background: #0b1329;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Similar listings */
.hp-similar-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}
.hp-similar-card:hover {
    border-color: #facc15;
}
.hp-similar-info {
    display: flex;
    flex-direction: column;
}
.hp-similar-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}
.hp-similar-cat {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}
.hp-similar-btn {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s;
}
.hp-similar-btn:hover {
    border-color: #0f172a;
    background: #f8fafc;
}

/* Gallery Modal Styling */
.hp-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.hp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}
.hp-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
    animation: hpModalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes hpModalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.hp-modal-header {
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}
.hp-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}
.hp-modal-close:hover {
    color: #0f172a;
}
.hp-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}
.hp-gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.hp-gallery-modal-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    height: 160px;
    overflow: hidden;
}
.hp-gallery-modal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.hp-gallery-modal-item img:hover {
    transform: scale(1.05);
}
.hp-gallery-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 16px;
}
.hp-gallery-more-btn:hover {
    background: #f8fafc;
    border-color: #0f172a;
}

/* Review Star Selector hover micro-animation */
.hp-star-select-btn:hover {
    transform: scale(1.25);
}
