/* style.css */
.hp-wrap {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
}
.hp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
.hp-section {
    padding: 80px 0;
}
.hp-bg-cream {
    background-color: #F8F1E7;
}

/* Typography */
.hp-sec-label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.hp-sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 40px;
}
.hp-dark .hp-sec-title { color: #fff; }

/* Buttons */
.hp-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}
.hp-btn-primary {
    background: var(--primary);
    color: #fff !important;
}
.hp-btn-primary:hover { opacity: 0.9; }
.hp-btn-outline {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff !important;
}
.hp-btn-white {
    background: #fff;
    color: var(--text) !important;
}

/* Hero */
.hp-hero {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
}
.hp-hero-content {
    max-width: 600px;
}
.hp-label {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-size: 13px;
}
.hp-h1 {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 24px;
}
.hp-desc {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 40px;
}
.hp-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hp-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hp-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hp-stat-icon { font-size: 24px; }
.hp-stat-text strong { display: block; color: #fff; font-size: 16px; }
.hp-stat-text span { color: rgba(255,255,255,0.7); font-size: 12px; }

/* Steps */
.hp-steps {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hp-step {
    background: #F8F1E7;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    width: calc(33.333% - 16px);
    box-sizing: border-box;
}
.hp-step-num {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 20px;
}
.hp-step-icon { font-size: 32px; margin-bottom: 16px; }
.hp-step-title { font-size: 18px; margin: 0 0 12px; }
.hp-step-desc { font-size: 14px; color: #666; line-height: 1.6; }
.hp-sec-cta { text-align: center; }

/* Cards (Services) */
.hp-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.hp-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: calc(33.333% - 16px);
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.hp-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.hp-card-content { padding: 24px; }
.hp-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin: 0 0 12px; }
.hp-card p { font-size: 14px; color: #666; margin: 0 0 20px; line-height: 1.6; }
.hp-card-link { color: var(--primary); font-weight: 700; text-decoration: none; font-size: 13px; }

/* Features */
.hp-features {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.hp-feature {
    width: calc(25% - 18px);
    text-align: center;
    box-sizing: border-box;
}
.hp-feat-icon { font-size: 40px; margin-bottom: 20px; color: var(--primary); }
.hp-feature h4 { font-size: 16px; margin: 0 0 12px; }
.hp-feature p { font-size: 14px; color: #777; line-height: 1.6; }

/* Reviews */
.hp-reviews-sec { background-size: cover; background-position: center; }
.hp-reviews {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hp-review {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 30px;
    width: calc(33.333% - 16px);
    box-sizing: border-box;
    text-align: center;
}
.hp-stars { color: var(--primary); font-size: 20px; margin-bottom: 16px; }
.hp-rev-text { font-style: italic; color: #fff; line-height: 1.7; margin: 0 0 20px; font-size: 15px;}
.hp-rev-name { color: var(--primary); font-weight: 700; font-size: 14px;}

/* CTA Bottom */
.hp-cta-bottom { background: #F3E7D8; }
.hp-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.hp-cta-left { width: 45%; }
.hp-cta-left h2 { font-family: 'Playfair Display', serif; font-size: 34px; margin: 0 0 16px; }
.hp-cta-left p { font-size: 16px; color: #555; line-height: 1.7; }
.hp-cta-right { width: 50%; display: flex; gap: 20px; }
.hp-cta-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 50%;
    box-sizing: border-box;
}
.hp-cb-title { color: var(--primary); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.hp-cta-box p { font-size: 13px; color: #666; margin: 0 0 20px; line-height: 1.6;}

@media (max-width: 768px) {
    .hp-h1 { font-size: 40px; }
    .hp-step, .hp-card, .hp-feature, .hp-review { width: 100%; }
    .hp-cta-left, .hp-cta-right { width: 100%; }
    .hp-cta-box { width: 100%; }
    .hp-cta-right { flex-direction: column; }
}
