/* HomeV2 - Alternative Homepage Styles */
/* Uses existing brand colors: #3d1a6f (purple), #170a29 (dark purple), #fdb913 (yellow), #ed174c (red), #7d1d61 (medium purple) */

/* ── Hero ── */
.hv2-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3d1a6f 0%, #170a29 100%);
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.hv2-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hv2-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(16, 27, 38, 0.55);
    z-index: 1;
}
.hv2-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 2rem 1rem;
}
.hv2-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}
.hv2-hero h1 .hv2-accent {
    color: #fdb913;
}
.hv2-hero p.lead {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.hv2-hero-btns .btn {
    margin: 0.35rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.25s ease;
}
.hv2-btn-yellow {
    background: #fdb913;
    color: #170a29;
    border: 2px solid #fdb913;
}
.hv2-btn-yellow:hover {
    background: #e5a50f;
    border-color: #e5a50f;
    color: #170a29;
    text-decoration: none;
}
.hv2-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.hv2-btn-outline:hover {
    border-color: #fdb913;
    color: #fdb913;
    text-decoration: none;
}

/* ── Trust Bar (Awards) ── */
.hv2-trust {
    background: #fff;
    padding: 2.5rem 0;
    border-bottom: 1px solid #eee;
}
.hv2-trust img {
    height: 70px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.3s ease;
}
.hv2-trust img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.hv2-trust-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
    scroll-snap-type: x mandatory;
}
.hv2-trust-scroll img {
    height: 60px;
    flex-shrink: 0;
    scroll-snap-align: center;
}
.hv2-trust-scroll::-webkit-scrollbar {
    display: none;
}
.hv2-trust-scroll {
    scrollbar-width: none;
}

/* ── Client Logos ── */
.brand-logo-img {
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    vertical-align: middle;
}
.brand-logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── Section defaults ── */
.hv2-section {
    padding: 5rem 0;
}
.hv2-section-purple {
    background: linear-gradient(135deg, #3d1a6f 0%, #170a29 100%);
    color: #fff;
}
.hv2-section-light {
    background: #f8f7fc;
}
.hv2-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hv2-section-sub {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    line-height: 1.6;
}
.hv2-yellow-rule {
    width: 60px;
    height: 4px;
    background: #fdb913;
    border: none;
    margin: 1rem 0 1.5rem;
}
.hv2-yellow-rule-center {
    margin-left: auto;
    margin-right: auto;
}

/* ── Service Cards ── */
.hv2-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid #ede8f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hv2-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(61,26,111,0.15);
}
.hv2-service-card .hv2-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: #fff;
}
.hv2-icon-yellow { background: #fdb913; color: #170a29; }
.hv2-icon-red { background: #ed174c; }
.hv2-icon-purple { background: #7d1d61; }
.hv2-icon-dark { background: #3d1a6f; }
.hv2-service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #170a29;
}
.hv2-service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.hv2-service-card a {
    font-weight: 600;
    color: #3d1a6f;
    text-decoration: none;
    font-size: 0.9rem;
}
.hv2-service-card a:hover {
    color: #fdb913;
}

/* ── Stats ── */
.hv2-stat {
    text-align: center;
    padding: 1.5rem 1rem;
}
.hv2-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.75rem;
    color: #fdb913;
    line-height: 1;
    margin-bottom: 0.35rem;
}
.hv2-stat-label {
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ── Testimonial Slider ── */
.hv2-tslider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hv2-tslider-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}
.hv2-tslider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hv2-tslider-card {
    flex: 0 0 calc(100% / 3);
    padding: 0 0.75rem;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.hv2-testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #fdb913;
    flex-shrink: 0;
}
.hv2-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hv2-tslider-card blockquote {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    border-left: 3px solid #fdb913;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 1rem;
    flex: 1;
    display: flex;
    align-items: center;
    text-align: left;
}
.hv2-tslider-card cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0.9;
    display: block;
}
.hv2-tslider-arrow {
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.25);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hv2-tslider-arrow:hover {
    background: #fdb913;
    border-color: #fdb913;
    color: #170a29;
}
.hv2-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}
.hv2-tdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.25s ease;
}
.hv2-tdot-active, .hv2-tdot:hover { background: #fdb913; }

/* Responsive: 2 cards on tablet, 1 on mobile */
@media (max-width: 991px) {
    .hv2-tslider-card { flex: 0 0 50%; }
    .hv2-testimonial-avatar { width: 80px; height: 80px; }
}
@media (max-width: 767px) {
    .hv2-tslider-card { flex: 0 0 100%; }
    .hv2-tslider-card blockquote { padding: 1.25rem 1rem; font-size: 0.9rem; }
    .hv2-tslider-wrap { gap: 0.35rem; }
    .hv2-tslider-arrow { width: 32px; height: 32px; font-size: 0.75rem; }
    .hv2-testimonial-avatar { width: 64px; height: 64px; }
}

/* ── Recognised By ── */
.hv2-recognised {
    background: linear-gradient(135deg, #170a29 0%, #3d1a6f 100%);
    padding: 3rem 0;
    color: #fff;
}
.hv2-recognised-heading {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.75rem;
}
.hv2-recognised img {
    height: 50px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.hv2-recognised img:hover {
    opacity: 1;
}
.hv2-recognised .clutch-widget iframe {
    overflow: hidden;
}
.hv2-google-badge {
    text-align: center;
}
.hv2-google-badge .hv2-google-logo img {
    height: 24px;
}
.hv2-google-logo { margin-bottom: 0.35rem; }
.hv2-google-score {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    margin-right: 0.25rem;
}
.hv2-google-stars { font-size: 0.9rem; }
.hv2-google-link {
    display: block;
    font-size: 0.8rem;
    color: #fdb913;
    font-weight: 500;
    margin-top: 0.25rem;
}
.hv2-google-link:hover { color: #fff; text-decoration: none; }


/* ── CTA Banner ── */
.hv2-cta {
    background: #fdb913;
    color: #170a29;
    padding: 4rem 0;
    text-align: center;
}
.hv2-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.hv2-cta p {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 1.5rem;
}
.hv2-btn-purple {
    background: #3d1a6f;
    color: #fff;
    border: 2px solid #3d1a6f;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
}
.hv2-btn-purple:hover {
    background: #170a29;
    border-color: #170a29;
    color: #fff;
    text-decoration: none;
}
.hv2-btn-red {
    background: #ed174c;
    color: #fff;
    border: 2px solid #ed174c;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
}
.hv2-btn-red:hover {
    background: #d1133f;
    border-color: #d1133f;
    color: #fff;
    text-decoration: none;
}

/* ── Why MediaCast list ── */
.hv2-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hv2-check-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
}
.hv2-check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #fdb913;
}

/* ── Circle Video (More Stuff Less Fluff) ── */
.hv2-circle-video {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 3px solid #fdb913;
    box-shadow: 0 8px 30px rgba(253, 185, 19, 0.25);
}
.hv2-circle-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Portfolio preview ── */
.hv2-portfolio-img {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.hv2-portfolio-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hv2-portfolio-img:hover img {
    transform: scale(1.05);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .hv2-hero h1 { font-size: 2.5rem; }
    .hv2-section { padding: 3.5rem 0; }
    .hv2-section-heading { font-size: 1.85rem; }
}
@media (max-width: 575px) {
    .hv2-hero { min-height: 75vh; }
    .hv2-hero h1 { font-size: 2rem; }
    .hv2-hero p.lead { font-size: 1.05rem; }
    .hv2-stat-number { font-size: 2.25rem; }
    .hv2-testimonial-avatar { width: 64px; height: 64px; }
    .hv2-circle-video { width: 260px; height: 260px; }
}
