/**
 * Skin Decor - Homepage Luxury Stylesheet
 * Location: template/skindecor_in/css/homepage-luxury.css
 */

/* Hero Section Styling */
.hm-hero-sec {
    background: url('../images/IMG_0400.webp') center center / cover no-repeat;
    min-height: 520px;
    padding: 100px 0 90px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hm-hero-sec {
        background-image: url('../images/IMG_0400_mobile.webp') !important;
        padding: 60px 0 50px 0;
    }
}
.hm-hero-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 2, 5, 0.35) 0%, rgba(20, 4, 8, 0.55) 100%);
    pointer-events: none;
    z-index: 0;
}
.hm-hero-sec .container {
    position: relative;
    z-index: 1;
}
.hm-hero-glass-box {
    background: rgba(16, 3, 7, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 28px;
    padding: 45px 35px 35px 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.hm-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    color: #ffd700;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.hm-hero-title {
    font-family: 'Abhaya Libre', serif;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.hm-hero-title .gold-text {
    color: #ffd700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    display: inline;
}
.hm-hero-text {
    font-size: 17px;
    color: #f2e6ea;
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}
.hm-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hm-hero-btn:hover {
    background: linear-gradient(135deg, #ffe89e 0%, #d4af37 100%);
    color: #1a0409 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}
.hm-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-decoration: none !important;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.hm-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: #ffd700;
    color: #ffd700 !important;
    transform: translateY(-2px);
}
.hm-hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.30);
}
.hm-hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hm-hero-stat-num {
    font-family: 'Abhaya Libre', serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}
.hm-hero-stat-lbl {
    font-size: 12px;
    color: #f2e6ea;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

/* Service Highlights with Image Cards */
.hm-serv-grid {
    margin-top: 0;
    padding-top: 15px;
    position: relative;
    z-index: 10;
}
.hm-serv-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(128, 0, 32, 0.08);
    border: 1px solid rgba(128, 0, 32, 0.1);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hm-serv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(128, 0, 32, 0.18);
    border-color: rgba(212, 175, 55, 0.6);
}
.hm-serv-img-box {
    position: relative;
    height: 175px;
    overflow: hidden;
    background: #2b0b12;
}
.hm-serv-img-box img {
    width: 100%;
    height: 100%;
    aspect-ratio: 600 / 400;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hm-serv-card:hover .hm-serv-img-box img {
    transform: scale(1.08);
}
.hm-serv-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26, 4, 9, 0.85);
    backdrop-filter: blur(8px);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hm-serv-body {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
}
.hm-serv-title {
    font-family: 'Abhaya Libre', serif;
    font-size: 20px;
    font-weight: 800;
    color: #800020;
    margin: 0;
}
.hm-serv-title a {
    color: #800020;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.hm-serv-title a:hover {
    color: #b22222;
}
.hm-serv-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(128, 0, 32, 0.06);
    color: #800020;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}
.hm-serv-card:hover .hm-serv-arrow {
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    color: #ffffff;
    transform: translateX(4px);
}

/* Treatment Grid Cards */
.hm-treat-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.05);
    border: 1px solid rgba(128, 0, 32, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hm-treat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(128, 0, 32, 0.12);
}
.hm-treat-img {
    height: 200px;
    overflow: hidden;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hm-treat-img img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.hm-treat-card:hover .hm-treat-img img {
    transform: scale(1.08);
}
.hm-treat-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hm-treat-title {
    font-family: 'Abhaya Libre', serif;
    font-size: 22px;
    font-weight: 800;
    color: #800020;
    margin-bottom: 10px;
}

/* FAQ Accordion Styling */
.hm-faq-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0e6e6;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.hm-faq-header {
    padding: 20px 24px;
    background: #ffffff;
    cursor: pointer;
    font-weight: 700;
    color: #800020;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hm-faq-body {
    padding: 0 24px 20px 24px;
    color: #4a4a4a;
    font-size: 15px;
    line-height: 1.8;
}

/* Blog Cards */
.hm-blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.05);
    border: 1px solid rgba(128, 0, 32, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}
.hm-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(128, 0, 32, 0.12);
}
.hm-blog-img-box {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.hm-blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hm-blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #800020, #b22222);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(128, 0, 32, 0.3);
}

/* Form Styling */
.hm-form-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(128, 0, 32, 0.08);
    border: 1px solid rgba(128, 0, 32, 0.08);
    padding: 40px;
}
.hm-input {
    width: 100%;
    height: 50px;
    padding: 12px 18px;
    font-size: 14px;
    color: #2b2b2b;
    background-color: #f9f9f9;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    transition: all 0.25s ease;
}
.hm-input:focus {
    background-color: #ffffff;
    border-color: #800020;
    outline: none;
    box-shadow: 0 0 0 4px rgba(128, 0, 32, 0.1);
}
.hm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #800020 0%, #b22222 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.3);
    transition: all 0.3s ease;
}
.hm-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(128, 0, 32, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hm-hero-sec {
        padding: 120px 15px 50px 15px;
    }
    .hm-hero-title {
        font-size: 34px;
    }
    .hm-serv-grid {
        margin-top: 20px;
    }
    .hm-form-card {
        padding: 25px 20px;
    }
}
@media (max-width: 575px) {
    .hm-hero-title {
        font-size: 26px;
    }
    .hm-hero-text {
        font-size: 14px;
    }
}
