/* =========================================================
   Venture Voices - Optimized Main Stylesheet
   Structure:
   01. Variables & Fonts
   02. Base / Global Components
   03. Header
   04. Hero
   05. Services
   06. Showreel
   07. Blog Cards / Blog Listing
   08. Footer CTA
   09. Footer
   10. Inner Hero
   11. Contact Form
   12. Blog Single
   13. Animations
   14. Responsive Media Queries
========================================================= */

/* =========================
   01. Variables & Fonts
========================= */
:root {
    --bg-dark: #02050E;
    --bg-section: #070B16;
    --card-bg: #0D1220;
    --card-border: #263044;

    --text-white: #FFFFFF;
    --text-muted: #A7AAB8;
    --text-soft: #C7CAD6;

    --pink: #FF3FA4;
    --purple: #7A35FF;
    --orange: #FF8A1F;
    --cyan: #18E6D1;

    --gradient-main: linear-gradient(135deg, #FF3FA4 0%, #FF8A1F 100%);
    --gradient-purple: linear-gradient(135deg, #7A35FF 0%, #FF3FA4 100%);

    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --transition: 0.3s ease;
}

@font-face {
    font-family: 'Anton';
    src: url('../fonts/Anton-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =========================
   02. Base / Global Components
========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    background:
        radial-gradient(circle at top center, rgba(122, 53, 255, 0.16), transparent 36%),
        linear-gradient(180deg, #02050E 0%, #06101D 100%);
    background-color: var(--bg-dark);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

section {
    padding: 60px 0;
}

img,
iframe {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    padding-left: 0;
}

.btn-primary,
.contact-submit,
.footer-cta-btn {
    color: var(--text-white);
    background: var(--gradient-main);
}

.btn-primary,
.footer-cta-btn {
    box-shadow: 0 18px 44px rgba(255, 63, 164, 0.25);
}

.btn-primary:hover,
.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(255, 63, 164, 0.38);
}

.card {
    padding: 20px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    background: var(--card-bg);
}

.subtitle,
.blog-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    color: var(--pink);
    background: rgba(255, 63, 164, 0.12);
    text-transform: uppercase;
}

.subtitle {
    padding: 8px 16px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 3px;
    box-shadow: 0 0 24px rgba(255, 63, 164, 0.12);
}

.section-title {
    margin-bottom: 40px;
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================
   03. Header
========================= */
.vv-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 24px 0;
    background: transparent;
    transition: var(--transition);
}

.vv-header.is-sticky {
    padding: 14px 0;
    background: rgba(2, 5, 14, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
}

.vv-header-inner,
.vv-right,
.vv-nav,
.vv-header-btn,
.vv-logo,
.vv-menu-btn span {
    display: flex;
    align-items: center;
}

.vv-header-inner {
    justify-content: space-between;
    gap: 30px;
}

.vv-logo {
    flex-shrink: 0;
}

.vv-logo img {
    display: block;
    width: 165px;
    height: auto;
}

.vv-right {
    justify-content: flex-end;
    gap: 34px;
}

.vv-nav {
    gap: 34px;
}

.vv-nav a {
    position: relative;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: var(--transition);
}

.vv-nav a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gradient-main);
    opacity: 0;
    transform: translateX(-50%) scale(0);
    transition: var(--transition);
}

.vv-nav a:hover {
    color: var(--text-white);
}

.vv-nav a:hover::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.vv-header-btn {
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border-radius: 999px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    background: var(--gradient-main);
    box-shadow: 0 14px 34px rgba(255, 63, 164, 0.24);
    transition: var(--transition);
}

.vv-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(255, 63, 164, 0.36);
}

.vv-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(13, 18, 32, 0.65);
}

.vv-menu-btn span {
    justify-content: center;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--text-white);
    transition: var(--transition);
}

/* =========================
   04. Hero
========================= */
.hero-section h1,
.inner-hero h1 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 3.9vw, 4rem);
    line-height: 1.2;
}

.hero-section h1 span,
.inner-hero h1 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 1.125rem;
}

.hero-podcast-slider-wrap {
    position: relative;
    max-width: 620px;
    margin-left: auto;
    padding: 65px 35px 70px;
}

.heroPodcastSwiper {
    position: relative;
    overflow: visible;
}

.hero-podcast-card {
    position: relative;
    height: 540px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 34px;
    background: var(--card-bg);
    box-shadow: 0 36px 90px rgba(0,0,0,0.5), 0 0 70px rgba(255,63,164,0.18);
}

.hero-podcast-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 55%, rgba(2,5,14,0.55)),
        radial-gradient(circle at 50% 18%, transparent 34%, rgba(2,5,14,0.15));
}

.hero-podcast-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-tag {
    position: absolute;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 12px 18px;
    border-radius: 40px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(255,63,164,0.65), rgba(122,53,255,0.45));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.35);
    animation: heroTagFloat 4s ease-in-out infinite;
}

.hero-tag span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.hero-tag-1 { top: 30px; left: 0; }
.hero-tag-2 { top: 105px; right: -12px; background: linear-gradient(135deg, rgba(255,63,164,0.58), rgba(255,138,31,0.46)); animation-delay: .4s; }
.hero-tag-3 { left: -8px; bottom: 165px; background: linear-gradient(135deg, rgba(122,53,255,0.65), rgba(255,63,164,0.42)); animation-delay: .8s; }
.hero-tag-4 { right: -8px; bottom: 145px; background: linear-gradient(135deg, rgba(255,63,164,0.55), rgba(255,138,31,0.5)); animation-delay: 1.2s; }
.hero-tag-5 { left: 50%; bottom: 24px; transform: translateX(-50%); background: linear-gradient(135deg, rgba(255,63,164,0.58), rgba(255,138,31,0.42)); animation-delay: 1.6s; }

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 46px;
    height: 46px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 32px;
    line-height: 1;
    background: rgba(13,18,32,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.hero-slider-prev { left: 5px; }
.hero-slider-next { right: 5px; }

.hero-slider-prev:hover,
.hero-slider-next:hover {
    border-color: transparent;
    background: var(--gradient-main);
}

.hero-slider-pagination {
    position: absolute;
    left: 50% !important;
    bottom: -45px !important;
    display: flex;
    gap: 9px;
    width: auto !important;
    transform: translateX(-50%);
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    opacity: 1;
    background: rgba(255,255,255,0.35);
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    background: var(--pink);
    box-shadow: 0 0 18px rgba(255,63,164,0.8);
}

/* =========================
   05. Services
========================= */
.services-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.section-heading {
    position: relative;
    margin-bottom: 45px;
    text-align: center;
}

.section-heading::before,
.section-heading::after {
    content: "";
    position: absolute;
    top: 45px;
    width: 230px;
    height: 30px;
    opacity: 0.7;
    background: linear-gradient(90deg, transparent, var(--purple), var(--pink), var(--orange), transparent);
    clip-path: polygon(0 55%, 4% 45%, 8% 60%, 12% 35%, 16% 65%, 20% 40%, 24% 70%, 28% 35%, 32% 60%, 36% 45%, 40% 65%, 44% 40%, 48% 60%, 52% 45%, 56% 70%, 60% 35%, 64% 65%, 68% 40%, 72% 60%, 76% 45%, 80% 65%, 84% 35%, 88% 60%, 92% 45%, 96% 55%, 100% 50%, 100% 56%, 96% 61%, 92% 51%, 88% 66%, 84% 41%, 80% 71%, 76% 51%, 72% 66%, 68% 46%, 64% 71%, 60% 41%, 56% 76%, 52% 51%, 48% 66%, 44% 46%, 40% 71%, 36% 51%, 32% 66%, 28% 41%, 24% 76%, 20% 46%, 16% 71%, 12% 41%, 8% 66%, 4% 51%, 0 61%);
}

.section-heading::before { left: 0; }
.section-heading::after { right: 0; }

.section-heading span {
    display: block;
    margin-bottom: 20px;
    color: var(--pink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: var(--text-white);
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.services-row .col {
    width: 100%;
}

.service-card {
    height: 100%;
    min-height: 245px;
    padding: 28px 22px 24px;
    border: 1px solid rgba(94, 111, 139, 0.38);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, rgba(18, 25, 42, 0.84), rgba(7, 12, 23, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 45px rgba(0, 0, 0, 0.22);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 63, 164, 0.45);
    background: linear-gradient(180deg, rgba(23, 31, 51, 0.95), rgba(8, 13, 25, 0.95));
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 26px;
    border-radius: 50%;
}

.service-icon svg {
    width: 29px;
    height: 29px;
}

.service-icon.purple { color: #8B4DFF; background: rgba(122, 53, 255, 0.18); box-shadow: 0 0 20px rgba(122, 53, 255, 0.25); }
.service-icon.pink { color: var(--pink); background: rgba(255, 63, 164, 0.16); box-shadow: 0 0 20px rgba(255, 63, 164, 0.22); }
.service-icon.orange { color: #FF9A1F; background: rgba(255, 138, 31, 0.16); box-shadow: 0 0 20px rgba(255, 138, 31, 0.22); }
.service-icon.cyan { color: var(--cyan); background: rgba(24, 230, 209, 0.14); box-shadow: 0 0 20px rgba(24, 230, 209, 0.2); }

.service-card h3 {
    margin: 0 0 14px;
    color: var(--text-white);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
}

.service-card p {
    margin: 0 0 22px;
    color: #B0B5C4;
    font-size: 14px;
    line-height: 1.6;
}

.learn-link {
    display: inline-flex;
    color: var(--pink);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}

.learn-link:hover { transform: translateX(4px); }
.learn-link.purple { color: #8B4DFF; }
.learn-link.pink { color: var(--pink); }
.learn-link.orange { color: #FF9A1F; }
.learn-link.cyan { color: var(--cyan); }

/* =========================
   06. Showreel
========================= */
.video-card,
.reel-video {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
}

.video-card {
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.long-video {
    aspect-ratio: 16 / 9;
}

.reel-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 10px;
}

.showreel-video,
.reel-video iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.showreel-video {
    object-fit: cover;
}

.reel-video iframe {
    border: 0;
}

.reels-slider-wrap,
.reelsSwiper {
    width: 100%;
}

.reels-slider-wrap {
    position: relative;
}

.reelsSwiper {
    overflow: hidden;
}

.reelsSwiper .swiper-slide {
    height: auto;
}

.reels-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.reels-prev,
.reels-next {
    width: 42px;
    height: 42px;
    cursor: pointer;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 18px;
    background: var(--card-bg);
    transition: var(--transition);
}

.reels-prev:hover,
.reels-next:hover {
    border-color: transparent;
    background: var(--gradient-main);
}

.reels-prev.swiper-button-disabled,
.reels-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* =========================
   07. Blog Cards / Blog Listing
========================= */
.blog-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.blog-section::before,
.blog-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    pointer-events: none;
}

.blog-section::before {
    left: -160px;
    top: 20%;
    background: radial-gradient(circle, rgba(255, 63, 164, 0.13), transparent 65%);
}

.blog-section::after {
    right: -160px;
    bottom: 5%;
    background: radial-gradient(circle, rgba(122, 53, 255, 0.14), transparent 65%);
}

.blog-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 22px;
}

.blog-item,
.blog-single-main {
    min-width: 0;
}

.blog-featured {
    grid-row: span 2;
}

.blog-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(94, 111, 139, 0.38);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(18, 25, 42, 0.9), rgba(7, 12, 23, 0.95));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 70px rgba(0, 0, 0, 0.28);
    transition: var(--transition);
}

.blog-card:hover,
.blog-grid .card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 63, 164, 0.45);
}

.blog-card:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 90px rgba(0, 0, 0, 0.36);
}

.blog-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.blog-featured .blog-img {
    height: 360px;
}

.blog-img::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 45%, rgba(2, 5, 14, 0.55)),
        radial-gradient(circle at top right, rgba(255, 63, 164, 0.18), transparent 40%);
}

.blog-img img,
.blog-grid .card img {
    width: 100%;
    object-fit: cover;
}

.blog-img img {
    height: 100%;
    transition: 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-content {
    padding: 22px;
}

.blog-featured .blog-content {
    padding: 28px;
}

.blog-category {
    padding: 7px 12px;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.blog-card h3,
.blog-grid h3 {
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 21px;
}

.blog-grid h3 {
    font-size: 24px;
}

.blog-featured h3 {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.blog-card p,
.blog-grid p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.blog-card p {
    font-size: 14px;
    line-height: 1.65;
}

.blog-featured p {
    font-size: 16px;
}

.blog-link,
.blog-readmore {
    display: inline-flex;
    align-items: center;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition);
}

.blog-link:hover,
.blog-readmore:hover {
    color: var(--pink);
    transform: translateX(4px);
}

.blog-grid .card {
    height: 100%;
    transition: var(--transition);
}

.blog-grid .card img {
    height: 220px;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
}

.blog-featured .card img {
    height: 360px;
}

/* =========================
   08. Footer CTA
========================= */
.footer-cta-section {
    position: relative;
    z-index: 5;
    padding: 70px 0 0;
    margin-bottom: -95px;
}

.footer-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 230px;
    padding: 46px 52px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 63, 164, 0.34), transparent 32%),
        radial-gradient(circle at 88% 30%, rgba(255, 138, 31, 0.28), transparent 34%),
        linear-gradient(135deg, rgba(13, 18, 32, 0.96), rgba(7, 11, 22, 0.98));
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-cta::before,
.footer-cta::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.footer-cta::before {
    inset: 0;
    opacity: 0.45;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 34px);
}

.footer-cta::after {
    right: -90px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 63, 164, 0.42), transparent 68%);
    filter: blur(4px);
}

.footer-cta-content,
.footer-cta-actions {
    position: relative;
    z-index: 2;
}

.footer-cta .subtitle {
    margin-bottom: 18px;
}

.footer-cta h2 {
    max-width: 760px;
    margin: 0;
    color: var(--text-white);
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.footer-cta p {
    max-width: 640px;
    margin: 20px 0 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.footer-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    flex-shrink: 0;
}

.footer-cta-link {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 800;
    transition: var(--transition);
}

.footer-cta-link:hover {
    color: var(--pink);
    transform: translateX(4px);
}

/* =========================
   09. Footer
========================= */
.site-footer {
    padding: 150px 0 24px;
    color: var(--text-white);
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-brand p,
.footer-newsletter p {
    max-width: 360px;
    margin-bottom: 22px;
    color: var(--text-muted);
    line-height: 1.7;
}

.site-footer h4 {
    margin-bottom: 20px;
    color: var(--text-white);
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 12px;
}

.site-footer a {
    color: var(--text-muted);
    transition: var(--transition);
}

.site-footer a:hover {
    color: var(--pink);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--text-white);
    background: var(--card-bg);
    font-size: 13px;
    font-weight: 700;
}

.footer-social a:hover {
    color: var(--text-white);
    border-color: transparent;
    background: var(--gradient-main);
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
    padding: 6px;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    background: var(--card-bg);
}

.footer-newsletter input {
    width: 100%;
    padding: 0 14px;
    color: var(--text-white);
    border: 0;
    outline: none;
    background: transparent;
}

.footer-newsletter input::placeholder {
    color: var(--text-muted);
}

.footer-newsletter button {
    padding: 13px 20px;
    cursor: pointer;
    border: 0;
    border-radius: 999px;
    color: var(--text-white);
    background: var(--gradient-main);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
}

/* =========================
   10. Inner Hero
========================= */
.inner-hero {
    position: relative;
    padding: 100px 0 70px;
    overflow: hidden;
}

.inner-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 520px;
    height: 520px;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 63, 164, 0.18), transparent 65%);
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
}

.inner-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.breadcrumb {
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-white);
}

.breadcrumb span {
    color: var(--pink);
}

/* =========================
   11. Contact Form
========================= */
.contact-form {
    display: grid;
    gap: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    color: var(--text-white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    outline: none;
    background: rgba(255,255,255,0.04);
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    min-height: 140px;
    padding-top: 14px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
}

/* =========================
   12. Blog Single
========================= */
.blog-single-section {
    padding: 80px 0;
}

.blog-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

.blog-single-image {
    padding: 0;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.blog-single-image img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    font-size: 13px;
    font-weight: 700;
}

.blog-single-content {
    padding: 40px;
}

.blog-single-content p {
    margin-bottom: 22px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.85;
}

.blog-single-content h2 {
    margin: 42px 0 18px;
    color: var(--text-white);
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    line-height: 1.1;
    text-transform: uppercase;
}

.blog-single-content h3 {
    margin: 34px 0 16px;
    color: var(--text-white);
    font-size: 26px;
    line-height: 1.25;
}

.blog-single-content ul,
.blog-single-content ol {
    margin: 0 0 26px 22px;
    color: var(--text-soft);
    line-height: 1.8;
}

.blog-single-content li {
    margin-bottom: 8px;
}

.blog-single-content blockquote {
    position: relative;
    margin: 34px 0;
    padding: 28px 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--pink);
    border-radius: 22px;
    color: var(--text-white);
    background: radial-gradient(circle at top left, rgba(255, 63, 164, 0.22), transparent 45%), rgba(255,255,255,0.04);
    font-size: 22px;
    line-height: 1.5;
    font-weight: 800;
}

.blog-author-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    padding: 24px;
}

.blog-author-box img {
    flex-shrink: 0;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-box h4 {
    margin-bottom: 6px;
    font-size: 20px;
}

.blog-author-box p {
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 20px;
}

.sidebar-widget {
    padding: 24px;
}

.sidebar-widget h3 {
    margin-bottom: 14px;
    font-size: 20px;
}

.sidebar-widget p {
    margin-bottom: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

.sidebar-widget ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.sidebar-widget a:not(.btn) {
    color: var(--text-muted);
    transition: var(--transition);
}

.sidebar-widget a:not(.btn):hover {
    color: var(--pink);
}

/* =========================
   13. Animations
========================= */
@keyframes heroTagFloat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -10px; }
}

/* =========================================================
   14. Responsive Media Queries
   All breakpoints are grouped at the bottom.
========================================================= */

@media (max-width: 1200px) {
    .services-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-heading::before,
    .section-heading::after {
        width: 160px;
    }
}

@media (max-width: 991px) {
    .vv-header { padding: 16px 0; }
    .vv-header.is-sticky { padding: 12px 0; }
    .vv-logo img { width: 145px; }
    .vv-right { gap: 14px; }

    .vv-menu-btn {
        position: relative;
        z-index: 1001;
        display: block;
    }

    .vv-nav {
        position: absolute;
        top: 0;
        transform: translateX(100%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: min(360px, 86vw);
        height: 100vh;
        padding: 110px 28px 30px;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        background:
            radial-gradient(circle at top right, rgba(255, 63, 164, 0.22), transparent 36%),
            linear-gradient(180deg, rgba(7, 11, 22, 0.98), rgba(2, 5, 14, 0.98));
        box-shadow: -24px 0 70px rgba(0, 0, 0, 0.45);
        transition: 0.4s ease;
    }

    .vv-nav.active { transform: translateX(0%); }

    .vv-nav a {
        width: 100%;
        padding: 20px 0;
        color: var(--text-white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-family: 'Anton', sans-serif;
        font-size: 24px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .vv-nav a::before { display: none; }
    .vv-nav a:hover { color: var(--pink); }

    .vv-menu-btn.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .vv-menu-btn.active span:nth-child(2) { opacity: 0; }
    .vv-menu-btn.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    body.vv-menu-open { overflow: hidden; }

    .hero-podcast-slider-wrap {
        max-width: 620px;
        margin: 20px auto 0;
    }

    .services-row,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading::before,
    .section-heading::after {
        display: none;
    }

    .blog-featured {
        grid-column: span 2;
        grid-row: auto;
    }

    .blog-featured .blog-img {
        height: 340px;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }

    .footer-cta-actions {
        flex-flow: row wrap;
        align-items: center;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-single-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    section { padding: 50px 0; }

    .hero-podcast-slider-wrap {
        padding: 58px 0 70px;
    }

    .hero-podcast-card {
        height: 430px;
        border-radius: var(--radius-lg);
    }

    .hero-tag {
        min-height: 44px;
        padding: 8px 11px;
        font-size: 11px;
    }

    .hero-tag span {
        width: 27px;
        height: 27px;
    }

    .hero-tag-1 { top: 16px; left: 6px; }
    .hero-tag-2 { top: 75px; right: 6px; }
    .hero-tag-3 { left: 6px; bottom: 140px; }
    .hero-tag-4 { right: 6px; bottom: 118px; }
    .hero-tag-5 { bottom: 24px; }

    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 26px;
    }

    .services-section,
    .blog-section {
        padding: 60px 0;
    }

    .services-row,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-featured {
        grid-column: auto;
    }

    .blog-img,
    .blog-featured .blog-img,
    .blog-featured .card img,
    .blog-grid .card img {
        height: 230px;
    }

    .blog-content,
    .blog-featured .blog-content {
        padding: 20px;
    }

    .blog-featured h3 {
        font-size: 28px;
    }

    .blog-card h3 {
        font-size: 21px;
    }

    .footer-cta-section {
        padding-top: 45px;
        margin-bottom: -75px;
    }

    .footer-cta {
        min-height: auto;
        padding: 30px 22px;
        border-radius: var(--radius-lg);
    }

    .footer-cta h2 {
        font-size: 34px;
    }

    .footer-cta p {
        font-size: 15px;
    }

    .footer-cta-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .footer-cta-btn,
    .footer-cta-link {
        width: 100%;
        text-align: center;
    }

    .site-footer {
        padding: 135px 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 36px;
    }

    .footer-newsletter form {
        flex-direction: column;
        padding: 10px;
        border-radius: var(--radius-md);
    }

    .footer-newsletter input {
        min-height: 46px;
    }

    .footer-newsletter button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .showreel-section {
        padding: 55px 0;
    }

    .showreel-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .video-card {
        border-radius: 16px;
    }

    .inner-hero {
        padding: 70px 0 50px;
    }

    .inner-hero h1 {
        font-size: 38px;
    }

    .inner-hero p {
        font-size: 16px;
    }

    .blog-single-section {
        padding: 55px 0;
    }

    .blog-single-image img {
        height: 260px;
    }

    .blog-single-content {
        padding: 24px;
    }

    .blog-single-content p {
        font-size: 16px;
    }

    .blog-single-content h2 {
        font-size: 28px;
    }

    .blog-single-content h3 {
        font-size: 22px;
    }

    .blog-single-content blockquote {
        padding: 22px;
        font-size: 18px;
    }

    .blog-author-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .vv-logo img {
        width: 132px;
    }

    .vv-header-btn {
        display: none;
    }

    .vv-nav {
        width: 100%;
        right: -100%;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-row {
        gap: 16px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .service-card {
        min-height: auto;
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .hero-podcast-card {
        height: 380px;
    }

    .hero-tag-1,
    .hero-tag-3 {
        left: 0;
    }

    .hero-tag-2,
    .hero-tag-4 {
        right: 0;
    }
}
