/* ================================================
   EXPLOREAIN MEDIA - CREATIVE STUDIO THEME
   Instagram-Inspired Gradients + Cinematic Design
   ================================================ */

/* ===== COLOR VARIABLES ===== */
:root {
    /* Instagram Gradients */
    --gradient-instagram: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
    --gradient-warm: linear-gradient(90deg, #ff7a18, #ff0066, #ffcc00);

    /* Base Colors */
    --bg-primary: #0b0b0f;
    --bg-section: #121218;
    --bg-card: #181820;
    --text-primary: #ffffff;
    --text-secondary: #b3b3c2;

    /* Accent Colors */
    --accent-pink: #dd2a7b;
    --accent-purple: #8134af;
    --accent-orange: #f58529;
    --accent-blue: #515bd4;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 56px;
    line-height: 1.2;
}

h2 {
    font-size: 36px;
    line-height: 1.3;
}

h3 {
    font-size: 24px;
}

.gradient-text {
    background: var(--gradient-instagram);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== BUTTONS ===== */
.btn-gradient {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gradient-warm);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 122, 24, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 122, 24, 0.5);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--accent-pink);
    background: rgba(221, 42, 123, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* ===== NAVBAR ===== */
.media-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.media-navbar.scrolled {
    background: rgba(11, 11, 15, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.logo-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.logo-brand .highlight {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Global nav slot — 9-dot menu + profile button */
.global-nav-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    gap: 40px;
    margin-left: 60px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-warm);
    transition: width 0.3s ease;
}

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

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0 10%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b0b0f 0%, #1a1a2e 50%, #16213e 100%);
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(245, 133, 41, 0.15), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(129, 52, 175, 0.15), transparent 50%);
}

.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f58529, transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8134af, transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: 7s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #dd2a7b, transparent);
    top: 50%;
    right: 30%;
    animation-delay: 14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(50px, -50px);
    }

    66% {
        transform: translate(-30px, 30px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 900px;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    color: white;
}

.hero-subtitle {
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ===== SECTION CONTAINERS ===== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 60px;
}

.section-header {
    margin-bottom: 60px;
}

/* ===== HERO TICKER COMPONENT ===== */
.ticker-section {
    width: 100%;
    background: #0e0a10;
    padding: 25px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 25s linear infinite;
    gap: 80px; /* Provides consistent spacing between repeated items */
    padding-left: 40px;
}

.ticker-section:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.ticker-item:hover {
    color: #f58529; /* Matches warm gradient */
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--bg-section);
    padding-bottom: 120px;
}

.about-banner {
    width: 100%;
    height: 450px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.about-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6) contrast(1.1);
}

.about-content-area {
    padding: 0 5%;
}

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

@media (max-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-banner {
        height: 300px;
        margin-bottom: 50px;
    }
}

.about-quote {
    font-size: 42px;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--accent-orange);
    margin-bottom: 30px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-image {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 40px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-pill-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.future-pillar {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.future-pillar:hover {
    border-color: rgba(221, 42, 123, 0.3);
    transform: translateX(5px);
}

.future-pillar i {
    font-size: 24px;
    background: var(--gradient-instagram);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.future-pillar span {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-instagram);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(221, 42, 123, 0.3);
    box-shadow: 0 10px 40px rgba(221, 42, 123, 0.2);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.gradient-icon {
    background: var(--gradient-warm);
    color: white;
}

.service-title {
    margin-bottom: 15px;
    font-size: 22px;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===== FILM REEL TICKER ===== */
.film-ticker-section {
    padding: 60px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.film-ticker {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #0e0a10;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* scrolling track */
.film-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* pause on hover */
.film-ticker:hover .film-track {
    animation-play-state: paused;
}

/* film frame */
.film-frame {
    flex: 0 0 auto;
    padding: 15px 40px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f0ece8;
    background: #1a1524;
    border-right: 3px solid black;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* perforation holes */
.film-frame::before,
.film-frame::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    background-image: radial-gradient(circle, #000 2px, transparent 2px);
    background-size: 14px 8px;
    background-repeat: repeat-x;
}

.film-frame::before {
    top: 0;
}

.film-frame::after {
    bottom: 0;
}

/* Edge fade shadows */
.film-ticker::before,
.film-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.film-ticker::before {
    left: 0;
    background: linear-gradient(to right, #0e0a10, transparent);
}

.film-ticker::after {
    right: 0;
    background: linear-gradient(to left, #0e0a10, transparent);
}

/* Cinematic Glow on hover */
.film-frame:hover {
    background: #221a30;
    box-shadow: inset 0 0 20px rgba(232, 97, 77, 0.2);
    color: white;
}

/* animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 120px 0;
    background: var(--bg-section);
    color: #ffffff;
}

.why-section .section-title {
    margin-bottom: 60px;
    color: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.why-item {
    text-align: center;
}

.why-dot {
    width: 16px;
    height: 16px;
    background: var(--gradient-instagram);
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(221, 42, 123, 0.5);
}

.why-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
}

.why-item p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-warm);
    color: white;
    border-color: transparent;
}

.showreel-container {
    margin-bottom: 60px;
    perspective: 1000px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(221, 42, 123, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(221, 42, 123, 0.2);
}

.main-showreel {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Customizing video controls for some browsers where possible (webkit) */
.main-showreel::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16/9;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-placeholder i {
    font-size: 48px;
    color: var(--text-secondary);
    opacity: 0.3;
    margin-bottom: 10px;
}

.portfolio-placeholder p {
    color: var(--text-secondary);
    opacity: 0.5;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-instagram);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.portfolio-overlay i {
    font-size: 64px;
    color: white;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

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

.portfolio-item:hover .portfolio-overlay i {
    transform: scale(1);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 40px;
    background: var(--gradient-instagram);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #ffffff;
}

.cta-section .btn-gradient {
    background: white;
    color: var(--accent-purple);
    font-weight: 700;
}

.cta-section .btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-tags {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 120px 0;
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.contact-item h4 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #ffffff;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-pink);
}

.contact-item p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

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

.social-link:hover {
    background: var(--gradient-warm);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

/* ===== FOOTER ===== */
.media-footer {
    padding: 40px 0;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-pink);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}

.whatsapp-float {
    display: block;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-title {
        font-size: 56px;
    }

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

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-title {
        font-size: 36px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-section {
        padding: 0 20px;
    }

    .blob-1,
    .blob-2,
    .blob-3 {
        width: 250px;
        height: 250px;
    }
}

/* ================================================
   MOBILE RESPONSIVENESS & NAV OPTIMIZATION
   ================================================ */

.desktop-only {
  display: flex !important;
}

.media-logo-container {
  display: flex;
  align-items: center;
  height: 50px;
  overflow: hidden;
  width: auto;
  min-width: 150px;
}

.media-logo-container {
  display: flex;
  align-items: center;
  height: 85px;
  overflow: hidden;
  width: auto;
  min-width: 180px;
}

.media-logo-img {
  height: 180px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .media-logo-container {
    height: 60px;
    min-width: 140px;
  }
  .media-logo-img {
    height: 120px;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.media-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 11, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.media-mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.mobile-nav-link {
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: var(--gradient-instagram);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.1);
}

.mobile-menu-footer {
  margin-top: 50px;
  text-align: center;
}

.mobile-menu-footer p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.mobile-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.mobile-socials a {
  font-size: 24px;
  color: white;
  transition: color 0.3s ease;
}

.mobile-socials a:hover {
  color: var(--accent-pink);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-toggle {
    display: flex;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .about-banner {
    height: 300px;
  }

  .about-quote {
    font-size: 28px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0 5%;
    justify-content: center;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

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

  .hero-title {
    font-size: 36px;
  }

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

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

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

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

  .section-container {
    padding: 0 20px;
  }

  .about-layout {
    gap: 30px;
  }

  .team-image {
    height: 250px;
  }

  .cta-title {
    font-size: 28px;
  }

  .media-logo-container {
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 16px;
  }

  .btn-gradient, .btn-outline {
    width: 100%;
    text-align: center;
  }
}