﻿/* ============================================
   SOUDIFY RECORDING STUDIOS - EXACT DESIGN
   ============================================ */

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Radio+Canada+Big:wght@400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
    /* Colors - Original Soudify */
    --color-primary: #FB16B9;
    --color-secondary: #7545ED;
    --color-blue: #2196F3;
    --color-purple: #260D52;
    --color-gradient: linear-gradient(135deg, #FB16B9 0%, #7545ED 100%);
    --color-gradient-blue: linear-gradient(135deg, #2196F3 0%, #7545ED 100%);
    --color-dark: #1a1a2e;
    --color-darker: #0f0f1a;
    --color-light: #ffffff;
    --color-gray: #666666;
    --color-gray-light: #f5f5f5;
    --color-text: #3E3E3E;

    /* Typography */
    --font-heading: 'Anton', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Radio Canada Big', 'Inter', -apple-system, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1400px;
    --gap: 30px;

    /* Transitions */
    --transition: 0.3s ease;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h4 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
}

.btn-white {
    background: var(--color-light);
    color: var(--color-text);
}

.btn-white:hover {
    background: var(--color-primary);
    color: white;
}

.btn-gradient {
    background: var(--color-gradient-blue);
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(117, 69, 237, 0.4);
}

.btn-purple {
    background: var(--color-purple);
    color: white;
}

.btn-pink {
    background: var(--color-primary);
    color: white;
}

.btn-pink:hover {
    background: #d010a0;
}

.btn-icon {
    width: 10px;
    height: 10px;
    background: var(--color-primary);
}

/* ===== Decorative Triangle ===== */
.triangle {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 1;
}

.triangle-pink {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 140px solid var(--color-primary);
}

.triangle-blue {
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 100px solid var(--color-blue);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo-icon {
    width: 35px;
    height: 25px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.logo-bar {
    width: 5px;
    background: var(--color-primary);
    border-radius: 2px;
}

.logo-bar:nth-child(1) {
    height: 60%;
}

.logo-bar:nth-child(2) {
    height: 100%;
}

.logo-bar:nth-child(3) {
    height: 40%;
}

.logo-bar:nth-child(4) {
    height: 80%;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-link:hover {
    color: var(--color-primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: white;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: white;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero h1 {
    color: white;
    margin-bottom: 25px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero .triangle {
    bottom: 0;
    left: 30px;
    transform: rotate(180deg);
}

/* ===== About Section (White) ===== */
.about {
    padding: var(--section-padding) 0;
    background: var(--color-light);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    max-width: 600px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-label svg {
    width: 20px;
    height: 20px;
}

.about h2 {
    color: var(--color-text);
    margin-bottom: 30px;
}

.about p {
    color: var(--color-gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature span {
    font-size: 15px;
    color: var(--color-text);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.trustpilot-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
}

.trustpilot-stars {
    color: #00b67a;
    letter-spacing: 2px;
}

/* ===== Awards Section ===== */
.awards {
    padding: 60px 0;
    background: var(--color-light);
    border-top: 1px solid #eee;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.award-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    border-right: 1px solid #eee;
}

.award-item:last-child {
    border-right: none;
}

.award-year {
    font-family: var(--font-heading);
    font-size: 48px;
    color: #ddd;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.award-content {
    text-align: left;
}

.award-icon {
    color: var(--color-blue);
    margin-bottom: 10px;
}

.award-content h4 {
    color: var(--color-text);
    font-size: 18px;
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding) 0;
    background: var(--color-gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--color-text);
}

/* === Services Badge === */
.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 22, 185, 0.06);
    border: 1px solid rgba(251, 22, 185, 0.15);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.services-badge i {
    width: 16px;
    height: 16px;
}

.services-subtitle {
    color: var(--color-gray);
    font-size: 17px;
    line-height: 1.6;
    max-width: 550px;
    margin: 12px auto 0;
}

/* === Services Grid === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* === Individual Service Card === */
.svc-card {
    position: relative;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.svc-card:hover {
    transform: translateY(-10px);
}

/* Glow div hidden â€” effect handled via box-shadow */
.svc-card-glow {
    display: none;
}

/* Hover glow via box-shadow */
.svc-card[data-color="warm"]:hover {
    border-color: rgba(255, 138, 61, 0.25);
    box-shadow:
        0 20px 60px rgba(255, 138, 61, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 138, 61, 0.1);
}

.svc-card[data-color="blue"]:hover {
    border-color: rgba(33, 150, 243, 0.25);
    box-shadow:
        0 20px 60px rgba(33, 150, 243, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(33, 150, 243, 0.1);
}

.svc-card[data-color="purple"]:hover {
    border-color: rgba(117, 69, 237, 0.25);
    box-shadow:
        0 20px 60px rgba(117, 69, 237, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(117, 69, 237, 0.1);
}

/* === Card Header === */
.svc-card-header {
    position: relative;
    z-index: 1;
    padding: 28px 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.svc-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -1px;
    display: inline-block;
    padding: 2px 4px;
}

.svc-card[data-color="warm"] .svc-number {
    color: #FF8A3D;
}

.svc-card[data-color="blue"] .svc-number {
    color: var(--color-blue);
}

.svc-card[data-color="purple"] .svc-number {
    color: var(--color-secondary);
}

/* Icon wrap */
.svc-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-card:hover .svc-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.svc-icon-wrap i {
    width: 28px;
    height: 28px;
}

.svc-card[data-color="warm"] .svc-icon-wrap {
    background: linear-gradient(135deg, rgba(255, 138, 61, 0.1), rgba(251, 22, 185, 0.08));
    color: #FF8A3D;
}

.svc-card[data-color="warm"]:hover .svc-icon-wrap {
    box-shadow: 0 8px 25px rgba(255, 138, 61, 0.2);
}

.svc-card[data-color="blue"] .svc-icon-wrap {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(117, 69, 237, 0.06));
    color: var(--color-blue);
}

.svc-card[data-color="blue"]:hover .svc-icon-wrap {
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
}

.svc-card[data-color="purple"] .svc-icon-wrap {
    background: linear-gradient(135deg, rgba(117, 69, 237, 0.1), rgba(251, 22, 185, 0.06));
    color: var(--color-secondary);
}

.svc-card[data-color="purple"]:hover .svc-icon-wrap {
    box-shadow: 0 8px 25px rgba(117, 69, 237, 0.2);
}

/* === Card Body === */
.svc-card-body {
    position: relative;
    z-index: 1;
    padding: 24px 28px 0;
    flex: 1;
}

.svc-card-body h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.svc-tagline {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 20px;
    font-style: italic;
}

/* Features list */
.svc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: padding-left 0.3s ease;
}

.svc-features li:last-child {
    border-bottom: none;
}

.svc-card:hover .svc-features li {
    padding-left: 4px;
}

.svc-features li i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.svc-card[data-color="warm"] .svc-features li i {
    color: #FF8A3D;
}

.svc-card[data-color="blue"] .svc-features li i {
    color: var(--color-blue);
}

.svc-card[data-color="purple"] .svc-features li i {
    color: var(--color-secondary);
}

/* Meta info */
.svc-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.svc-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-gray);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.svc-meta-item i {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* === Card Footer === */
.svc-card-footer {
    position: relative;
    z-index: 1;
    padding: 20px 28px 28px;
}

/* Primary button (warm/featured) */
.svc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.svc-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.svc-btn:hover i {
    transform: translateX(4px);
}

.svc-btn-primary {
    background: linear-gradient(135deg, #FF8A3D, #FB16B9);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 138, 61, 0.3);
}

.svc-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 138, 61, 0.45);
    transform: translateY(-2px);
}

.svc-btn-outline {
    background: white;
    color: var(--color-text);
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.svc-card[data-color="blue"] .svc-btn-outline:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
    background: rgba(33, 150, 243, 0.04);
}

.svc-card[data-color="purple"] .svc-btn-outline:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: rgba(117, 69, 237, 0.04);
}

/* === "Najpopularniejsze" badge === */
.svc-badge-popular {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF8A3D, #FB16B9);
    color: white;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin: 16px 28px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 138, 61, 0.25);
    width: fit-content;
}

.svc-badge-popular i {
    width: 14px;
    height: 14px;
}

/* === Featured card (warm) extra emphasis === */
.svc-card[data-color="warm"] {
    border: 1px solid rgba(255, 138, 61, 0.15);
    box-shadow: 0 4px 30px rgba(255, 138, 61, 0.06);
}

/* === Trust Strip === */
.services-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 60px;
    padding: 28px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.services-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gray);
    font-size: 14px;
    font-weight: 500;
}

.services-trust-item i {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* === Responsive === */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Featured card spans full width on tablet */
    .svc-card[data-color="warm"] {
        grid-column: 1 / -1;
    }

    .services-trust {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .svc-card[data-color="warm"] {
        grid-column: auto;
    }

    .services-trust {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .services-subtitle {
        font-size: 15px;
    }
}

/* ===== Booking Section ===== */
.booking {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-purple);
    overflow: hidden;
}

.booking .triangle {
    top: -50px;
    left: 200px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-image {
    position: relative;
}

.booking-image img {
    width: 100%;
    border-radius: 8px;
}

.booking-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 8px;
    position: relative;
    z-index: 10;
}

.booking-form-wrapper h3 {
    color: var(--color-text);
    margin-bottom: 30px;
    font-size: 24px;
}

.booking-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.booking-form .btn-pink {
    width: 100%;
    justify-content: center;
    padding: 20px;
    font-size: 16px;
    gap: 10px;
}

.booking-form .btn-pink svg {
    width: 18px;
    height: 18px;
}

/* Contact Form Specific Styles */
.contact-subtitle {
    color: var(--color-gray);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #f9f9f9;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

/* Form Status Messages */
.form-status {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.form-status.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-status.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-status a {
    color: inherit;
    text-decoration: underline;
}

.booking-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== Studio Showcase Section ===== */
.studio-showcase-wrapper {
    position: relative;
}

.studio-separator {
    height: 100px;
    background: var(--color-gray-light);
    position: relative;
}

.studio-showcase {
    position: relative;
    padding: 120px 0 80px;
    overflow: visible;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.studio-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.studio-bg img,
.studio-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(38, 13, 82, 0.85) 0%, rgba(117, 69, 237, 0.7) 100%);
}

.studio-triangles {
    position: absolute;
    top: 0;
    left: 80px;
    z-index: 10;
    transform: translateY(-50%);
}

.studio-triangles .triangle-blue {
    position: absolute;
    top: 0;
    left: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-top: 120px solid #7545ED;
}

.studio-triangles .triangle-pink {
    position: absolute;
    top: 30px;
    left: 70px;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-top: 160px solid var(--color-primary);
}

.studio-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    margin-bottom: 50px;
}

.studio-text h2 {
    color: white;
    max-width: 650px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 15px;
}

.studio-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 550px;
}

.studio-showcase .btn-white {
    flex-shrink: 0;
}

.studio-features {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.studio-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.studio-feature i {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.studio-feature span {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CTA Section ===== */
.cta-wrapper {
    position: relative;
}

/* Gray bar separator above CTA */
.cta-separator {
    height: 100px;
    background: var(--color-gray-light);
    position: relative;
}

.cta {
    position: relative;
    padding: 120px 0 0;
    overflow: visible;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cta-bg img,
.cta-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15, 15, 26, 0.95) 0%, rgba(38, 13, 82, 0.85) 50%, rgba(15, 15, 26, 0.92) 100%);
}

/* Triangles positioned to overlap from gray bar */
.cta-triangles {
    position: absolute;
    top: 0;
    left: 80px;
    z-index: 10;
    transform: translateY(-50%);
}

.cta-triangles .triangle-blue {
    position: absolute;
    top: 0;
    left: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-top: 120px solid #7545ED;
}

.cta-triangles .triangle-pink {
    position: absolute;
    top: 30px;
    left: 70px;
    border-left: 90px solid transparent;
    border-right: 90px solid transparent;
    border-top: 160px solid var(--color-primary);
}

/* === CTA Premium Content === */
.cta-content-premium {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 22, 185, 0.12);
    border: 1px solid rgba(251, 22, 185, 0.25);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.cta-badge i {
    width: 16px;
    height: 16px;
}

.cta h2 {
    color: white;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.cta-highlight {
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
    font-family: var(--font-body);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--color-gradient);
    color: white;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 60px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 30px rgba(251, 22, 185, 0.35);
}

.btn-cta-primary i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(251, 22, 185, 0.5);
}

.btn-cta-primary:hover i {
    transform: translateX(4px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: white;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 60px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* === Stats Strip === */
.cta-stats {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 70px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 50px;
}

.cta-stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    background: var(--color-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.cta-stat-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* === Clients Trust Strip === */
.clients-trust-strip {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 28px 0;
}

.clients-trust-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.clients-trust-label {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    padding-right: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.clients-trust-logos {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.clients-trust-logos .marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.clients-trust-logos .marquee-wrapper::before,
.clients-trust-logos .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-trust-logos .marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
}

.clients-trust-logos .marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.3), transparent);
}

.clients-trust-logos .marquee-content {
    display: inline-flex;
    animation: marqueeScroll 25s linear infinite;
}

.client-logo-item {
    padding: 0 35px;
    font-size: 18px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.25);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    cursor: default;
    white-space: nowrap;
}

.client-logo-item:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* CTA Responsive */
@media (max-width: 768px) {
    .cta {
        padding: 100px 0 0;
        min-height: auto;
    }

    .cta h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 50px;
        padding: 30px 0;
    }

    .cta-stat {
        padding: 0;
    }

    .cta-stat-number {
        font-size: 36px;
    }

    .cta-stat-divider {
        width: 60px;
        height: 1px;
    }

    .clients-trust-inner {
        flex-direction: column;
        gap: 15px;
    }

    .clients-trust-label {
        border-right: none;
        padding-right: 0;
    }
}

/* ===== Blog Section - Premium Redesign ===== */
.blog-section {
    padding: var(--section-padding) 0;
    background: var(--color-gray-light);
}

/* --- Blog Header --- */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.blog-header-left h2 {
    color: var(--color-text);
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(117, 69, 237, 0.06);
    border: 1px solid rgba(117, 69, 237, 0.15);
    color: var(--color-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blog-badge i {
    width: 16px;
    height: 16px;
}

.blog-subtitle {
    color: var(--color-gray);
    font-size: 17px;
    line-height: 1.6;
    margin-top: 10px;
    max-width: 480px;
}

.blog-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog-see-all i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.blog-see-all:hover {
    color: var(--color-primary);
}

.blog-see-all:hover i {
    transform: translateX(5px);
}

/* --- Blog Grid (Featured + 3 stacked) --- */
.blog-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    min-height: 520px;
}

/* =============================================
   PREMIUM BLOG CARD (standard - small cards)
   ============================================= */
.bp-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.bp-card:hover {
    transform: translateY(-4px);
}

/* Hover glow per category */
.bp-card[data-cat="warm"]:hover {
    border-color: rgba(255, 138, 61, 0.2);
    box-shadow: 0 12px 40px rgba(255, 138, 61, 0.12), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.bp-card[data-cat="blue"]:hover {
    border-color: rgba(33, 150, 243, 0.2);
    box-shadow: 0 12px 40px rgba(33, 150, 243, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
}

.bp-card[data-cat="purple"]:hover {
    border-color: rgba(117, 69, 237, 0.2);
    box-shadow: 0 12px 40px rgba(117, 69, 237, 0.1), 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* Accent bottom line */
.bp-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bp-card:hover::after {
    transform: scaleX(1);
}

.bp-card[data-cat="warm"]::after {
    background: linear-gradient(90deg, #FF8A3D, #FB16B9);
}

.bp-card[data-cat="blue"]::after {
    background: linear-gradient(90deg, #2196F3, #00BCD4);
}

.bp-card[data-cat="purple"]::after {
    background: linear-gradient(90deg, #7545ED, #9C27B0);
}

/* --- Small Card Image (left side) --- */
.bp-card-img {
    position: relative;
    width: 140px;
    min-height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.bp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bp-card:hover .bp-card-img img {
    transform: scale(1.08);
}

.bp-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Category pill (on small cards) */
.bp-card:not(.bp-card--featured) .bp-cat-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    z-index: 2;
}

/* --- Small Card Body (right side) --- */
.bp-card-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

.bp-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.bp-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--color-gray);
    letter-spacing: 0.3px;
}

.bp-meta-item i {
    width: 13px;
    height: 13px;
    opacity: 0.5;
}

.bp-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.bp-card-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bp-card:hover .bp-card-title a {
    color: var(--color-primary);
}

.bp-card-excerpt {
    color: var(--color-gray);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bp-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.bp-card[data-cat="warm"] .bp-card-link,
.bp-card[data-cat="warm"] .bp-cat-pill {
    color: #FF8A3D;
}

.bp-card[data-cat="warm"] .bp-cat-pill {
    background: linear-gradient(135deg, #FF8A3D, #FB16B9);
    color: white;
}

.bp-card[data-cat="blue"] .bp-card-link,
.bp-card[data-cat="blue"] .bp-cat-pill {
    color: var(--color-blue);
}

.bp-card[data-cat="blue"] .bp-cat-pill {
    background: linear-gradient(135deg, #2196F3, #00BCD4);
    color: white;
}

.bp-card[data-cat="purple"] .bp-card-link,
.bp-card[data-cat="purple"] .bp-cat-pill {
    color: var(--color-secondary);
}

.bp-card[data-cat="purple"] .bp-cat-pill {
    background: linear-gradient(135deg, #7545ED, #9C27B0);
    color: white;
}

.bp-card-link i {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.bp-card-link:hover i {
    transform: translateX(4px);
}

/* =============================================
   FEATURED CARD (hero style - left column)
   ============================================= */
.bp-card--featured {
    grid-column: 1;
    grid-row: 1 / 4;
    flex-direction: column;
    border: none;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
}

.bp-card--featured::after {
    display: none;
}

.bp-card--featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.bp-featured-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.bp-featured-img {
    position: relative;
    flex: 1;
    min-height: 300px;
    overflow: hidden;
}

.bp-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bp-card--featured:hover .bp-featured-img img {
    transform: scale(1.05);
}

.bp-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 20%,
            rgba(0, 0, 0, 0.15) 45%,
            rgba(0, 0, 0, 0.75) 80%,
            rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

/* Content overlay on image */
.bp-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.bp-featured-content .bp-cat-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
}

.bp-card--featured[data-cat="warm"] .bp-cat-pill {
    background: linear-gradient(135deg, #FF8A3D, #FB16B9);
}

.bp-card--featured[data-cat="blue"] .bp-cat-pill {
    background: linear-gradient(135deg, #2196F3, #00BCD4);
}

.bp-card--featured[data-cat="purple"] .bp-cat-pill {
    background: linear-gradient(135deg, #7545ED, #9C27B0);
}

.bp-featured-title {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.25;
    color: white;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.bp-card--featured:hover .bp-featured-title {
    color: var(--color-primary);
}

.bp-featured-excerpt {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bp-featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bp-featured-meta .bp-meta-item {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.bp-featured-meta .bp-meta-item i {
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.55);
}

/* --- Bottom CTA --- */
.blog-bottom-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-bottom-cta>p {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-bottom-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    color: white;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(117, 69, 237, 0.3);
    transition: all 0.3s ease;
}

.blog-btn-primary i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.blog-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(117, 69, 237, 0.4);
}

.blog-btn-primary:hover i {
    transform: translateX(4px);
}

.blog-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 60px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* --- Legacy blog-card (for blog.html page) --- */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.blog-card-category {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-date {
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-date span {
    color: #888;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-text);
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-card-excerpt {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
}

.blog-card-link:hover {
    color: var(--color-primary);
}

.blog-card-link svg,
.blog-card-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-card-link:hover svg,
.blog-card-link:hover i {
    transform: translateX(5px);
}

/* --- Blog Responsive --- */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .bp-card--featured {
        grid-column: auto;
        grid-row: auto;
    }

    .bp-featured-img {
        min-height: 280px;
    }

    .bp-featured-title {
        font-size: 22px;
    }

    /* Small cards become horizontal rows */
    .bp-card:not(.bp-card--featured) {
        flex-direction: row;
    }

    .bp-card-img {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .bp-featured-img {
        min-height: 240px;
    }

    .bp-featured-title {
        font-size: 20px;
    }

    .bp-featured-content {
        padding: 24px;
    }

    /* Small cards stack vertically on mobile */
    .bp-card:not(.bp-card--featured) {
        flex-direction: column;
    }

    .bp-card-img {
        width: 100%;
        height: 180px;
        min-height: auto;
    }

    .blog-bottom-buttons {
        flex-direction: column;
        align-items: center;
    }

    .blog-btn-primary,
    .blog-btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* Blog Page Styles */
.blog-page-header {
    background: var(--color-darker);
    padding: 150px 0 80px;
    text-align: center;
}

.blog-page-header h1 {
    color: white;
    margin-bottom: 20px;
}

.blog-page-header p {
    color: #888;
    font-size: 18px;
}

.blog-page-content {
    padding: var(--section-padding) 0;
    background: var(--color-gray-light);
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--color-darker);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer .logo {
    margin-bottom: 20px;
}

.footer p {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: var(--color-darker);
        transition: right 0.3s ease;
        z-index: 999;
        padding: 20px;
        gap: 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Hide header CTA button on mobile */
    .header-cta-btn {
        display: none;
    }

    .about-grid,
    .booking-grid,
    .cta-content-premium,
    .studio-content {
        grid-template-columns: 1fr;
        text-align: center;
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .studio-features {
        flex-wrap: wrap;
        gap: 30px;
    }

    .awards-grid,
    .blog-page-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-features {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Fix background-attachment:fixed on mobile (iOS bug) */
    .about-me-section {
        background-attachment: scroll;
    }

    /* Disable heavy parallax/hover effects on touch devices */
    .hero-bg-parallax img {
        transform: none !important;
    }

    .svc-card:hover {
        transform: none;
    }

    /* Reduce section padding on tablet */
    .services,
    .about,
    .digital-services {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {

    .awards-grid,
    .footer-grid,
    .blog-page-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .award-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }

    .booking-form-wrapper {
        padding: 30px;
    }

    /* Reduce section padding on mobile */
    .services,
    .about,
    .digital-services,
    .about-me-section {
        padding: 50px 0;
    }

    /* Smaller container gap */
    .container {
        padding: 0 15px;
    }

    /* Process section mobile */
    .process-step {
        flex-direction: column;
        text-align: center;
    }

    /* Hero smaller on mobile */
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    /* CTA stats mobile */
    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }

    .cta-stat-divider {
        display: none;
    }

    /* Blog section mobile */
    .blog-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Footer mobile */
    .footer-grid {
        gap: 30px;
    }

    .footer-brand {
        text-align: center;
    }
}

/* ===== Mobile Scroll Performance ===== */
@media (hover: none) and (pointer: coarse) {
    /* Disable heavy CSS animations on touch devices */
    .hero-bg-parallax img {
        transform: none !important;
        will-change: auto;
    }

    .particle,
    .ds-orb,
    .stage-orb,
    .about-shape {
        animation: none !important;
    }

    /* Disable backdrop-filter on low-end mobile (causes jank) */
    .header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(15, 15, 26, 0.98);
    }

    /* Fix scroll stuttering caused by background-attachment: fixed */
    .about-me-section,
    .studio-showcase,
    .cta {
        background-attachment: scroll !important;
    }

    /* Reduce animation complexity */
    .svc-card,
    .ds-card,
    .pf-card {
        transition: none;
    }

    .svc-card:hover {
        transform: none;
    }

    /* Ensure smooth scrolling */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Disable video backgrounds on mobile for performance */
    .studio-bg video,
    .cta-bg video {
        display: none;
    }

    .studio-bg,
    .cta-bg {
        background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    }
}

/* ===== About Me Section Premium Redesign ===== */
.about-me-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(rgba(10, 10, 20, 0.75), rgba(10, 10, 20, 0.85)), url('../images/about-me-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Floating Shapes Background */
.about-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.4;
    animation: floatShape 10s infinite alternate;
}

.shape-1 {
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    animation-delay: 0s;
}

.shape-2 {
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: var(--color-blue);
    animation-delay: -5s;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 50px) rotate(10deg);
    }
}

/* Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.about-label-centered {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    background: rgba(251, 22, 185, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(251, 22, 185, 0.3);
    position: relative;
    overflow: hidden;
}

.about-label-centered::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 22, 185, 0.3), transparent);
    animation: labelShine 3s infinite;
}

@keyframes labelShine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.about-label-centered i {
    width: 18px;
    height: 18px;
}

.about-name {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 40%, #FB16B9 60%, #7545ED 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 8px;
    animation: shimmerName 4s linear infinite;
}

@keyframes shimmerName {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.about-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.8;
}

/* Grid Layout */
.about-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Glass Card Premium */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Safari support */
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.02) 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.card-title {
    color: white;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 1px;
}

.card-title i {
    width: 28px;
    height: 28px;
}

.icon-blue {
    color: var(--color-blue);
}

.icon-purple {
    color: var(--color-secondary);
}

.icon-pink {
    color: var(--color-primary);
}

/* Timeline Premium */
.timeline {
    position: relative;
    padding-left: 10px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-blue), var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 35px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -4px;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-dark);
    border: 2px solid var(--color-blue);
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.6);
    z-index: 2;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
}

.timeline-dot.dot-pink {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(251, 22, 185, 0.6);
}

.timeline-dot.dot-purple {
    border-color: var(--color-secondary);
    box-shadow: 0 0 15px rgba(117, 69, 237, 0.6);
}

/* Current Role Pulsing Effect */
.timeline-item.current .timeline-dot {
    background: var(--color-blue);
}

.timeline-item.current .timeline-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--color-blue);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.timeline-date {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-blue);
    margin-bottom: 5px;
}

.timeline-date.color-pink {
    color: var(--color-primary);
}

.timeline-date.color-purple {
    color: var(--color-secondary);
}

.timeline-role {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

/* Education List */
.education-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.education-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.education-list li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.edu-year {
    min-width: 50px;
    height: 50px;
    background: rgba(117, 69, 237, 0.1);
    border: 1px solid rgba(117, 69, 237, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 14px;
    flex-shrink: 0;
}

.edu-info strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
}

.edu-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* Certificates List */
.certificates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cert-item {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

/* ===== Hero Section Premium Redesign ===== */
.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.hero-bg-parallax {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    /* Slight zoom for parallax effect space */
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(10, 10, 20, 0.4) 0%, rgba(10, 10, 20, 0.8) 100%),
        linear-gradient(to bottom, rgba(10, 10, 20, 0.6) 0%, transparent 50%, rgba(10, 10, 20, 0.9) 100%);
    mix-blend-mode: multiply;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 20s infinite linear;
}

.p1 {
    top: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    animation-duration: 25s;
}

.p2 {
    bottom: 30%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--color-blue) 0%, transparent 70%);
    animation-duration: 30s;
}

.p3 {
    top: 60%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    animation-duration: 20s;
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -50px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Hero Content */
.hero-content-premium {
    position: relative;
    z-index: 10;
    text-align: left;
    /* Changed from center to left */
    padding-top: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-wrapper {
    max-width: 750px;
    /* Limit width */
    margin-left: 0;
    /* Align left */
    padding-left: 20px;
    /* Slight padding from edge on mobile */
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.line-accent {
    width: 40px;
    height: 2px;
    background: var(--color-blue);
    box-shadow: 0 0 10px var(--color-blue);
}

.line-accent-vertical {
    width: 3px;
    height: 20px;
    background: var(--color-blue);
    box-shadow: 0 0 15px var(--color-blue);
    animation: accentPulse 2s ease-in-out infinite;
}

@keyframes accentPulse {

    0%,
    100% {
        opacity: 0.7;
        box-shadow: 0 0 15px var(--color-blue);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 25px var(--color-blue), 0 0 40px var(--color-blue);
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 40px;
}

.title-line-1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    /* Lighter weight */
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    /* Outline effect */
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.title-line-2 {
    font-size: clamp(4rem, 9vw, 7.5rem);
    /* Massive size */
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
}

.text-gradient-main {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 35%, #ffb6d9 50%, #ffffff 65%, #ffffff 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: heroShimmer 4s ease-in-out infinite;
}

@keyframes heroShimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: 0% center;
    }
}

.hero-description {
    max-width: 600px;
    margin: 0 0 40px 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 25px;
}

.hero-desc-primary {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.6;
    color: white;
    /* Brighter */
    font-weight: 400;
    /* Regular weight */
    margin-bottom: 20px;
}

.hero-desc-secondary {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    /* More breathing room */
    color: rgba(255, 255, 255, 0.7);
    /* Dimmmer */
    font-weight: 300;
}

/* Hero Features List - premium bullet points */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.hero-features .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    animation: featureGlow 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.5s);
}

@keyframes featureGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(251, 22, 185, 0.3);
    }

    50% {
        box-shadow: 0 0 15px rgba(251, 22, 185, 0.6), 0 0 25px rgba(33, 150, 243, 0.4);
    }
}

/* Glow Button */
.btn-glow {
    background: white;
    color: var(--color-dark);
    border-radius: 50px;
    padding: 18px 45px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.btn-glow:hover::before {
    transform: translateX(100%);
}

.btn-glow i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-glow:hover i {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 6px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

.scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-premium {
        min-height: 100vh;
    }

    .btn-glow {
        padding: 15px 30px;
        font-size: 13px;
    }
}

.cert-item strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 5px;
}

.cert-item span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.cert-item span i {
    width: 14px;
    height: 14px;
}

.cert-item.border-pink {
    border-left-color: var(--color-primary);
}

.cert-item.border-blue {
    border-left-color: var(--color-blue);
}

.cert-item.border-purple {
    border-left-color: var(--color-secondary);
}

.cert-item.border-gray {
    border-left-color: #888;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-name {
        font-size: 2.5rem;
    }

    .glass-card {
        padding: 25px;
    }

    .about-grid-premium {
        grid-template-columns: 1fr;
    }
}

.svg-gradients {
    position: absolute;
    width: 0;
    height: 0;
}

/* ============================================
   PREMIUM PORTFOLIO DECORATIONS
   Profesjonalne elementy wizytĂłwkowe
   ============================================ */

/* === GLOBAL DECORATIVE VARIABLES === */
:root {
    --deco-pink: rgba(251, 22, 185, 0.15);
    --deco-blue: rgba(33, 150, 243, 0.12);
    --deco-purple: rgba(117, 69, 237, 0.12);
    --deco-glow-pink: 0 0 40px rgba(251, 22, 185, 0.4);
    --deco-glow-blue: 0 0 40px rgba(33, 150, 243, 0.4);
}

/* ===================================================
   DIAGONAL SECTION DIVIDERS - UkoĹ›ne separatory
   =================================================== */

/* About -> About Me: UkoĹ›ne przejĹ›cie */
.about {
    position: relative;
    overflow: visible;
}

.about-content,
.about-image {
    position: relative;
    z-index: 2;
}

/* Elegancki ukoĹ›ny separator usuniÄ™ty - czysty design */

/* ===================================================
   GLOWING TRIANGLES - TrĂłjkÄ…ty z efektem Ĺ›wiecenia
   =================================================== */

/* Hero - pĹ‚ynne przejĹ›cie do About (bez trĂłjkÄ…ta) */
.hero-premium {
    position: relative;
}

/* Gradient na dole Hero dla pĹ‚ynnego przejĹ›cia */
.hero-premium .hero-content-premium::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-blue), transparent);
    border-radius: 2px;
    opacity: 0.6;
}

/* About - TrĂłjkÄ…ty z gĹ‚Ä™biÄ… */
.about::before {
    content: '';
    position: absolute;
    top: 60px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 0;
    border-bottom: 260px solid var(--deco-pink);
    filter: drop-shadow(0 10px 30px rgba(251, 22, 185, 0.2));
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    top: 120px;
    right: 80px;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 0;
    border-bottom: 140px solid var(--deco-blue);
    z-index: 0;
}

/* About Me Section - Premium triangles */
.about-me-section {
    overflow: visible;
}

/* DuĹĽy rĂłĹĽowy trĂłjkÄ…t "wchodzÄ…cy" z gĂłry */
.about-header::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 8%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 110px solid rgba(251, 22, 185, 0.25);
    filter: drop-shadow(var(--deco-glow-pink));
    z-index: 5;
}

/* Niebieski trĂłjkÄ…t obok */
.about-header::after {
    content: '';
    position: absolute;
    top: -70px;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(33, 150, 243, 0.3);
    z-index: 4;
}

/* Services Section - Profesjonalne trĂłjkÄ…ty */
.services {
    position: relative;
    overflow: visible;
}

/* GĹ‚Ăłwny trĂłjkÄ…t */
.services::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50px;
    width: 0;
    height: 0;
    border-left: 0;
    border-right: 100px solid transparent;
    border-top: 180px solid rgba(117, 69, 237, 0.15);
    filter: drop-shadow(0 10px 30px rgba(117, 69, 237, 0.15));
    z-index: 1;
}

/* Akcentowy trĂłjkÄ…t */
.services::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 120px;
    width: 0;
    height: 0;
    border-left: 0;
    border-right: 60px solid transparent;
    border-top: 110px solid var(--deco-pink);
    z-index: 1;
}

/* TrĂłjkÄ…t po prawej stronie Services */
.services .section-header::after {
    content: '';
    position: absolute;
    top: -40px;
    right: 60px;
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 0;
    border-top: 120px solid var(--deco-blue);
    z-index: 0;
}

/* ===================================================
   BOOKING, STUDIO, CTA - Eleganckie linie akcentowe
   Zamiast duĹĽych trĂłjkÄ…tĂłw - minimalistyczny design
   =================================================== */

.booking {
    overflow: visible;
}

/* Ukryj oryginalne trĂłjkÄ…ty z HTML */
.booking .triangle-pink {
    display: none;
}

/* Eleganckie ukoĹ›ne linie akcentowe */
.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-blue), transparent);
    transform: rotate(-45deg);
    transform-origin: top left;
    z-index: 10;
    opacity: 0.8;
}

.booking::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue), transparent);
    transform: rotate(-45deg);
    transform-origin: top left;
    z-index: 10;
    opacity: 0.6;
}

/* Studio Showcase & CTA - elegancki minimalizm */
.studio-showcase,
.cta {
    overflow: visible;
}

/* Ukryj oryginalne trĂłjkÄ…ty z HTML */
.studio-triangles,
.cta-triangles {
    display: none;
}

/* GĂłrna linia akcentowa */
.studio-showcase::before,
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 60px;
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), transparent);
    transform: rotate(-30deg);
    transform-origin: top left;
    z-index: 10;
}

.studio-showcase::after,
.cta::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 80px;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue), transparent);
    transform: rotate(-30deg);
    transform-origin: top left;
    z-index: 10;
    opacity: 0.7;
}

/* MaĹ‚e Ĺ›wiecÄ…ce kropki przy liniach */
.booking .booking-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 30px;
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: var(--deco-glow-pink);
    z-index: 15;
}

.studio-content::before,
.cta-content-premium::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: var(--deco-glow-pink);
    z-index: 15;
}

/* ===================================================
   DODATKOWE AKCENTY - linie po prawej stronie
   =================================================== */

/* Booking - prawa strona */
.booking .booking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), var(--color-primary));
    border-radius: 2px;
    z-index: 5;
}

.booking .booking-form-wrapper::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -10px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-blue));
    border-radius: 2px;
    z-index: 5;
    opacity: 0.7;
}

/* Studio/CTA - dodatkowe linie po prawej */
.studio-features::before,
.cta-stats::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(251, 22, 185, 0.6));
    border-radius: 2px;
    z-index: 5;
}

/* MaĹ‚y romb dekoracyjny */
.booking .booking-image::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: -15px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-blue) 100%);
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 0 20px rgba(251, 22, 185, 0.4);
}

/* Shimmer animation na liniach */
@keyframes shimmerLine {
    0% {
        opacity: 0.3;
        width: 100px;
    }

    50% {
        opacity: 1;
        width: 200px;
    }

    100% {
        opacity: 0.3;
        width: 100px;
    }
}

.booking::before,
.studio-showcase::before,
.cta::before {
    animation: shimmerLine 4s ease-in-out infinite;
}

/* Blog Section - Eleganckie trĂłjkÄ…ty */
.blog-section {
    position: relative;
    overflow: visible;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 80px;
    width: 0;
    height: 0;
    border-left: 90px solid transparent;
    border-right: 0;
    border-top: 160px solid var(--deco-pink);
    filter: drop-shadow(0 5px 20px rgba(251, 22, 185, 0.15));
    z-index: 1;
}

.blog-section::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 150px;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 0;
    border-top: 90px solid var(--deco-blue);
    z-index: 1;
}

/* Footer - TrĂłjkÄ…ty "wchodzÄ…ce" w stopkÄ™ */
.footer {
    position: relative;
    overflow: visible;
}

.footer::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 80px;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--color-darker);
    z-index: 10;
}

.footer::after {
    content: '';
    position: absolute;
    top: -45px;
    left: 180px;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 90px solid rgba(251, 22, 185, 0.4);
    filter: drop-shadow(var(--deco-glow-pink));
    z-index: 11;
}

/* ===================================================
   GLOWING ACCENT DOTS - ĹšwiecÄ…ce kropki dekoracyjne
   =================================================== */

/* Kropki w sekcji About */
.about-grid::before {
    content: '';
    position: absolute;
    top: 30%;
    left: -30px;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: var(--deco-glow-pink);
    z-index: 5;
}

.about-grid::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -20px;
    width: 8px;
    height: 8px;
    background: var(--color-blue);
    border-radius: 50%;
    box-shadow: var(--deco-glow-blue);
    z-index: 5;
}

/* Kropki w Services */
.services-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 20%;
    width: 10px;
    height: 10px;
    background: var(--color-secondary);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(117, 69, 237, 0.5);
    z-index: 5;
}

.services-grid::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 30%;
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: var(--deco-glow-pink);
    z-index: 5;
}

/* Kropki w Blog */
.blog-grid::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 15%;
    width: 10px;
    height: 10px;
    background: var(--color-blue);
    border-radius: 50%;
    box-shadow: var(--deco-glow-blue);
    z-index: 5;
}

/* ===================================================
   GRADIENT ACCENT LINES - Linie akcentowe
   =================================================== */

/* Pionowa linia przy About */
.about .container::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -40px;
    width: 4px;
    height: 120px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-blue), transparent);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(251, 22, 185, 0.3);
}

/* Pionowa linia przy Services */
.services .container::after {
    content: '';
    position: absolute;
    top: 15%;
    left: -40px;
    width: 4px;
    height: 100px;
    background: linear-gradient(to bottom, var(--color-secondary), var(--color-primary), transparent);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(117, 69, 237, 0.3);
}

/* Pionowa linia przy Blog */
.blog-section .container::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -40px;
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--color-primary), var(--color-blue));
    border-radius: 4px;
}

/* ===================================================
   DOT PATTERN BACKGROUNDS - Wzory kropkowe
   =================================================== */

/* Subtelny wzĂłr dla jasnych sekcji */
.about,
.services,
.blog-section {
    background-image:
        radial-gradient(circle at 2px 2px, rgba(251, 22, 185, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ===================================================
   CARD ENHANCEMENTS - Ulepszenia kart
   =================================================== */

/* Legacy service-card rules removed â€” replaced by .svc-card */

/* Glass cards - corner glow */
.glass-card {
    position: relative;
}

.glass-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-right: 60px solid rgba(251, 22, 185, 0.15);
    border-top: 60px solid transparent;
    z-index: 1;
    transition: all 0.3s ease;
}

.glass-card:hover::after {
    border-right-width: 80px;
    border-top-width: 80px;
    border-right-color: rgba(251, 22, 185, 0.25);
}

/* Legacy blog-card accent line removed â€” replaced by bp-card hover glow */

/* ===================================================
   ANIMATIONS - Profesjonalne animacje
   =================================================== */

/* Floating animation */
@keyframes floatPremium {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(2deg);
    }

    50% {
        transform: translateY(-5px) rotate(-1deg);
    }

    75% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Glow pulse animation */
@keyframes glowPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(251, 22, 185, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(251, 22, 185, 0.6));
    }
}

/* Apply animations */
.about::before,
.services::before,
.blog-section::before {
    animation: floatPremium 12s ease-in-out infinite;
}

.about::after,
.services::after,
.blog-section::after {
    animation: floatPremium 15s ease-in-out infinite reverse;
}

.booking .triangle-pink,
.studio-triangles .triangle-pink,
.cta-triangles .triangle-pink {
    animation: glowPulse 4s ease-in-out infinite;
}

/* Dot pulse animation */
@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.about-grid::before,
.services-grid::before,
.blog-grid::before {
    animation: dotPulse 3s ease-in-out infinite;
}

.about-grid::after,
.services-grid::after {
    animation: dotPulse 3.5s ease-in-out infinite 0.5s;
}

/* ===================================================
   SECTION TRANSITIONS - PrzejĹ›cia miÄ™dzy sekcjami  
   =================================================== */

/* Gradient overlay na dole Hero */
.hero-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ===================================================
   MOBILE RESPONSIVE
   =================================================== */

@media (max-width: 1200px) {

    .about .container::after,
    .services .container::after,
    .blog-section .container::after {
        display: none;
    }
}

@media (max-width: 992px) {

    .about::before,
    .about::after,
    .services::before,
    .services::after,
    .blog-section::before,
    .blog-section::after {
        transform: scale(0.6);
        opacity: 0.7;
    }

    .footer::before,
    .footer::after {
        transform: scale(0.5);
    }

    .booking .triangle-pink,
    .booking::before {
        transform: scale(0.5);
        left: 30px;
    }

    .studio-triangles,
    .cta-triangles {
        transform: scale(0.6) translateY(-50%);
    }

    .about-grid::before,
    .about-grid::after,
    .services-grid::before,
    .services-grid::after,
    .blog-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {

    .about::before,
    .about::after,
    .services::before,
    .services::after,
    .blog-section::before,
    .blog-section::after,
    .footer::before,
    .footer::after {
        display: none;
    }

    .studio-triangles,
    .cta-triangles {
        transform: scale(0.4) translateY(-50%);
        left: 10px;
    }

    .booking .triangle-pink,
    .booking::before {
        display: none;
    }

    .about,
    .services,
    .blog-section {
        background-image: none;
    }

    .glass-card::after {
        display: none;
    }
}

/* =============================================
   PORTFOLIO SECTION â€” "LIVE STAGE" DESIGN
   ============================================= */
.portfolio-section {
    padding: 110px 0 100px;
    background: linear-gradient(180deg, #352850 0%, #2d2145 100%);
    position: relative;
    overflow: hidden;
}

/* === STAGE LIGHTING ORBS === */
.stage-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.stage-orb--amber {
    width: 500px;
    height: 500px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.12) 0%, transparent 70%);
    animation: orbBreathe 8s ease-in-out infinite;
}

.stage-orb--magenta {
    width: 400px;
    height: 400px;
    bottom: -50px;
    left: 10%;
    background: radial-gradient(circle, rgba(251, 22, 185, 0.09) 0%, transparent 70%);
    animation: orbBreathe 10s ease-in-out 2s infinite;
}

.stage-orb--violet {
    width: 350px;
    height: 350px;
    top: 30%;
    left: -80px;
    background: radial-gradient(circle, rgba(117, 69, 237, 0.09) 0%, transparent 70%);
    animation: orbBreathe 12s ease-in-out 4s infinite;
}

@keyframes orbBreathe {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* === HEADER === */
.pf-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.pf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 168, 56, 0.10);
    border: 1px solid rgba(232, 168, 56, 0.20);
    color: #E8A838;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pf-badge i {
    width: 16px;
    height: 16px;
}

.pf-header h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.pf-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto;
}

/* === ANIMATED SOUNDWAVE DECORATION === */
.pf-soundwave {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    height: 32px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    opacity: 0.6;
}

.pf-soundwave span {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #E8A838, #FB16B9);
    animation: soundwavePulse 1.5s ease-in-out infinite alternate;
}

/* Generate varied heights and delays for each bar */
.pf-soundwave span:nth-child(1) {
    height: 8px;
    animation-delay: 0.00s;
}

.pf-soundwave span:nth-child(2) {
    height: 14px;
    animation-delay: 0.08s;
}

.pf-soundwave span:nth-child(3) {
    height: 22px;
    animation-delay: 0.15s;
}

.pf-soundwave span:nth-child(4) {
    height: 10px;
    animation-delay: 0.22s;
}

.pf-soundwave span:nth-child(5) {
    height: 28px;
    animation-delay: 0.05s;
}

.pf-soundwave span:nth-child(6) {
    height: 16px;
    animation-delay: 0.30s;
}

.pf-soundwave span:nth-child(7) {
    height: 24px;
    animation-delay: 0.12s;
}

.pf-soundwave span:nth-child(8) {
    height: 12px;
    animation-delay: 0.18s;
}

.pf-soundwave span:nth-child(9) {
    height: 30px;
    animation-delay: 0.25s;
}

.pf-soundwave span:nth-child(10) {
    height: 18px;
    animation-delay: 0.10s;
}

.pf-soundwave span:nth-child(11) {
    height: 26px;
    animation-delay: 0.20s;
}

.pf-soundwave span:nth-child(12) {
    height: 10px;
    animation-delay: 0.28s;
}

.pf-soundwave span:nth-child(13) {
    height: 32px;
    animation-delay: 0.03s;
}

.pf-soundwave span:nth-child(14) {
    height: 14px;
    animation-delay: 0.16s;
}

.pf-soundwave span:nth-child(15) {
    height: 20px;
    animation-delay: 0.24s;
}

.pf-soundwave span:nth-child(16) {
    height: 8px;
    animation-delay: 0.32s;
}

.pf-soundwave span:nth-child(17) {
    height: 26px;
    animation-delay: 0.07s;
}

.pf-soundwave span:nth-child(18) {
    height: 16px;
    animation-delay: 0.14s;
}

.pf-soundwave span:nth-child(19) {
    height: 22px;
    animation-delay: 0.21s;
}

.pf-soundwave span:nth-child(20) {
    height: 12px;
    animation-delay: 0.09s;
}

.pf-soundwave span:nth-child(21) {
    height: 28px;
    animation-delay: 0.17s;
}

.pf-soundwave span:nth-child(22) {
    height: 18px;
    animation-delay: 0.26s;
}

.pf-soundwave span:nth-child(23) {
    height: 24px;
    animation-delay: 0.04s;
}

.pf-soundwave span:nth-child(24) {
    height: 10px;
    animation-delay: 0.13s;
}

.pf-soundwave span:nth-child(25) {
    height: 20px;
    animation-delay: 0.20s;
}

@keyframes soundwavePulse {
    0% {
        transform: scaleY(0.4);
        opacity: 0.4;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* === GROUP & DIVIDERS === */
.pf-group {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.pf-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.pf-divider-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.pf-divider-left i {
    width: 18px;
    height: 18px;
}

.pf-divider-left span {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.pf-divider[data-accent="warm"] .pf-divider-left {
    color: #E8A838;
}

.pf-divider[data-accent="cool"] .pf-divider-left {
    color: #4D8FD9;
}

.pf-divider-line {
    flex: 1;
    height: 1px;
}

.pf-divider[data-accent="warm"] .pf-divider-line {
    background: linear-gradient(90deg, rgba(232, 168, 56, 0.4), transparent);
}

.pf-divider[data-accent="cool"] .pf-divider-line {
    background: linear-gradient(90deg, rgba(77, 143, 217, 0.4), transparent);
}

/* LIVE dot (audio) */
.pf-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E8A838;
    flex-shrink: 0;
    animation: livePulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(232, 168, 56, 0.5);
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(232, 168, 56, 0.5);
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 4px rgba(232, 168, 56, 0.2);
    }
}

/* Play indicator (video) */
.pf-play-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #4D8FD9;
    flex-shrink: 0;
}

.pf-play-indicator i {
    width: 14px;
    height: 14px;
}

/* === UNIFIED GRID === */
.pf-grid {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.pf-grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.pf-grid--2 {
    grid-template-columns: 1fr 1fr;
}

/* === UNIFIED CARD (dark glassmorphism theme) === */
.pf-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: row;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.pf-card:hover {
    transform: translateY(-8px);
}

/* Animated gradient border glow */
.pf-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 19px;
    padding: 1px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.pf-card[data-type="audio"]::before {
    background: conic-gradient(from 0deg, #E8A838, #FB16B9, #7545ED, #E8A838);
    animation: rotateBorder 6s linear infinite;
}

.pf-card[data-type="video"]::before {
    background: conic-gradient(from 0deg, #4D8FD9, #7545ED, #2196F3, #4D8FD9);
    animation: rotateBorder 6s linear infinite;
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotateBorder {
    to {
        --angle: 360deg;
    }
}

.pf-card:hover::before {
    opacity: 0.6;
}

/* Accent line at bottom */
.pf-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
}

.pf-card:hover::after {
    opacity: 1;
}

.pf-card[data-type="audio"]::after {
    background: linear-gradient(90deg, #E8A838, #FB16B9);
}

.pf-card[data-type="video"]::after {
    background: linear-gradient(90deg, #4D8FD9, #7545ED);
}

/* Audio hover glow */
.pf-card[data-type="audio"]:hover {
    background: rgba(232, 168, 56, 0.06);
    border-color: rgba(232, 168, 56, 0.25);
    box-shadow: 0 20px 60px rgba(232, 168, 56, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(232, 168, 56, 0.1);
}

/* Video hover glow */
.pf-card[data-type="video"]:hover {
    background: rgba(77, 143, 217, 0.06);
    border-color: rgba(77, 143, 217, 0.25);
    box-shadow: 0 20px 60px rgba(77, 143, 217, 0.15),
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(77, 143, 217, 0.1);
}

/* === VISUAL AREA === */
.pf-card-visual {
    position: relative;
    width: 130px;
    min-height: 100px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Audio: VIVID warm gradient "album cover" */
.pf-card-visual--audio {
    background: linear-gradient(135deg, #f7a832 0%, #e8467c 50%, #7545ED 100%);
}

.pf-card-visual--audio::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 40%, rgba(255, 255, 255, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 80%, rgba(117, 69, 237, 0.20) 0%, transparent 50%);
    transition: opacity 0.4s ease;
}

.pf-card:hover .pf-card-visual--audio::before {
    opacity: 1.3;
}

/* Audio icon decoration */
.pf-audio-deco {
    position: absolute;
    width: 50px;
    height: 50px;
    opacity: 0.12;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pf-audio-deco i {
    width: 50px;
    height: 50px;
}

/* Equalizer in audio visual — Ambient Bottom Wave */
.pf-visual-eq {
    display: none;
}

.pf-visual-eq-bar {
    width: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.4);
    /* Softer, glass-like look */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    animation: eqBounce 1.2s ease-in-out infinite alternate;
}

/* Idle: slower, partial */
.pf-visual-eq-bar:nth-child(1) {
    height: 16px;
    animation-delay: 0s;
}

.pf-visual-eq-bar:nth-child(2) {
    height: 30px;
    animation-delay: 0.15s;
}

.pf-visual-eq-bar:nth-child(3) {
    height: 20px;
    animation-delay: 0.30s;
}

.pf-visual-eq-bar:nth-child(4) {
    height: 38px;
    animation-delay: 0.10s;
}

.pf-visual-eq-bar:nth-child(5) {
    height: 24px;
    animation-delay: 0.25s;
}

.pf-visual-eq-bar:nth-child(6) {
    height: 34px;
    animation-delay: 0.20s;
}

.pf-visual-eq-bar:nth-child(7) {
    height: 18px;
    animation-delay: 0.05s;
}

@keyframes eqBounce {
    0% {
        transform: scaleY(0.35);
    }

    100% {
        transform: scaleY(1);
    }
}

/* Hover: faster eq */
.pf-card:hover .pf-visual-eq-bar {
    animation-duration: 0.6s;
}

/* Video visual: thumbnail */
.pf-card-visual--video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pf-card:hover .pf-card-visual--video img {
    transform: scale(1.08);
}

.pf-card-visual--video .pf-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    transition: background 0.3s ease;
}

.pf-card:hover .pf-card-visual--video .pf-video-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Play button â€” PULSING animation */
.pf-card-play {
    position: absolute;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: playPulse 3s ease-in-out infinite;
}

@keyframes playPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.pf-card-play i {
    width: 16px;
    height: 16px;
    color: white;
    margin-left: 3px;
}

.pf-card[data-type="audio"]:hover .pf-card-play {
    background: rgba(232, 168, 56, 0.45);
    border-color: rgba(232, 168, 56, 0.5);
    box-shadow: 0 0 35px rgba(232, 168, 56, 0.4);
    animation: none;
    transform: scale(1.15);
}

.pf-card[data-type="video"]:hover .pf-card-play {
    background: rgba(77, 143, 217, 0.45);
    border-color: rgba(77, 143, 217, 0.5);
    box-shadow: 0 0 35px rgba(77, 143, 217, 0.4);
    animation: none;
    transform: scale(1.15);
}

/* Duration badge */
.pf-card-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 3;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

/* === CARD BODY === */
.pf-card-body {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pf-card-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.pf-card[data-type="audio"] .pf-card-pill {
    background: rgba(232, 168, 56, 0.12);
    color: #E8A838;
    border: 1px solid rgba(232, 168, 56, 0.25);
}

.pf-card[data-type="video"] .pf-card-pill {
    background: rgba(77, 143, 217, 0.10);
    color: #4D8FD9;
    border: 1px solid rgba(77, 143, 217, 0.22);
}

.pf-card-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.pf-card-client {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

/* Progress bar (audio playing state) */
.pf-card-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    margin-top: 12px;
    display: none;
}

.pf-card.playing .pf-card-progress {
    display: block;
}

.pf-card-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #E8A838, #FB16B9);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Playing state */
.pf-card.playing {
    background: rgba(232, 168, 56, 0.08);
    border-color: rgba(232, 168, 56, 0.30);
    box-shadow: 0 12px 50px rgba(232, 168, 56, 0.18),
        0 4px 16px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(232, 168, 56, 0.12);
}

.pf-card.playing .pf-visual-eq-bar {
    animation-duration: 0.5s;
}

/* === BOTTOM CTA === */
.pf-bottom-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.pf-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.pf-stats-star {
    color: #E8A838;
    font-size: 14px;
}

.pf-stats-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: inline-block;
}

.pf-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: linear-gradient(135deg, #E8A838, #FB16B9);
    color: white;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(232, 168, 56, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.pf-btn-primary i {
    width: 18px;
    height: 18px;
}

.pf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 45px rgba(232, 168, 56, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .pf-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .pf-grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pf-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pf-grid--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .pf-grid--3,
    .pf-grid--2 {
        grid-template-columns: 1fr;
    }

    .pf-card-visual {
        width: 100px;
    }
}

@media (max-width: 576px) {

    .pf-grid--3,
    .pf-grid--2 {
        grid-template-columns: 1fr;
    }

    .pf-header h2 {
        font-size: 2rem;
    }

    .pf-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .pf-soundwave {
        gap: 2px;
    }

    .pf-soundwave span {
        width: 2px;
    }

    .stage-orb {
        display: none;
    }
}

/* =============================================
   PORTFOLIO PAGE â€” "STUDIO EXPERIENCE"
   ============================================= */

/* Hero */
.pp-hero {
    background: linear-gradient(180deg, #352850 0%, #2d2145 100%);
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 168, 56, 0.10);
    border: 1px solid rgba(232, 168, 56, 0.20);
    color: #E8A838;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.pp-hero-badge i {
    width: 16px;
    height: 16px;
}

.pp-hero h1 {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.pp-hero-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}

/* Tabs */
.pp-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.pp-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pp-tab i {
    width: 16px;
    height: 16px;
}

.pp-tab:hover {
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pp-tab.active {
    background: linear-gradient(135deg, #E8A838, #FB16B9);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 20px rgba(232, 168, 56, 0.3);
}

/* Content */
.pp-content {
    background: linear-gradient(180deg, #2d2145 0%, #281e3e 100%);
    padding: 60px 0 80px;
}

.pp-section {
    margin-bottom: 50px;
}

.pp-section.hidden {
    display: none;
}

.pp-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    flex-shrink: 0;
}

/* CTA */
.pp-cta {
    background: linear-gradient(180deg, #281e3e 0%, #231a38 100%);
    padding: 80px 0;
    text-align: center;
}

.pp-cta h2 {
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.pp-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    margin-bottom: 30px;
}


/* =============================================
   LIGHTBOX (YouTube Modal)
   ============================================= */
.pf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.pf-lightbox.active {
    display: flex;
}

.pf-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.pf-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 2;
    animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pf-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pf-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.pf-lightbox-close i {
    width: 20px;
    height: 20px;
}

.pf-lightbox-video {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.pf-lightbox-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pf-lightbox-info {
    padding: 20px 0;
    text-align: center;
}

.pf-lightbox-info h3 {
    color: white;
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pf-lightbox-info p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* ===== Contact Section Premium Redesign ===== */
.contact-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    background: #0a0a0f;
}

.contact-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}

/* Left side - Image with overlays */
.contact-image-side {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-image-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
    transition: transform 8s ease, filter 0.5s ease;
}

.contact-premium:hover .contact-image-bg img {
    transform: scale(1.05);
    filter: brightness(0.75);
}

.contact-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(135deg, rgba(117, 69, 237, 0.6) 0%, rgba(251, 22, 185, 0.3) 50%, transparent 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, transparent 50%),
        linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.3) 30%, transparent 60%);
}

/* Decorative elements */
.contact-decorative {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(251, 22, 185, 0.3);
    animation: pulse-glow 4s ease-in-out infinite;
}

.deco-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.deco-circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -80px;
    border-color: rgba(117, 69, 237, 0.3);
    animation-delay: 2s;
}

.deco-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(251, 22, 185, 0.5), transparent);
    height: 1px;
}

.deco-line-1 {
    width: 60%;
    top: 25%;
    left: 20%;
    animation: slide-line 6s ease-in-out infinite;
}

.deco-line-2 {
    width: 40%;
    bottom: 35%;
    left: 30%;
    animation: slide-line 6s ease-in-out infinite reverse;
    animation-delay: 3s;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes slide-line {

    0%,
    100% {
        transform: translateX(-20px);
        opacity: 0;
    }

    50% {
        transform: translateX(20px);
        opacity: 1;
    }
}

/* Content on image side */
.contact-image-content {
    position: relative;
    z-index: 4;
    padding: 60px;
    color: white;
    max-width: 580px;
}

.contact-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tagline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #FB16B9, #7545ED);
    border-radius: 50%;
}

.tagline-icon i {
    width: 14px;
    height: 14px;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
}

.text-gradient-pink {
    background: linear-gradient(135deg, #FB16B9 0%, #FF6B9D 50%, #FFB3D1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quick-info-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(251, 22, 185, 0.4);
    transform: translateX(10px);
}

.quick-info-item i {
    width: 22px;
    height: 22px;
    color: #FB16B9;
}

.quick-info-item span {
    font-size: 16px;
    font-weight: 500;
}

/* Right side - Form */
.contact-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 50%, #f8f9fc 100%);
    position: relative;
}

.contact-form-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #7545ED, #FB16B9, #7545ED);
}

.contact-form-wrapper-premium {
    width: 100%;
    max-width: 500px;
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-icon-badge {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7545ED, #FB16B9);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(117, 69, 237, 0.3);
    animation: float-badge 3s ease-in-out infinite;
}

.form-icon-badge i {
    width: 32px;
    height: 32px;
    color: white;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-text);
    margin-bottom: 10px;
}

.form-header .form-subtitle {
    color: #888;
    font-size: 15px;
}

.contact-form-premium {
    display: grid;
    gap: 20px;
}

.form-row-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group-premium {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-premium.full-width {
    grid-column: 1 / -1;
}

.form-group-premium label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group-premium label i {
    width: 16px;
    height: 16px;
    color: #7545ED;
}

.form-group-premium input,
.form-group-premium select,
.form-group-premium textarea {
    padding: 16px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    background: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group-premium input:hover,
.form-group-premium select:hover,
.form-group-premium textarea:hover {
    border-color: #d0d0d0;
}

.form-group-premium input:focus,
.form-group-premium select:focus,
.form-group-premium textarea:focus {
    outline: none;
    border-color: #7545ED;
    box-shadow: 0 0 0 4px rgba(117, 69, 237, 0.1);
}

.form-group-premium textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group-premium input::placeholder,
.form-group-premium textarea::placeholder {
    color: #aaa;
}

/* Premium Submit Button */
.btn-submit-premium {
    position: relative;
    width: 100%;
    padding: 18px 30px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #7545ED 0%, #FB16B9 100%);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-submit-premium .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-premium .btn-content i {
    width: 20px;
    height: 20px;
}

.btn-submit-premium .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: rotate(45deg);
    animation: btn-shine 3s ease-in-out infinite;
}

@keyframes btn-shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }

    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.btn-submit-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(117, 69, 237, 0.4);
}

.btn-submit-premium:active {
    transform: translateY(-1px);
}

.btn-submit-premium:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Trust Indicators */
.form-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 12px;
}

.trust-item i {
    width: 16px;
    height: 16px;
    color: #7545ED;
}

/* Contact Section Responsive */
@media (max-width: 1024px) {
    .contact-split-container {
        grid-template-columns: 1fr;
    }

    .contact-image-side {
        min-height: 50vh;
    }

    .contact-image-content {
        padding: 40px 30px;
    }

    .contact-hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .contact-image-side {
        min-height: 70vh;
    }

    .contact-image-content {
        padding: 30px 20px;
    }

    .contact-form-side {
        padding: 40px 20px;
    }

    .contact-form-side::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
    }

    .form-row-premium {
        grid-template-columns: 1fr;
    }

    .form-trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .deco-circle-1,
    .deco-circle-2,
    .deco-line-1,
    .deco-line-2 {
        display: none;
    }

    .contact-quick-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .quick-info-item {
        flex: 1;
        min-width: 150px;
    }
}

/* ===== Contact Section - Clean Simple Design ===== */
.contact-section-wrapper {
    background: var(--color-gray-light);
}

.contact-premium {
    background: var(--color-gray-light);
    padding: 80px 0;
}

.contact-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.contact-image-side {
    min-height: 600px;
}

.contact-premium::before {
    display: none;
}

.contact-form-side {
    background: #ffffff;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-split-container {
        grid-template-columns: 1fr;
    }

    .contact-image-side {
        min-height: 400px;
    }

    .contact-premium {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .contact-image-side {
        min-height: 350px;
    }

    .contact-premium {
        padding: 40px 0;
    }
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
    padding: 100px 0 80px;
    background-color: #fafafa;
    position: relative;
    overflow: hidden;
}

.process-section .section-header p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 10px auto 0;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Connecting line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-blue), var(--color-secondary), #22c55e);
    z-index: 1;
    border-radius: 3px;
    opacity: 0.3;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
    min-width: 210px;
    margin-bottom: 30px;
}

/* --- Color-coded step numbers --- */
.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(251, 22, 185, 0.15);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Accent colors per step */
.process-step[data-accent="pink"] .step-number {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(251, 22, 185, 0.15);
}

.process-step[data-accent="blue"] .step-number {
    border-color: var(--color-blue);
    color: var(--color-blue);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.15);
}

.process-step[data-accent="purple"] .step-number {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: 0 5px 15px rgba(117, 69, 237, 0.15);
}

.process-step[data-accent="green"] .step-number {
    border-color: #22c55e;
    color: #22c55e;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.15);
}

/* Hover: fill the circle with accent color */
.process-step[data-accent="pink"]:hover .step-number {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.process-step[data-accent="blue"]:hover .step-number {
    background: var(--color-blue);
    color: white;
    transform: scale(1.1);
}

.process-step[data-accent="purple"]:hover .step-number {
    background: var(--color-secondary);
    color: white;
    transform: scale(1.1);
}

.process-step[data-accent="green"]:hover .step-number {
    background: #22c55e;
    color: white;
    transform: scale(1.1);
}

/* --- Step content card --- */
.step-content {
    background: white;
    padding: 28px 22px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hover: colored top border per accent */
.process-step[data-accent="pink"]:hover .step-content {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(251, 22, 185, 0.1);
    border-color: rgba(251, 22, 185, 0.2);
}

.process-step[data-accent="blue"]:hover .step-content {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.2);
}

.process-step[data-accent="purple"]:hover .step-content {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(117, 69, 237, 0.1);
    border-color: rgba(117, 69, 237, 0.2);
}

.process-step[data-accent="green"]:hover .step-content {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

/* --- Icons per accent --- */
.step-icon {
    margin-bottom: 15px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.process-step[data-accent="pink"] .step-icon {
    background: rgba(251, 22, 185, 0.08);
    color: var(--color-primary);
}

.process-step[data-accent="blue"] .step-icon {
    background: rgba(33, 150, 243, 0.08);
    color: var(--color-blue);
}

.process-step[data-accent="purple"] .step-icon {
    background: rgba(117, 69, 237, 0.08);
    color: var(--color-secondary);
}

.process-step[data-accent="green"] .step-icon {
    background: rgba(34, 197, 94, 0.08);
    color: #22c55e;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
}

.step-icon i {
    width: 26px;
    height: 26px;
}

.process-step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
    letter-spacing: 0.5px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Process */
@media (max-width: 992px) {
    .process-timeline {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(50% - 20px);
        min-width: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        flex: 0 0 100%;
        width: 100%;
        max-width: 360px;
        margin-bottom: 32px;
    }

    .step-content {
        min-height: auto;
    }
}

/* =========================================
   MARQUEE ANIMATION
   ========================================= */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================
   CLIENTS GRID PREMIUM SECTION
   ========================================= */
.clients-section-premium {
    padding: 80px 0;
    background-color: var(--color-dark);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.clients-section-premium .section-header {
    margin-bottom: 50px;
    text-align: center;
}

.clients-section-premium .subtitle-accent {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.clients-section-premium h2 {
    color: white;
    font-size: 32px;
    margin: 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.client-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.client-name {
    color: white;
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.client-card:hover .client-name {
    background: linear-gradient(to right, #fff, var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.client-category {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .client-name {
        font-size: 20px;
    }
}

/* =========================================
   STICKY PLAYER â€” 2-ROW LAYOUT (REBUILT)
   ========================================= */
.np-bar {
    position: fixed;
    bottom: -120px;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 20, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    padding: 0;
    transition: bottom 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.np-bar.visible {
    bottom: 0;
}

/* --- Rows --- */
.np-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.np-row-main {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-top: 12px;
    padding-bottom: 6px;
}

.np-row-seek {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}

/* --- EQ Animation --- */
.np-bar-eq {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    flex-shrink: 0;
}

.np-bar-eq span {
    width: 3px;
    background: linear-gradient(to top, #E8A838, #FB16B9);
    border-radius: 2px;
    animation: eqBounce 0.8s infinite alternate;
}

.np-bar-eq span:nth-child(1) {
    height: 55%;
    animation-delay: 0s;
}

.np-bar-eq span:nth-child(2) {
    height: 100%;
    animation-delay: 0.2s;
}

.np-bar-eq span:nth-child(3) {
    height: 45%;
    animation-delay: 0.4s;
}

.np-bar-eq span:nth-child(4) {
    height: 75%;
    animation-delay: 0.1s;
}

/* --- Track Info --- */
.np-bar-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.np-bar-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.np-bar-client {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    margin-top: 2px;
}

/* --- Controls Group (right side of row 1) --- */
.np-controls-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* --- Play/Pause Button --- */
.np-play-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    color: black;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.np-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.35);
}

.np-play-btn i {
    width: 22px;
    height: 22px;
    stroke-width: 2px;
}

/* --- Volume (Hover Popup) --- */
.np-volume-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.np-vol-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.np-vol-btn:hover {
    color: white;
}

.np-vol-btn i {
    width: 18px;
    height: 18px;
}

.np-volume-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    background: rgba(28, 28, 32, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 10px;
    margin-bottom: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 10001;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.np-volume-popup.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.np-volume-slider {
    appearance: none;
    -webkit-appearance: none;
    width: 6px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    cursor: pointer;
    writing-mode: bt-lr;
    -webkit-appearance: slider-vertical;
}

.np-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

/* --- Seek Bar (Row 2) --- */
.np-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-variant-numeric: tabular-nums;
    min-width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.np-seek-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.np-seek-slider {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    cursor: pointer;
    outline: none;
    transition: height 0.15s;
}

.np-seek-slider:hover {
    height: 6px;
}

.np-seek-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.1s;
}

.np-seek-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.np-seek-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
}

/* --- Playlist Toggle Pill --- */
.np-playlist-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 14px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.np-playlist-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.np-playlist-toggle-btn.active {
    background: #FB16B9;
    border-color: #FB16B9;
    box-shadow: 0 0 15px rgba(251, 22, 185, 0.4);
}

.np-playlist-toggle-btn i {
    width: 14px;
    height: 14px;
}

/* --- Close Button --- */
.np-close-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.np-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.np-close-btn i {
    width: 14px;
    height: 14px;
}

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
    .np-row-main {
        gap: 12px;
        padding-top: 10px;
    }

    .np-bar-eq {
        display: none;
    }

    .np-volume-wrap {
        display: none;
    }

    .np-playlist-toggle-btn span {
        display: none;
    }

    .np-playlist-toggle-btn {
        width: 36px;
        height: 36px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .np-play-btn {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
}

@media (max-width: 576px) {
    .np-bar-info {
        max-width: 140px;
    }

    .np-bar-title {
        font-size: 12px;
    }
}

/* === AUDIO PROGRESS BAR (card inline) === */
.pf-card-progress {
    width: 100%;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin-top: 15px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.pf-card-progress:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scaleY(1.1);
}

.pf-card-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #E8A838, #FB16B9);
    border-radius: 6px;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(251, 22, 185, 0.5);
}

/* =========================================
   PREMIUM PLAYLIST UI
   ========================================= */
.np-playlist {
    position: absolute;
    bottom: 100%;
    right: 24px;
    width: 350px;
    max-height: 0;
    background: rgba(18, 18, 20, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    visibility: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

.np-playlist.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.np-playlist-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.np-playlist-header span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.np-playlist-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.2s;
}

.np-playlist-close:hover {
    color: white;
}

.np-playlist-content {
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.np-playlist-content::-webkit-scrollbar {
    width: 4px;
}

.np-playlist-content::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Playlist Item */
.np-playlist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.np-playlist-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.np-playlist-item.active {
    background: rgba(251, 22, 185, 0.15);
}

.np-pl-visual {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.np-pl-visual i {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.np-pl-visual .np-pl-eq {
    display: none;
    position: absolute;
    inset: 0;
    justify-content: center;
    align-items: flex-end;
    gap: 2px;
    padding-bottom: 6px;
}

.np-playlist-item.active .np-pl-visual i {
    display: none;
}

.np-playlist-item.active .np-pl-visual .np-pl-eq {
    display: flex;
}

/* Mini EQ Animation */
.np-pl-eq span {
    width: 3px;
    background: #FB16B9;
    border-radius: 1px;
    animation: eqMini 0.6s infinite alternate;
}

.np-pl-eq span:nth-child(1) {
    height: 40%;
    animation-delay: 0s;
}

.np-pl-eq span:nth-child(2) {
    height: 80%;
    animation-delay: 0.1s;
}

.np-pl-eq span:nth-child(3) {
    height: 50%;
    animation-delay: 0.2s;
}

@keyframes eqMini {
    0% {
        height: 20%;
    }

    100% {
        height: 90%;
    }
}

.np-pl-info {
    flex: 1;
    overflow: hidden;
}

.np-pl-title {
    color: white;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.np-playlist-item.active .np-pl-title {
    color: #FB16B9;
}

.np-pl-client {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    margin-top: 2px;
}

.np-pl-duration {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-variant-numeric: tabular-nums;
}

/* Playlist Mobile */
@media (max-width: 900px) {
    .np-playlist {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 80px;
    }
}

/* ============================================
   DIGITAL SERVICES SECTION
   ============================================ */
.digital-services {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a0a12 0%, #0d1117 50%, #0a0a12 100%);
}

/* Decorative orbs */
.ds-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    animation: dsOrbFloat 15s ease-in-out infinite;
}

.ds-orb--teal {
    width: 500px;
    height: 500px;
    background: #14b8a6;
    top: -100px;
    right: -150px;
}

.ds-orb--blue {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

@keyframes dsOrbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

/* Badge */
.ds-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 50px;
    color: #5eead4;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.ds-badge svg {
    width: 16px;
    height: 16px;
}

.ds-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards Grid */
.ds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

/* Card */
.ds-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.ds-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ds-card[data-accent="teal"]::before {
    background: linear-gradient(90deg, #14b8a6, #2dd4bf);
}

.ds-card[data-accent="cyan"]::before {
    background: linear-gradient(90deg, #06b6d4, #22d3ee);
}

.ds-card[data-accent="emerald"]::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.ds-card[data-accent="sky"]::before {
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
}

.ds-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ds-card:hover::before {
    opacity: 1;
}

/* Card Icon */
.ds-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.ds-card:hover .ds-card-icon {
    transform: scale(1.1);
}

.ds-card[data-accent="teal"] .ds-card-icon {
    background: rgba(20, 184, 166, 0.15);
    color: #2dd4bf;
}

.ds-card[data-accent="cyan"] .ds-card-icon {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
}

.ds-card[data-accent="emerald"] .ds-card-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.ds-card[data-accent="sky"] .ds-card-icon {
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
}

.ds-card-icon svg {
    width: 26px;
    height: 26px;
}

/* Card Content */
.ds-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.ds-card>p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature list */
.ds-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ds-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    padding: 7px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ds-card-list li:first-child {
    border-top: none;
}

.ds-card-list li svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.ds-card[data-accent="teal"] .ds-card-list li svg {
    color: #2dd4bf;
}

.ds-card[data-accent="cyan"] .ds-card-list li svg {
    color: #22d3ee;
}

.ds-card[data-accent="emerald"] .ds-card-list li svg {
    color: #34d399;
}

.ds-card[data-accent="sky"] .ds-card-list li svg {
    color: #38bdf8;
}

/* CTA */
.ds-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Luma Ray Brand Banner — Redesigned */
.ds-brand-banner {
    margin-top: 50px;
    padding: 0;
}

.ds-brand-inner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%);
    border: 1px solid rgba(20, 184, 166, 0.15);
}

.ds-brand-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ds-brand-content {
    padding: 32px 36px;
    position: relative;
    z-index: 1;
}

.ds-brand-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.ds-brand-logo {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.ds-brand-name {
    font-family: var(--font-heading);
    font-size: 28px;
    background: linear-gradient(135deg, #5eead4, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.ds-brand-tagline {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ds-brand-soon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 20px;
    color: #fbbf24;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ds-brand-soon svg {
    width: 13px;
    height: 13px;
}

.ds-brand-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 18px;
}

.ds-brand-desc strong {
    color: #5eead4;
    font-weight: 600;
}

.ds-brand-domains {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ds-brand-domain {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2dd4bf;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.25);
    border-radius: 10px;
}

.ds-brand-domain svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

/* ---- Teaser Strip (below hero) ---- */
.ds-teaser-strip {
    background: #0d1117;
    border-top: 1px solid rgba(20, 184, 166, 0.2);
    border-bottom: 1px solid rgba(20, 184, 166, 0.2);
    padding: 16px 0;
    position: relative;
    z-index: 10;
}

.ds-teaser-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ds-teaser-pulse {
    width: 8px;
    height: 8px;
    background: #14b8a6;
    border-radius: 50%;
    flex-shrink: 0;
    animation: teaserPulse 2s ease-in-out infinite;
}

@keyframes teaserPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(20, 184, 166, 0);
    }
}

.ds-teaser-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: #0d1117;
    background: linear-gradient(135deg, #14b8a6, #22d3ee);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ds-teaser-inner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.ds-teaser-inner p strong {
    color: #5eead4;
    font-weight: 600;
}

.ds-teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #2dd4bf;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 6px;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.ds-teaser-link:hover {
    background: rgba(20, 184, 166, 0.15);
}

.ds-teaser-link svg {
    width: 14px;
    height: 14px;
}

.ds-cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.ds-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.25);
}

.ds-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.35);
}

.ds-cta-btn svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 1100px) {
    .ds-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ds-teaser-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .ds-teaser-pulse {
        display: none;
    }

    .ds-teaser-inner p {
        font-size: 12.5px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .ds-brand-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ds-brand-content {
        padding: 24px 20px;
    }

    .ds-brand-name {
        font-size: 22px;
    }

    .ds-brand-tagline {
        font-size: 11px;
    }

    .ds-brand-desc {
        font-size: 13px;
    }

    .ds-brand-domains {
        flex-direction: column;
        gap: 10px;
    }

    .ds-brand-domain {
        font-size: 13px;
        padding: 8px 16px;
    }

    .ds-cta-text {
        font-size: 14px;
        padding: 0 10px;
    }

    .ds-cta-btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .digital-services {
        padding: 80px 0 60px;
    }

    .ds-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ds-card {
        padding: 28px 24px;
    }

    .ds-subtitle {
        font-size: 15px;
    }
}