/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;600&family=Montserrat:wght@700&display=swap');

:root {
    --bg-color: #050c1f;
    /* Deep Navy to match Logo Background */
    --text-color: #ffffff;
    --accent-color: #ffc107;
    /* Logo Gold */
    --accent-hover: #FFD54F;
    /* Lighter Gold on Hover */
    --text-secondary: #a0a0a0;
    --font-headline: 'Bebas Neue', cursive;
    --font-subhead: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    /* Context for fixed bg */
}

.waveform {
    display: inline-flex;
    height: 1em;
    width: 1.2em;
    gap: 0.08em;
    align-items: center;
}

.wave-bar {
    width: 100%;
    height: 10%;
    background-color: #efefef;
    border-radius: 100px;
    animation: waves 250ms linear infinite alternate;
}

.wave-bar:nth-child(2) {
    animation-delay: 100ms;
}

.wave-bar:nth-child(3) {
    animation-delay: 200ms;
}

.wave-bar:nth-child(4) {
    animation-delay: 120ms;
}

.wave-bar:nth-child(5) {
    animation-delay: 70ms;
}

.wave-bar:nth-child(6) {
    animation-delay: 200ms;
}

.wave-bar:nth-child(7) {
    animation-delay: 20ms;
}

@keyframes waves {
    from {
        height: 10%;
    }

    to {
        height: 100%;
    }
}

/* Background Canvas */
#bg-waves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind everything */
    opacity: 0.4;
    /* Subtle effect */
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    /* Above canvas */
}

/* Header */
header {
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headline);
    font-size: 1.8rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1001;
}

.logo span {
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.4s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - var(--nav-height));
    /* Full height minus header */
    padding: 20px 0 50px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
    padding-right: 50px;
    z-index: 2;
    /* Text above image on overlap interaction */
}

.hero-title {
    font-family: var(--font-headline);
    font-weight: 400;
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-title span {
    display: block;
    color: var(--accent-color);
    /* Highlight Jingle Maker */
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 400px;
    color: var(--text-secondary);
    opacity: 1;
}

.hero-subtitle .line-wrapper {
    display: block;
    overflow: hidden;
    /* This is the mask - clips the content */
}

.hero-subtitle .line-inner {
    display: block;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

/* Hero Video Container */
.hero-video-wrapper {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    max-width: 80%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.video-frame {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-frame video {
    width: 100%;
    display: block;
    /* Ensure fit */
    object-fit: cover;
}

/* Aesthetic White Accents */
.frame-decoration {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.frame-decoration.top-left {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.frame-decoration.bottom-right {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.hero-video-wrapper:hover .frame-decoration.top-left {
    top: -12px;
    left: -12px;
}

.hero-video-wrapper:hover .frame-decoration.bottom-right {
    bottom: -12px;
    right: -12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
    height: 48px;
    /* Fixed height for consistency */
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    /* Invisible border to match outline button spacing if needed, or just relying on box-model */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    display: flex;
    /* This is redundant as .btn is inline-flex, but harmless. */
    align-items: center;
    gap: 10px;
    box-shadow: none;
}

.btn-outline svg {
    width: 20px;
    height: 20px;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: relative;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    margin-top: 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-color);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    /* Black w/ opacity */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    /* Show as flex to center */
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #000;
    margin: auto;
    padding: 0;
    border: 1px solid #333;
    width: 80%;
    max-width: 800px;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 4px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

/* Services Section */
.services {
    padding: 20px 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    /* Necessary for slider */
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-family: var(--font-headline);
    font-size: 3.5rem;
    color: var(--text-color);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* 3D Carousel Styles */
.services-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    /* Adjust based on card height + gaps */
    perspective: 1000px;
    /* Essential for 3D effect */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    overflow: visible;
}

.service-card {
    position: absolute;
    width: 360px;
    /* Slightly larger for focus */
    height: 480px;
    background: rgba(5, 12, 31, 0.95);
    /* Deep Navy background for contrast */
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform-style: preserve-3d;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    /* GSAP will handle position/opacity/scale */
    opacity: 0;
    z-index: 0;
    user-select: none;
}

.service-card h3 {
    font-family: var(--font-headline);
    font-size: 2.2rem;
    margin: 20px 0;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

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

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: -50px;
    /* Pull up closer to the carousel */
    position: relative;
    z-index: 20;
    padding-bottom: 50px;
}

.nav-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 40px;
    border-radius: 30px;
    font-family: var(--font-subhead);
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-btn:hover {
    background: var(--accent-color);
    color: #050C1F;
    /* Navy text on gold bg */
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
}

/* Responsive Styles */
@media (max-width: 960px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Mobile Navigation */
    .nav-links {
        display: flex;
        /* Always display flex to allow transform transition */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        right: 0;
        background-color: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(10px);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
        padding-top: 60px;
    }

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

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        /* Fade in effect */
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        /* Staggered delay handled in JS or simplified here */
    }

    /* Add delay for each item for staggered effect */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }


    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .hero-image img {
        max-width: 90%;
    }

    /* Menu Icon Animation */
    .menu-toggle.is-active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 12, 31, 0.6);
    /* Semi-transparent Deep Navy */
    backdrop-filter: blur(15px);
    /* Blur effect */
    -webkit-backdrop-filter: blur(15px);
    /* Safari support */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-out, visibility 1s ease-out;
    /* 1s duration */
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

#preloader img {
    width: 150px;
    height: auto;
}

/* --- About Me Section (New Layout) --- */
.about-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    align-items: start;
}

/* About Card Common Styles */
.about-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glassy dark background */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

/* Profile Card (Left) */
.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    /* Let content dictate height */
}

.profile-image-container {
    position: relative;
    width: 100%;
    height: 350px;
    /* Taller area for the portrait */
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align bottom */
    overflow: visible;
}

.blob-svg {
    position: absolute;
    width: 380px;
    /* Much larger blob */
    height: 380px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    /* Center it behind */
    opacity: 1;
}

.blob-svg path {
    fill: rgba(255, 193, 7, 0.15);
    /* Keep Gold theme */
}

/* Portrait Image Style */
.profile-img {
    width: auto;
    height: 115%;
    /* Slight overlap */
    max-width: 90%;
    object-fit: contain;
    z-index: 2;
    border-radius: 0;
    /* Remove circle */
    border: none;
    background-color: transparent;
    filter: grayscale(100%);
    /* B&W style as per ref */
    transition: filter 0.3s ease;
}

.profile-img:hover {
    filter: grayscale(0%);
    /* Color on hover */
}

.profile-name {
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
    color: var(--text-color);
    margin-top: 25px;
}

.profile-email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.download-btn {
    width: 100%;
    justify-content: center;
}

/* Info Column (Right) */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* About Text Card */
.about-text-card {
    position: relative;
    padding-right: 120px;
    /* Space for circular badge */
}

.about-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.about-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 204, 113, 0.2);
    /* Green tint */
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
}

.circular-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    animation: rotateText 10s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-star {
    position: absolute;
    font-size: 1.5rem;
    color: var(--accent-color);
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.about-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Roles Card */
.roles-card {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.roles-section,
.apps-section,
.socials-section {
    flex: 1;
    min-width: 250px;
}

.roles-card h4 {
    color: var(--accent-color);
    /* Gold color for subtitles */
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 12px;
}

.role-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.gold-bg {
    background-color: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.navy-bg {
    background-color: rgba(5, 12, 31, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.role-info h5 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.role-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* App Icons */
.app-icons {
    display: flex;
    gap: 20px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.app-item:hover .app-icon-img {
    transform: scale(1.1);
}

.app-icon-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
    transition: transform 0.2s;
    /* Optional: background for transparent icons if needed */
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    /* Padding inside the box */
}

.app-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Social Banner */
.social-banner {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.social-banner:hover img {
    transform: scale(1.05);
}

/* Social Icons */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-item:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.social-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Response for About Me */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text-card {
        padding-right: 40px;
    }

    .circular-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-left: auto;
    }

    .about-header {
        flex-wrap: wrap;
    }
}

/* Services List in About Me */
.services-list {
    margin-top: 20px;
}

.services-list h5 {
    color: var(--accent-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.services-list ul {
    list-style: none;
    padding: 0;
}

.services-list li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.services-list li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.services-list strong {
    color: #fff;
    font-weight: 600;
}

/* --- TV Guesting Section --- */
.tv-guesting-section {
    padding: 80px 0;
    position: relative;
}

.tv-guesting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
}

.tv-guesting-section .section-header {
    margin-bottom: 40px;
}

/* Video Container */
.tv-video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.tv-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    background: #000;
}

.tv-video-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), transparent, rgba(255, 193, 7, 0.1));
    border-radius: 17px;
    z-index: -1;
}

.tv-video-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive: Tablet */
@media (max-width: 768px) {
    .tv-guesting-section {
        padding: 60px 0;
    }

    .tv-guesting-section .section-header {
        margin-bottom: 30px;
    }

    .tv-video-wrapper iframe {
        height: 350px;
    }
}

/* Responsive: Mobile */
@media (max-width: 480px) {
    .tv-guesting-section {
        padding: 40px 0;
    }

    .tv-guesting-section .section-title {
        font-size: 2.5rem;
    }

    .tv-video-container {
        padding: 0 15px;
    }

    .tv-video-wrapper {
        border-radius: 12px;
    }

    .tv-video-wrapper iframe {
        height: 280px;
    }
}

/* --- Portfolio Section --- */
/* --- Portfolio Section (Redesigned) --- */
.portfolio-section {
    padding: 0;
    /* Full width/bleed */
    background: #000;
}

.portfolio-header {
    position: relative;
    height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/portfolio/featured_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-image 1s ease-in-out;
}

@media (max-width: 768px) {
    .portfolio-header {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .portfolio-header {
        height: 300px;
    }
}

.portfolio-title-box {
    border: 5px solid #000;
    background: rgba(255, 255, 255, 0.8);
    /* Semi-transparent white box per ref */
    padding: 20px 60px;
    backdrop-filter: blur(5px);
}

.portfolio-title-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

/* Filter Bar */
.portfolio-filters {
    background: #111;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #222;
}

.filter-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.filter-btn:hover,
.filter-btn.active {
    color: #fff;
}

/* Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    /* Larger tiles */
    gap: 0;
    /* No gap for edge-to-edge look */
    margin: 0;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-thumb {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover Content */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 61, 0.8);
    /* Navy overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-thumb {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.portfolio-info span {
    color: var(--accent-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Pagination */
.portfolio-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 40px 0;
    background: #000;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #222;
    color: #555;
}

/* Play Button Overlay on Thumbnails */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.portfolio-item:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

/* YouTube Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.video-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 10px;
}

.video-close-btn:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

#youtube-player {
    width: 100%;
    height: 100%;
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }
    
    .video-close-btn {
        top: -45px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 100%;
        border-radius: 0;
    }
    
    .video-close-btn {
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.7);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }
}

/* --- Contact Section (Redesign) --- */
.contact-section {
    padding: 80px 0 120px;
    /* Ensure dark background */
}

/* Header */
.contact-header-redesign {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title-large {
    font-size: 3.5rem;
    font-family: var(--font-headline);
    /* 'Montserrat' */
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.highlight-text {
    color: #3b82f6;
    /* Blue highlight to match reference image (or use var(--accent-color) for brand consistency) */
    /* Using a nice blue similar to the reference image */
    background: -webkit-linear-gradient(45deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Container */
.contact-container-redesign {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    /* Wide form, narrower info */
    gap: 80px;
}

/* Form Styles */
.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    /* Rounded as per ref */
    padding: 16px 20px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.form-group select option {
    background-color: #050C1F;
    color: #fff;
    padding: 10px;
}

/* --- Studio Section --- */
.studio-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* Hide overflow from swiper */
}

.studio-swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    filter: blur(4px);
    /* Blur non-active slides */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-slide-active {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1.1);
    /* Highlight active slide */
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
    /* Gold glow */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

/* --- Sticky Audio Player --- */
#audio-player-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: var(--font-body);
}

/* Collapsed: Folder Icon */
.player-folder {
    cursor: pointer;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.player-folder:hover {
    transform: scale(1.1);
}

.folder-icon {
    width: 60px;
    height: 50px;
    position: relative;
}

.folder-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 10px;
    background: #3b82f6;
    border-radius: 5px 5px 0 0;
}

.folder-body {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 0 5px 5px 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 0.8rem;
    flex-direction: column;
}

.music-note {
    font-size: 1.2rem;
    margin-top: -5px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.5);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Expanded Player UI */
.player-expanded {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 350px;
    background: #0f172a;
    /* Dark Navy */
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
}

.player-expanded.hidden {
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
}

.player-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

.player-header .subtitle {
    font-size: 0.8rem;
    color: var(--accent-color);
}

.btn-icon {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

/* Tabs */
.player-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.player-tab.active {
    color: #fff;
    background: rgba(59, 130, 246, 0.1);
}

.player-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3b82f6;
}

/* Tracklist */
.player-tracklist {
    max-height: 250px;
    overflow-y: auto;
    padding: 10px 0;
}

/* Custom Scrollbar */
.player-tracklist::-webkit-scrollbar {
    width: 6px;
}

.player-tracklist::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.track-item {
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.track-item.playing {
    background: rgba(59, 130, 246, 0.15);
    border-left: 3px solid #3b82f6;
}

.track-item .track-name {
    color: #fff;
    font-size: 0.9rem;
    flex: 1;
}

.track-item .track-duration {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Now Playing Bar */
.now-playing-bar {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.now-playing-bar.hidden {
    display: none;
}

.track-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

#np-title {
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
}

#np-artist {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.ctrl-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.ctrl-btn:hover {
    color: var(--accent-color);
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #3b82f6;
    transition: width 0.1s linear;
}

.full-width {
    grid-column: 1 / -1;
}

.full-width textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    /* Blue gradient per ref */
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Info Sidebar */
.contact-info-sidebar {
    padding-top: 20px;
}

.info-group {
    margin-bottom: 40px;
}

.info-group h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.info-item .icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: var(--accent-color);
    /* Keep icons gold for subtle brand tie-in */
}

.info-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.info-item a:hover {
    color: #fff;
}

/* Footer */
.site-footer {
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headline);
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 1px;
}

.footer-logo .waveform {
    display: flex;
    align-items: center;
    gap: 3px;
}

.footer-logo .wave-bar {
    width: 3px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-logo .wave-bar:nth-child(2) {
    height: 25px;
}

.footer-logo .wave-bar:nth-child(3) {
    height: 15px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .site-footer {
        padding: 60px 0 30px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container-redesign {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-title-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-header-redesign {
        text-align: left;
        padding: 0 20px;
    }
}

/* --- Service Packages (Pricing Cards) - Replicated Design --- */
.packages-wrapper {
    width: 100%;
    margin-top: 50px;
    padding: 20px;
    position: relative;
    z-index: 10;
}

/* Header & Typography */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-family: var(--font-headline);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pricing-subtitle {
    color: #888888;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.toggle-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #666;
}

.toggle-label.active {
    color: #ffffff;
}

.pricing-toggle {
    width: 50px;
    height: 26px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
}

.toggle-circle {
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4px;
    /* Default left */
    transition: all 0.3s;
}

.save-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 0.7rem;
    color: #aaa;
}

/* Grid Layout */
.packages-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center vertically so taller card pops */
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding-top: 50px;
    /* Space for glow */
}

/* Base Card Styles */
.package-card {
    background: #161616;
    /* Dark Card BG */
    border: 1px solid #2a2a2a;
    border-radius: 30px;
    /* Large radius */
    padding: 40px 30px;
    width: 320px;
    min-height: 520px;
    /* Consistent height */
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

/* Base specific */
.package-card.base {
    border-color: #2a2a2a;
}

/* Premium specific */
.package-card.premium {
    min-height: 560px;
    /* Taller */
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 50px rgba(255, 193, 7, 0.1);
    /* Gold glow */
    background: #1a1a1a;
    z-index: 2;
}

/* Glow Effect behind Premium */
.card-glow {
    position: absolute;
    top: -60px;
    left: -60px;
    right: -60px;
    bottom: -60px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
}

/* Unlimited specific */
.package-card.unlimited {
    border-color: #2a2a2a;
}

/* Card Content */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-label {
    display: block;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.plan-name {
    color: #fff;
    font-size: 2.5rem;
    /* Big title */
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1;
    text-transform: uppercase;
}

.plan-desc {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
    min-height: 40px;
    line-height: 1.5;
}

/* Features List */
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #ccc;
    font-size: 0.95rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #444;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 10px;
    color: #fff;
    font-style: normal;
    flex-shrink: 0;
}

/* Specific Feature Colors */
.package-card.premium .check-icon {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.package-card.unlimited .check-icon {
    border-color: #a8ff78;
    color: #a8ff78;
}

/* Buttons */
.btn-pricing {
    margin-top: auto;
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    text-transform: none;
    /* Not uppercase like previous */
}

.btn-base {
    background: transparent;
    /* Ghost button */
    border: 1px solid #333;
    color: #666;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.02) 5px, rgba(255, 255, 255, 0.02) 10px);
    /* Striped effect like image? */
}

.btn-base:hover {
    border-color: #666;
    color: #fff;
}

.btn-premium {
    background: linear-gradient(90deg, #ffe259, #ffa751);
    /* Gold/Orange Gradient */
    color: #000;
    border: none;
    box-shadow: 0 5px 20px rgba(255, 167, 81, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 167, 81, 0.5);
}

.btn-unlimited {
    background: linear-gradient(90deg, #a8ff78, #78ffd6);
    /* Green/Teal Gradient */
    color: #000;
    border: none;
    box-shadow: 0 5px 20px rgba(120, 255, 214, 0.3);
}

.btn-unlimited:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 255, 214, 0.5);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 1px solid #666;
    /* Subtle border like image */
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 0.65rem;
    color: #aa8c48;
    /* Gold ish text */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-title {
        font-size: 2rem;
    }

    .packages-grid {
        flex-direction: column;
        align-items: center;
    }

    .package-card,
    .package-card.premium {
        width: 100%;
        max-width: 380px;
        min-height: auto;
    }
}
