/* ===== Homepage Specific Styles ===== */

/* Hero Section - Split Layout */
.hero {
    margin-top: var(--navbar-h);
    min-height: calc(100vh - var(--navbar-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background-color: #000000;
    padding: 0;
    position: relative;
    overflow: clip;   /* clip instead of hidden — avoids breaking position:fixed children */
    width: 100%;
}


.hero-overlay {
    display: none;
}

.hero-content {
    padding: 80px 60px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: left;
}

.hero-content::before {
    content: 'Welcome to';
    display: block;
    font-size: 14px;
    color: var(--primary-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.hero-title {
    font-size: 100px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-primary);
    line-height: 1.1;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, var(--text-primary) 0%, rgba(252, 252, 252, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── "For Him & Her" inline beside HUB ── */
.hub-line {
    display: inline-flex;
    align-items: flex-end;
    gap: 14px;
    white-space: nowrap;
}

.hero-tagline-badge {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #D4AF37 0%, #f0c96e 40%, #c52991 80%, #e868b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    margin-bottom: 14px;
    line-height: 1;
    flex-shrink: 0;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.8;
    max-width: 500px;
    font-family: 'Montserrat', sans-serif;
}

.hero-image-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.6);
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}


/* Services Preview Section */
.services-preview {
    background-color: #000000;
    padding: 100px 20px;
}

.services-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.services-main-title {
    font-size: 42px;
    color: var(--text-primary);
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.services-main-title span {
    font-weight: 700;
}

.services-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
}

.services-desc-col p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

/* ===== Premium Category Cards (replaces old icon box) ===== */
.services-icons-wrapper {
    width: 100%;
}

.services-cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.service-cat-card {
    position: relative;
    background: linear-gradient(145deg, rgba(13,30,37,0.9) 0%, rgba(57,33,49,0.8) 100%);
    border: 1px solid rgba(197, 41, 145, 0.18);
    border-radius: 20px;
    padding: 32px 18px 26px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-cat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(197,41,145,0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-cat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(197, 41, 145, 0.6);
    box-shadow: 0 20px 50px rgba(197, 41, 145, 0.25), 0 0 0 1px rgba(197,41,145,0.1);
}

.service-cat-card:hover::before,
.service-cat-card:hover::after {
    opacity: 1;
}

.service-cat-card-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,41,145,0.3) 0%, transparent 70%);
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    transition: all 0.4s ease;
}

.service-cat-card:hover .service-cat-card-glow {
    opacity: 0;
}

.service-cat-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(197,41,145,0.2) 0%, rgba(83,24,72,0.3) 100%);
    border: 1.5px solid rgba(197, 41, 145, 0.35);
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(197,41,145,0.15);
}

.service-cat-card:hover .service-cat-icon-wrap {
    background: linear-gradient(135deg, var(--primary-accent) 0%, #8b1a5e 100%);
    border-color: var(--primary-accent);
    box-shadow: 0 8px 28px rgba(197,41,145,0.5);
    transform: scale(1.1) rotate(-5deg);
}

.service-cat-icon-wrap i {
    font-size: 26px;
    color: var(--primary-accent);
    transition: all 0.4s ease;
}

.service-cat-card:hover .service-cat-icon-wrap i {
    color: #fff;
    transform: scale(1.1);
}

.service-cat-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.service-cat-card:hover .service-cat-label {
    color: #fff;
}

.service-cat-sub {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.service-cat-card:hover .service-cat-sub {
    color: rgba(255,255,255,0.7);
}

/* Number badge on each card */
.service-cat-num {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(197,41,145,0.15);
    border: 1px solid rgba(197,41,145,0.3);
    font-size: 10px;
    font-weight: 700;
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.service-cat-card:hover .service-cat-num {
    background: var(--primary-accent);
    color: #fff;
    border-color: var(--primary-accent);
}

/* Shine sweep effect */
.service-cat-card .cat-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.service-cat-card:hover .cat-shine {
    left: 150%;
}

/* Reviews Section */
.reviews {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Change this - video was too dark */
.reviews-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.75);   /* was 0.45 - now much brighter */
}
/* Change this - overlay was too heavy */
.reviews-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.25) 100%
    );
    z-index: 1;
}
.reviews .container {
    position: relative;
    z-index: 2;
}

.reviews-header {
    max-width: 600px;
    margin-bottom: 50px;
}

.reviews-tag {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.reviews-header h2 {
    font-size: 44px;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
}

.reviews-header p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
    max-width: 520px;
}

/* Change this - force 2 columns, full width */
.reviews-grid {
    display: none; /* replaced by scroll strip */
}

/* ---- Reviews Infinite Scroll Strip ---- */
.reviews-scroll-wrapper {
    overflow: hidden;
    padding: 10px 0 20px;
    width: 100%;
    max-width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.reviews-scroll-row {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: reviewsScroll 180s linear infinite;
}

.reviews-scroll-wrapper:hover .reviews-scroll-row {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Fixed width card for the scroll strip */
.reviews-scroll-row .review-card {
    width: 340px;
    flex-shrink: 0;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.reviews-scroll-row .review-text {
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;        /* Legacy WebKit / older Safari */
    line-clamp: 4;                /* Standard property for modern browsers */
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* Change this - cards slightly more transparent/glassy */
.review-card {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 35px;
    border-radius: 12px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(197, 41, 145, 0.5);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-accent);
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    color: var(--text-primary);
    font-size: 15px;
    margin-bottom: 4px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-stars {
    color: var(--primary-accent);
    font-size: 12px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.review-service-tag {
    display: inline-block;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-accent);
    border: 1px solid rgba(197,41,145,0.35);
    background: rgba(197,41,145,0.08);
    border-radius: 20px;
    padding: 2px 10px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.review-date {
    font-size: 10px;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    opacity: 0.6;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services-header-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .services-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero: stack to single column on mobile */
    .hero {
        grid-template-columns: 1fr;
        min-height: calc(100svh - var(--navbar-h-mobile));
        margin-top: var(--navbar-h-mobile);
        padding: 0;
        overflow: clip;
        width: 100%;
    }

    .hero-content {
        padding: 44px 20px 36px;
        text-align: center;
        width: 100%;
    }
    .hero-content::before {
        text-align: center;
    }
    .hero-title {
        font-size: 46px;
        letter-spacing: 2px;
    }
    .hero-tagline-badge {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }
    .hub-line {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 32px;
    }
    .hero-image-bg {
        position: relative;
        width: 100%;
        height: 240px;
        object-fit: cover;
        mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
    }
    /* Services */
    .services-preview { padding: 56px 16px; }
    .services-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .service-cat-card { padding: 22px 12px 18px; }
    /* Reviews — remove side-mask to avoid edge artifacts on mobile */
    .reviews { padding: 56px 0; }
    .reviews-header { padding: 0 16px; }
    .reviews-header h2 { font-size: 26px; }
    .reviews-scroll-wrapper {
        -webkit-mask-image: none;
        mask-image: none;
    }
    .reviews-scroll-row .review-card { width: 270px; }
    /* Services header row */
    .services-header-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 34px; letter-spacing: 1.5px; }
    .hero-subtitle { font-size: 14px; }
    .hero-content { padding: 36px 16px 28px; }
    .services-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .service-cat-card { padding: 18px 8px 14px; }
    .service-cat-icon-wrap { width: 52px; height: 52px; }
    .service-cat-icon-wrap i { font-size: 18px; }
    .service-cat-label { font-size: 12px; }
    .service-cat-sub { font-size: 10px; }
    .reviews-header h2 { font-size: 22px; }
    .reviews-scroll-row .review-card { width: 230px; }
    .reviews-scroll-row { gap: 12px; }
}
