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

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #999999;
    --gray-dark: #333333;
    --accent: #8B0000;
    --accent-light: #a00000;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.25);
    --gradient-1: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    --gradient-2: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background: var(--white);
}

*::selection {
    background: var(--black);
    color: var(--white);
}


@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.05em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    min-height: 70px;
    height: auto;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    min-height: 46px;
    box-sizing: border-box;
}

.logo {
    display: block;
    height: 40px;
    min-height: 40px;
    width: auto;
    min-width: 120px;
    flex-shrink: 0;
    box-sizing: border-box;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo img {
    height: 40px;
    min-height: 40px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.5));
    transform: scale(1.05);
}

.logo:hover {
    text-shadow: 0 0 30px rgba(255,255,255,0.5);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 24px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.nav-menu li {
    display: block;
    height: 24px;
    min-height: 24px;
    flex-shrink: 0;
    box-sizing: border-box;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
    display: block;
    height: 24px;
    line-height: 24px;
    min-height: 24px;
    white-space: nowrap;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.fonts-loaded .nav-menu a {
    font-family: 'Montserrat', sans-serif;
}

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: grayscale(100%) brightness(0.7);
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0.5;
}

.video-background video:not([src=""]) + .video-overlay + .video-fallback {
    opacity: 0;
    pointer-events: none;
}

.production-icons {
    display: flex;
    gap: 3rem;
}

.icon-bounce {
    font-size: 5rem;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-logo h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 0 40px rgba(255,255,255,0.3);
    position: relative;
}

.hero-logo-img {
    max-width: 450px;
    width: auto;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    filter: none;
    transition: all 0.3s ease;
}

.hero-logo-img:hover {
    filter: none;
    transform: scale(1.05);
}

.hero-logo h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--white);
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    animation: expand 1s ease 0.8s backwards;
}

@keyframes expand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.typewriter-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.9rem, 2vw, 1.5rem);
    color: var(--white);
    letter-spacing: 0.15em;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 2rem;
    min-height: 2rem;
}

.typewriter-text::after {
    content: '|';
    animation: blink 1s infinite;
    margin-left: 5px;
}

.manifesto {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--white);
    max-width: 700px;
    margin: 2rem auto 0;
    font-weight: 300;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 12px;
    position: relative;
    transition: border-color 0.3s ease;
}

.scroll-indicator:hover span {
    border-color: var(--white);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MAIN SERVICES ===== */
.main-services {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    min-height: auto;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-logo-img {
        max-width: 280px;
        max-height: 280px;
    }
    
    .main-services {
        padding: 3rem 0;
    }
}

.main-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
}

/* Modern Services List - No boxes */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.service-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #422855 0%, #2a1633 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover::before {
    height: 100%;
}

.service-item:hover {
    background: linear-gradient(90deg, rgba(66, 40, 85, 0.03) 0%, transparent 100%);
    padding-left: 1.5rem;
    transform: translateX(0);
}

.service-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-decoration: none;
    color: var(--black);
    width: 100%;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-title {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    margin: 0;
    flex: 0 0 auto;
    min-width: 200px;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
}

.service-desc {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gray-dark);
    margin: 0;
    flex: 1;
    min-width: 250px;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.service-arrow {
    font-size: 1.5rem;
    opacity: 0.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-top: 0.3rem;
    color: #422855;
}

.service-item:hover .service-arrow {
    opacity: 0.8;
    transform: translateX(12px);
    color: #2a1633;
}

/* ===== REFERENCES ===== */
.references {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ref-item {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ref-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(66, 40, 85, 0.12);
}

.ref-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #fff;
}

.ref-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ref-item:hover .ref-image {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--black);
}

.ref-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 2rem 0;
}

.ref-slider {
    display: flex;
    gap: 4rem;
    animation: scroll-refs 30s linear infinite;
}

.ref-slide {
    flex: 0 0 auto;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.ref-slide:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.ref-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll-refs {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

/* ===== ABOUT TEASER ===== */
.about-teaser {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-text {
    margin-bottom: 4rem;
}

.about-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.about-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.03em;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.about-services {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.service-item {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-item:hover {
    color: var(--white);
    transform: translateY(-5px);
}

.service-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--black);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    color: var(--white);
    border-color: var(--black);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: 
        linear-gradient(135deg, #f5f5f5 0%, var(--white) 100%),
        radial-gradient(circle at center, rgba(0,0,0,0.02) 0%, transparent 70%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.02) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    position: relative;
}

.newsletter-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(0,0,0,0.1), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
    to {
        transform: rotate(360deg);
    }
}

.newsletter-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: -0.02em;
}

.newsletter-content > p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(0,0,0,0.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(0,0,0,0.1);
    background: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--black);
}

.btn-secondary {
    padding: 1.2rem 2.5rem;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.newsletter-disclaimer {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.5);
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: 
        linear-gradient(180deg, var(--black) 0%, #0a0a0a 100%),
        radial-gradient(ellipse at top, rgba(255,255,255,0.03) 0%, transparent 70%);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
    margin-top: 0;
    width: 100%;
    box-sizing: border-box;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.footer-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--white), transparent);
}

.footer-toggle {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 30px;
}

.toggle-icon {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.footer-toggle.active .toggle-icon {
    transform: rotate(45deg);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

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

.footer-contact {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.footer-contact strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
    transform: translateY(-3px);
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom-left p {
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-right span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

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

    .container {
        padding: 0 1rem;
    }

    .services-list {
        gap: 0;
        padding: 0 1rem;
        margin-top: 1.5rem;
    }
    
    .service-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .service-title {
        min-width: auto;
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .service-desc {
        min-width: auto;
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        line-height: 1.6;
    }
    
    .service-item {
        padding: 1.25rem 0;
    }
    
    .service-item:hover {
        padding-left: 1rem;
    }
    
    .service-link {
        gap: 0.75rem;
    }
    
    .service-arrow {
        margin-top: 0;
        align-self: flex-end;
    }

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

    .footer {
        padding: 80px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo-img {
        height: 40px;
        margin-bottom: 0.8rem;
    }

    .footer-tagline {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links,
    .footer-contact,
    .social-icons {
        display: none;
        animation: slideDown 0.3s ease;
    }

    .footer-column.active .footer-links,
    .footer-column.active .footer-contact,
    .footer-column.active .social-icons {
        display: flex;
    }

    .footer-column.active .footer-contact {
        display: block;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .social-icons {
        gap: 0.8rem;
        margin-top: 1.5rem;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .newsletter-section {
        padding: 80px 0;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-icon {
        width: 60px;
        height: 60px;
    }

    .newsletter-icon svg {
        width: 32px;
        height: 32px;
    }

    .hero {
        height: 80vh;
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .main-services,
    .references,
    .about-teaser {
        padding: 50px 0;
    }
    
    .production-detail-hero {
        padding-top: 100px;
        padding-bottom: 30px;
        margin-top: 0;
        position: relative;
    }
    
    .service-overview {
        padding: 30px 0;
    }
    
    .service-icon-large {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .service-subtitle {
        font-size: 0.85rem;
    }
    
    .breadcrumb {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
    }

    .service-item {
        padding: 2rem 0;
    }
    
    .service-item:hover {
        padding-left: 0.5rem;
    }

    .footer {
        padding: 50px 0 20px;
    }

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

    .newsletter-icon {
        width: 50px;
        height: 50px;
    }

    .newsletter-icon svg {
        width: 24px;
        height: 24px;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo-img {
        height: 35px;
    }

    .footer-column h3 {
        font-size: 0.95rem;
    }

    .footer-links,
    .footer-contact,
    .social-icons {
        display: none;
    }

    .footer-column.active .footer-links,
    .footer-column.active .footer-contact,
    .footer-column.active .social-icons {
        display: flex;
    }

    .footer-column.active .footer-contact {
        display: block;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.8rem;
    }

    .social-icons {
        justify-content: center;
        gap: 0.6rem;
        overflow-x: hidden;
        width: 100%;
        box-sizing: border-box;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }
}

/* ===== PAGE SPECIFIC STYLES ===== */

/* Production Page */
.production-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.production-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.production-hero-content {
    position: relative;
    z-index: 1;
}

.production-hero h1 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.production-hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.production-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

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

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 80px 0;
}

.production-item {
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.production-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.production-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--black);
}

.production-item:hover::before {
    opacity: 1;
}

.prod-cover {
    width: 100%;
    height: 250px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    filter: grayscale(100%);
    transition: all 0.5s ease;
    position: relative;
}

.prod-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.production-item:hover .prod-cover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.production-item:hover .prod-cover::after {
    opacity: 1;
}

.prod-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.prod-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.prod-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.prod-link {
    display: inline-block;
    color: var(--black);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease;
}

.production-item:hover .prod-link {
    transform: translateX(10px);
}

/* Production Detail Page */
.production-detail-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.production-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.production-detail-hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

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

.service-icon-large {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.service-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.service-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.service-overview {
    padding: 100px 0;
    background: var(--white);
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
}

.overview-text {
    margin-bottom: 4rem;
}

.overview-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

.overview-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--black);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
    color: var(--black);
    font-weight: 900;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.feature-item p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.service-gallery {
    padding: 100px 0;
    background: var(--gray-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Coming Soon Elegant */
.coming-soon-elegant {
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.coming-soon-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-icon {
    width: 64px;
    height: 64px;
    color: var(--black);
    animation: subtleRotate 3s ease-in-out infinite;
}

.coming-soon-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--black);
    opacity: 0.1;
    animation: pulseRing 2s ease-out infinite;
}

.coming-soon-elegant h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--black);
    letter-spacing: -0.02em;
}

.coming-soon-elegant p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--gray-dark);
    line-height: 1.8;
    font-weight: 300;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.05;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes subtleRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.service-process {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.process-timeline {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 3rem 0;
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item:hover {
    transform: translateY(-10px);
}

.timeline-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid var(--white);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.timeline-content {
    flex: 1;
    max-width: 280px;
}

.timeline-content h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    color: var(--black);
}

.timeline-item:hover .timeline-content h3 {
    color: rgba(0,0,0,0.8);
}

.timeline-content p {
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    font-weight: 300;
}

@media (max-width: 768px) {
    .production-detail-hero {
        padding-top: 110px;
        padding-bottom: 40px;
        min-height: auto;
        margin-top: 0;
        position: relative;
    }
    
    .production-detail-hero-content {
        padding: 0 1rem;
    }
    
    .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: 0.75rem;
    }
    
    .service-subtitle {
        font-size: clamp(0.85rem, 2vw, 1rem);
        margin-bottom: 0;
    }

    .service-icon-large {
        font-size: 4rem;
    }

    .service-overview {
        padding: 40px 0;
    }
    
    .service-gallery,
    .service-process {
        padding: 50px 0;
    }

    .process-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1rem 0.5rem;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        margin-right: 0;
        border: 3px solid var(--white);
    }

    .timeline-content {
        max-width: 100%;
    }

    .timeline-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

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

/* Digital Page */
.digital-hero {
    background: linear-gradient(135deg, #f8f8f8 0%, var(--white) 50%, #f8f8f8 100%);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.digital-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.digital-hero-content {
    position: relative;
    z-index: 1;
}

.digital-hero h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.digital-hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.digital-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.digital-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 80px 0;
}

.digital-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.digital-card {
    background: var(--white);
    border: 2px solid var(--black);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.digital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
    border-radius: 0;
}

.digital-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
    z-index: 2;
}

.digital-card:hover::before {
    transform: scale(1);
}

.digital-card:hover::after {
    left: 100%;
}

.digital-card > * {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.digital-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    filter: none;
}

.digital-card:hover .digital-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.digital-card:hover h3,
.digital-card:hover p,
.digital-card:hover .prod-link {
    color: var(--white) !important;
}

.digital-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.digital-card p {
    color: var(--gray-dark);
    transition: all 0.3s ease;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.digital-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}


/* Creative Page */
.creative-hero {
    background: var(--black);
    color: var(--white);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.creative-geometric {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.geometric-line {
    position: absolute;
    background: var(--white);
}

.geometric-line:nth-child(1) {
    width: 100%;
    height: 1px;
    top: 20%;
}

.geometric-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 20%;
}

.geometric-line:nth-child(3) {
    width: 100%;
    height: 1px;
    top: 60%;
}

.geometric-line:nth-child(4) {
    width: 1px;
    height: 100%;
    left: 60%;
}

.creative-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.creative-hero h1 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.creative-sections {
    padding: 100px 0;
    background: var(--white);
}

.creative-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--gray);
}

.creative-section:last-child {
    border-bottom: none;
}

.creative-section h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.creative-section p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.8;
}

/* Blog Page */
.blog-hero {
    background: var(--black);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.blog-hero h1 {
    color: var(--white);
}

.blog-section {
    padding: 120px 0;
    background: var(--gray-light);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
    opacity: 0.2;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--black), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    height: 280px;
    background: var(--gradient-1);
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    position: relative;
    object-fit: cover;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.blog-card:hover .blog-image {
    filter: grayscale(0%) saturate(120%) brightness(1);
    transform: scale(1.05);
}

.blog-card:hover .blog-image::after {
    opacity: 0;
}

.blog-content {
    padding: 2.5rem;
    position: relative;
}

.blog-content h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: rgba(0, 0, 0, 0.8);
}

.blog-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.blog-meta span {
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

/* About Page */
.about-hero {
    background: var(--black);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.about-hero h1 {
    color: var(--white);
}

/* Modern Story Section */
.about-story-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.about-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
}

.story-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 100px;
    position: relative;
}

.story-content:last-child {
    margin-bottom: 0;
}

.story-content.reverse {
    flex-direction: row-reverse;
}

.story-number {
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    letter-spacing: -0.05em;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.story-content:hover .story-number {
    color: rgba(0, 0, 0, 0.08);
    transform: scale(1.1);
}

.story-text {
    flex: 1;
    padding-top: 2rem;
}

.story-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.story-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--gray-dark);
    font-weight: 300;
}

.story-content::after {
    content: '';
    position: absolute;
    left: clamp(3rem, 6vw, 6rem);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--black), transparent);
    opacity: 0.2;
    transition: all 0.5s ease;
}

.story-content.reverse::after {
    left: auto;
    right: clamp(3rem, 6vw, 6rem);
}

.story-content:hover::after {
    opacity: 0.4;
}

/* Modern Timeline */
.modern-timeline {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0,0,0,0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0,0,0,0.02) 0%, transparent 50%),
        var(--gray-light);
    position: relative;
}

.modern-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
    opacity: 0.2;
}

.timeline-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.03em;
    color: var(--black);
}

.modern-timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.timeline-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--black);
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-card:hover::before {
    height: 100%;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.timeline-card-year {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.timeline-card-year::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--black);
    transition: width 0.5s ease;
}

.timeline-card:hover .timeline-card-year::after {
    width: 100%;
}

.timeline-card h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--black);
    transition: all 0.3s ease;
}

.timeline-card:hover h3 {
    color: rgba(0, 0, 0, 0.8);
}

.timeline-card p {
    color: var(--gray-dark);
    line-height: 1.8;
    font-weight: 300;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.timeline-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--black), transparent);
    transition: width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-card:hover .timeline-card-line {
    width: 100%;
}

.timeline {
    padding: 100px 0;
    background: var(--white);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    align-items: center;
}

.timeline-year {
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    min-width: 150px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-year::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: var(--black);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--gray-light), 0 0 0 6px var(--black);
}

.timeline-item:hover .timeline-year {
    transform: scale(1.1);
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.timeline-content {
    padding-left: 3rem;
    border-left: 2px solid var(--black);
    flex: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    padding-left: 4rem;
}

.timeline-content h3 {
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--gray-dark);
    line-height: 1.8;
}

.team-section {
    padding: 100px 0;
    background: var(--gray-light);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
    opacity: 0.2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--black);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 320px;
    background: var(--gradient-1);
    filter: grayscale(100%);
    transition: filter 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 1;
}

.team-member:hover .team-image {
    filter: grayscale(0%);
}

.team-overlay {
    padding: 2rem 1.5rem;
    background: var(--white);
    text-align: center;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-overlay h4 {
    color: var(--black);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.team-member:hover .team-overlay h4 {
    color: rgba(0, 0, 0, 0.8);
}

.team-overlay p {
    color: var(--gray-dark);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Contact Page */
.contact-hero {
    background: var(--black);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
}

/* Modern Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--gray-light);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
    opacity: 0.2;
}

.modern-contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.modern-contact-form {
    background: var(--white);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.modern-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--black), transparent);
}

.contact-form-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-form-header p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--gray-dark);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modern-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modern-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--black);
}

.modern-form-group input,
.modern-form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0,0,0,0.1);
    background: var(--gray-light);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 8px;
}

.modern-form-group input:focus,
.modern-form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.modern-form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Montserrat', sans-serif;
}

.modern-submit {
    margin-top: 1rem;
    width: 100%;
}

.modern-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--black);
    transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-info-card:hover::before {
    height: 100%;
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.2);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.contact-info-card a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--gray-dark);
    text-decoration: underline;
}

.contact-social {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-social h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.contact-social .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.contact-social .social-icon {
    width: 50px;
    height: 50px;
    background: var(--gray-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: var(--black) !important;
}

.contact-social .social-icon svg {
    stroke: var(--black) !important;
}

.contact-social .social-icon:hover {
    background: var(--black);
    transform: translateY(-5px) rotate(5deg);
}

.contact-social .social-icon:hover svg {
    stroke: var(--white) !important;
}

/* Old styles for backward compatibility */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 100px 0;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border: 2px solid var(--black);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--black);
    background: var(--white);
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.map-container {
    grid-column: 1 / -1;
    height: 400px;
    background: var(--gray-light);
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
}

@media (max-width: 768px) {
    .contact-wrapper,
    .modern-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .modern-contact-form {
        padding: 2.5rem;
    }

    .contact-info-card {
        padding: 2rem;
    }

    .contact-info-card:hover {
        transform: translateX(0);
    }

    .contact-social {
        padding: 2rem;
    }

    .production-grid,
    .digital-cards,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .team-image {
        height: 280px;
    }
    .team-overlay {
        padding: 1.5rem 1rem;
    }
    .team-overlay h4 {
        font-size: 1rem;
    }
    .team-overlay p {
        font-size: 0.85rem;
    }

    .services-list {
        gap: 0;
    }
    
    .service-item:hover {
        padding-left: 0.5rem;
    }

    .about-teaser,
    .about-story-section,
    .modern-timeline {
        padding: 80px 0;
    }

    .story-content {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 60px;
    }

    .story-content.reverse {
        flex-direction: column !important;
    }

    .story-number {
        font-size: 4rem;
    }

    .story-content::after,
    .story-content.reverse::after {
        display: none;
    }

    .story-text {
        padding-top: 0;
    }

    .timeline-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }

    .modern-timeline-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-card {
        padding: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: left;
    }

    .timeline-year {
        margin-bottom: 1rem;
    }

    .timeline-content {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid var(--black);
        padding-top: 1rem;
    }

    .creative-section h2 {
        font-size: 2.5rem;
    }

    .creative-section p {
        font-size: 1.1rem;
    }

    .contact-hero,
    .blog-hero,
    .creative-hero,
    .about-hero,
    .production-hero,
    .digital-hero {
        padding: 120px 0 60px;
    }

    .blog-section {
        padding: 80px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card:hover {
        transform: translateY(-5px);
    }

    .ref-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .ref-image-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 90vh;
    }

    .manifesto {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .production-grid,
    .digital-cards,
    .blog-grid {
        gap: 2rem;
    }

    .production-item,
    .digital-card,
    .blog-card {
        border-width: 1px;
    }

    .ref-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .ref-image-wrapper {
        padding: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .team-image {
        height: 300px;
    }
}

/* Smooth animations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch device optimizations */
@media (hover: none) {
    .service-item:hover {
        padding-left: 0.5rem;
    }
    
    .production-item:hover,
    .blog-card:hover {
        transform: none;
    }
    .team-member:hover {
        transform: none;
    }
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.floating-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-button:hover::before {
    width: 300px;
    height: 300px;
}

.floating-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.floating-button:active {
    transform: translateY(-2px) scale(1.05);
}

.floating-button.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-button.phone {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.floating-button svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.floating-button:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.floating-button .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-button .tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--black);
}

.floating-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@media (max-width: 768px) {
    .floating-contact-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-button {
        width: 56px;
        height: 56px;
    }
    
    .floating-button svg {
        width: 24px;
        height: 24px;
    }
    
    .floating-button .tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-contact-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-button {
        width: 52px;
        height: 52px;
    }
    
    .floating-button svg {
        width: 22px;
        height: 22px;
    }
}

