/* css/style.css */
/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --primary-light: #2d2d44;
    --accent: #c0392b;
    --accent-hover: #e74c3c;
    --gold: #d4a54a;
    /* ... rest of your CSS ... */
    <style>
        
    /* ===== ACCORDION ===== */
		.accordion-item {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-white);
    transition: var(--transition);
}

		.accordion-item:hover {
    border-color: rgba(136, 101, 97, 0.2);
}

		.accordion-header {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
    gap: 20px;
}

		.accordion-header:hover {
    background: rgba(0,0,0,0.02);
}

		.accordion-header .title-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

		.accordion-header .badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 12px;
    border-radius: 50px;
    background: var(--bg-light);
    color: var(--text-muted);
}

		.accordion-header .badge.stage { background: #e8f0fe; color: #1a5c9e; }
		.accordion-header .badge.television { background: #fef3e8; color: #b45f06; }
		.accordion-header .badge.film { background: #fce8e8; color: #b22b2b; }
		.accordion-header .badge.voice { background: #e8f5e9; color: #2e7d32; }

		.accordion-header .arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

		.accordion-item.active .accordion-header .arrow {
    transform: rotate(180deg);
}

		.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

		.accordion-item.active .accordion-body {
    max-height: 800px; /* Adjust based on content */
    padding: 0 24px 24px;
}

		.accordion-body .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin: 12px 0 16px;
    font-size: 0.95rem;
}

		.accordion-body .details-grid .label {
    color: var(--text-muted);
    font-weight: 500;
}

		.accordion-body .description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 8px;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

			@media (max-width: 600px) {
    .accordion-body .details-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .accordion-header {
        flex-wrap: wrap;
        padding: 14px 18px;
    }
    .accordion-header .title-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

		/* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1a1a2e;
            --primary-light: #2d2d44;
            --accent: #c0392b;
            --accent-hover: #e74c3c;
            --gold: #d4a54a;
            --text-light: #f8f9fa;
            --text-dark: #2c2c2c;
            --text-muted: #6c757d;
            --bg-light: #f4f4f8;
            --bg-white: #ffffff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --max-width: 1200px;
            --header-height: 70px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-dark);
            background: var(--bg-light);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

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

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
        }

        p {
            margin-left: 50px;
            margin-right: 50px;
            margin-top: 25px;
        }

        .section-tag {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin-bottom: 40px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-block;
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 15px rgba(192, 57, 43, 0.3);
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
        }

        .btn-outline:hover {
            background: var(--text-light);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .btn-dark {
            background: var(--primary);
            color: #fff;
        }

        .btn-dark:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* ===== HEADER / NAVIGATION ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.5px;
        }

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

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.btn-nav {
            background: var(--accent);
            color: #fff;
            padding: 8px 24px;
            border-radius: 50px;
            font-weight: 600;
        }

        .nav-links a.btn-nav:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .nav-links a.btn-nav::after {
            display: none;
        }

        /* Mobile menu toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .menu-toggle span {
            width: 28px;
            height: 2.5px;
            background: #fff;
            border-radius: 2px;
            transition: var(--transition);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

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

        /* ===== HERO SECTION ===== */
        #hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--primary);
            background-image: radial-gradient(ellipse at top right, rgba(192, 57, 43, 0.15), transparent 60%),
                              radial-gradient(ellipse at bottom left, rgba(212, 165, 74, 0.08), transparent 50%);
            padding-top: var(--header-height);
            position: relative;
            overflow: hidden;
        }

        #hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .hero-content {
            color: #fff;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(212, 165, 74, 0.2);
            color: var(--gold);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            border: 1px solid rgba(212, 165, 74, 0.2);
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.1;
        }

        .hero-content h1 span {
            color: var(--gold);
        }

        .hero-content .hero-titles {
            font-size: 1.3rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
        }

        .hero-content p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 500px;
            margin-bottom: 32px;
            font-size: 1.05rem;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-placeholder {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 3/4;
            border-radius: var(--radius);
            background: linear-gradient(145deg, var(--primary-light), var(--primary));
            border: 2px solid rgba(255, 255, 255, 0.06);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
            text-align: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-image-placeholder i {
            font-size: 4rem;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.15);
        }

        .hero-image-placeholder .placeholder-text {
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Decorative shape */
        .hero-shape {
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(192, 57, 43, 0.08);
            pointer-events: none;
        }

        /* ===== SECTION COMMON ===== */
        section {
            padding: 80px 0;
        }

        section:nth-child(even) {
            background: var(--bg-white);
        }

        /* ===== ABOUT ===== */
        #about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 16px;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 16px;
            font-size: 1rem;
        }

        .about-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .about-skills span {
            background: var(--bg-light);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--primary);
        }

        .about-highlights {
            display: grid;
            gap: 20px;
        }

        .highlight-card {
            background: var(--bg-light);
            padding: 24px 28px;
            border-radius: var(--radius);
            border-left: 4px solid var(--gold);
            transition: var(--transition);
        }

        .highlight-card:hover {
            transform: translateX(6px);
            box-shadow: var(--shadow);
        }

        .highlight-card h4 {
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .highlight-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* ===== WORK / PORTFOLIO ===== */
        .work-filters {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .work-filters button {
            padding: 8px 24px;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            background: transparent;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
        }

        .work-filters button:hover,
        .work-filters button.active {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(192, 57, 43, 0.06);
        }

        .work-filters button.active {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        .work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 28px;
        }

        .work-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .work-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .work-card-image {
            height: 180px;
            background: linear-gradient(145deg, var(--bg-light), #e8e8ec);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .work-card-body {
            padding: 20px 24px 24px;
        }

        .work-card-body .work-category {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            margin-bottom: 4px;
        }

        .work-card-body h4 {
            font-size: 1.1rem;
            margin-bottom: 4px;
        }

        .work-card-body .work-role {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .work-card-body .work-meta {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 8px;
            border-top: 1px solid #f0f0f0;
            padding-top: 10px;
        }

        /* ===== PODCAST ===== */
        #podcast {
            background: var(--primary);
            color: #fff;
        }

        #podcast .section-subtitle {
            color: rgba(255, 255, 255, 0.6);
        }

        .podcast-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .podcast-info h3 {
            font-size: 2rem;
            margin-bottom: 8px;
        }

        .podcast-info h3 span {
            color: var(--gold);
        }

        .podcast-info p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .podcast-features {
            list-style: none;
            margin-bottom: 28px;
        }

        .podcast-features li {
            color: rgba(255, 255, 255, 0.8);
            padding: 6px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .podcast-features li i {
            color: var(--gold);
            width: 20px;
            text-align: center;
        }

        .podcast-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .podcast-links a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-weight: 500;
            transition: var(--transition);
        }

        .podcast-links a:hover {
            background: rgba(255, 255, 255, 0.16);
            transform: translateY(-2px);
        }

        .podcast-player {
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--radius);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .podcast-player .player-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 12px;
        }

        .podcast-player .episode-title {
            font-size: 1.1rem;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Simple audio player mock */
        .audio-mock {
            background: rgba(255, 255, 255, 0.06);
            border-radius: 8px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .audio-mock .play-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--accent);
            border: none;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .audio-mock .play-btn:hover {
            background: var(--accent-hover);
            transform: scale(1.05);
        }

        .audio-mock .waveform {
            flex: 1;
            height: 30px;
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .audio-mock .waveform span {
            display: block;
            width: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            animation: wave 1s ease-in-out infinite;
        }

        .audio-mock .waveform span:nth-child(1) { height: 12px; animation-delay: 0s; }
        .audio-mock .waveform span:nth-child(2) { height: 20px; animation-delay: 0.1s; }
        .audio-mock .waveform span:nth-child(3) { height: 28px; animation-delay: 0.2s; }
        .audio-mock .waveform span:nth-child(4) { height: 16px; animation-delay: 0.3s; }
        .audio-mock .waveform span:nth-child(5) { height: 24px; animation-delay: 0.4s; }
        .audio-mock .waveform span:nth-child(6) { height: 30px; animation-delay: 0.5s; }
        .audio-mock .waveform span:nth-child(7) { height: 18px; animation-delay: 0.6s; }
        .audio-mock .waveform span:nth-child(8) { height: 22px; animation-delay: 0.7s; }
        .audio-mock .waveform span:nth-child(9) { height: 10px; animation-delay: 0.8s; }
        .audio-mock .waveform span:nth-child(10) { height: 26px; animation-delay: 0.9s; }

        @keyframes wave {
            0%, 100% { transform: scaleY(0.4); }
            50% { transform: scaleY(1); }
        }

        .audio-mock .time {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            font-variant-numeric: tabular-nums;
            flex-shrink: 0;
        }

        /* ===== REVIEWS / TESTIMONIALS ===== */
        .reviews-slider {
            position: relative;
            overflow: hidden;
        }

        .reviews-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 0;
        }

        .review-slide {
            min-width: 100%;
            padding: 0 20px;
        }

        .review-card {
            background: var(--bg-white);
            border-radius: var(--radius);
            padding: 36px 40px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 0, 0, 0.04);
            max-width: 800px;
            margin: 0 auto;
        }

        .review-card .quote-icon {
            color: var(--gold);
            font-size: 2rem;
            opacity: 0.3;
            margin-bottom: 12px;
        }

        .review-card blockquote {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .review-card .review-source {
            font-weight: 600;
            color: var(--primary);
            font-style: normal;
        }

        .review-card .review-publication {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-style: normal;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 32px;
        }

        .slider-controls button {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid #e0e0e0;
            background: transparent;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1rem;
            color: var(--text-muted);
        }

        .slider-controls button:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(192, 57, 43, 0.04);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 16px;
        }

        .slider-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d0d0d0;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dots span.active {
            background: var(--accent);
            width: 28px;
            border-radius: 10px;
        }

        /* ===== CONTACT ===== */
        #contact .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 12px;
        }

        .contact-info p {
            color: var(--text-muted);
            margin-bottom: 28px;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .contact-detail i {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .contact-detail .label {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .contact-detail .value {
            font-weight: 500;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8e8ec;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background: var(--bg-white);
            margin-bottom: 16px;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.06);
        }

        .contact-form textarea {
            min-height: 140px;
            resize: vertical;
        }

        .contact-form .btn {
            width: 100%;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.6);
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        footer .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

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

        footer .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition);
        }

        footer .social-links a:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-3px);
        }

        footer .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: #fff;
        }

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

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            #hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

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

            .hero-image-placeholder {
                max-width: 300px;
                margin: 0 auto;
            }

            #about .container {
                grid-template-columns: 1fr;
            }

            .podcast-grid {
                grid-template-columns: 1fr;
            }

            #contact .container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: var(--primary);
                flex-direction: column;
                padding: 30px 24px;
                gap: 20px;
                transform: translateY(-120%);
                transition: transform 0.4s ease;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            }

            .nav-links.open {
                transform: translateY(0);
            }

            .nav-links a {
                font-size: 1.1rem;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .work-grid {
                grid-template-columns: 1fr;
            }

            .review-card {
                padding: 24px 20px;
            }

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

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }

            .podcast-links a {
                width: 100%;
                justify-content: center;
            }

            .podcast-player {
                padding: 20px;
            }
        }
    </style>    
}