@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800;900&display=swap');

:root {
    --primary-yellow: #FFD400; /* Exact SocialPanga Yellow */
    --bg-white: #FFFFFF;
    --text-black: #000000;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.bg-yellow { background-color: var(--primary-yellow); }
.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: #f9f9f9; }

.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.mt-5 { margin-top: 3rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text-black);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 3px solid #000;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--text-black);
    color: #fff;
    border-color: var(--text-black);
}

.btn-primary:hover {
    background-color: var(--primary-yellow);
    color: #000;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-black);
}

.btn-outline:hover {
    background-color: var(--text-black);
    color: #fff;
}

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

/* Header */
.site-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 2px solid rgba(0,0,0,0.05);
    transition: padding 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 80px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-img-footer {
    max-height: 100px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-yellow);
    transition: width 0.3s;
}

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

.nav-item {
    position: relative;
    text-align: center;
}

.nav-item .hover-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.nav-item .hover-icon.trophy {
    top: -25px;
    font-size: 32px;
    transform: translateX(-50%) rotate(15deg);
}

.nav-item:hover .hover-icon {
    opacity: 1;
    top: -30px;
}

.nav-item:hover .hover-icon.trophy {
    top: -35px;
}

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

.mobile-toggle span {
    width: 35px;
    height: 4px;
    background-color: var(--text-black);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--primary-yellow);
    display: flex;
    align-items: center;
    padding-top: 160px;
    position: relative;
    padding-bottom: 50px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.text-right { text-align: right; }
.justify-end { justify-content: flex-end; }

.hero-content {
    max-width: 800px;
}

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

.hero-illustration {
    width: 100%;
    max-width: 500px;
    border: 5px solid #000;
    box-shadow: 15px 15px 0px rgba(0,0,0,1);
    border-radius: 20px;
    background-color: var(--bg-white);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-illustration:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-title span.underline {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Marketing Mafias Section */
.marketing-mafias {
    background-color: var(--primary-yellow);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 4px solid #000;
    border-top: 4px solid #000;
}
.mafia-text {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
    position: relative;
    z-index: 2;
    font-family: var(--font-main);
}
.mafia-text strong {
    font-weight: 900;
}
.floating-icon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(5px 5px 0px #e65100);
}
.icon-gun {
    top: 20%;
    left: 10%;
    width: 200px;
    transform: rotate(-15deg);
}
.icon-tea {
    bottom: 10%;
    right: 15%;
    width: 120px;
    filter: drop-shadow(5px 5px 0px #fff);
}
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Marquee */
.marquee-container {
    background-color: var(--text-black);
    color: var(--primary-yellow);
    padding: 25px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 15s linear infinite;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
}

.marquee-content span { margin: 0 30px; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 30px;
    border: 4px solid var(--text-black);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 10px 10px 0px rgba(0,0,0,1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px rgba(0,0,0,1);
    background-color: var(--primary-yellow);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 3px solid #000;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card p {
    font-size: 1.1rem;
    font-weight: 500;
}

.team-avatar {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #000;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 10px 10px 0px rgba(0,0,0,1);
    background-color: #f9f9f9;
}

/* Our Work Section (SocialPanga Style - For Work Page) */
.work-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Neo Brutalism Restored */
.neo-card {
    background: #fff;
    border: 4px solid #000;
    box-shadow: 10px 10px 0px #000;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 10px;
}
.neo-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px 0px #000;
}
.card-image-wrapper {
    border: 3px solid #000;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.card-image-wrapper img {
    width: 100%;
    display: block;
}

.btn-black {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition);
}
.btn-black:hover {
    background: #fff;
    color: #000;
}

.neo-badge {
    background: #fff;
    border: 3px solid #000;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 5px 5px 0px #000;
    font-weight: 900;
    font-size: 1.5rem;
    margin: 10px;
    display: inline-block;
}

.text-yellow { color: var(--primary-yellow); }
.bg-black { background-color: #000; }
.bg-yellow { background-color: var(--primary-yellow); }

/* Interactive Split-Screen Work Section */
.split-work-section {
    display: flex;
    min-height: 100vh;
}

.work-menu-container {
    width: 35%;
    background-color: #1a1a1a;
    padding: 100px 50px;
    display: flex;
    align-items: center;
}

.work-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.work-item {
    color: #666;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.1;
}

.work-item:hover {
    color: #fff;
    transform: translateX(10px);
}

.work-item.active {
    color: #fff;
}

.work-showcase-container {
    width: 65%;
    background-color: #fff;
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.showcase-content {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

#showcase-img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    margin-bottom: 2rem;
    transition: opacity 0.3s;
}

#showcase-title {
    font-size: 3rem;
    text-transform: uppercase;
}

.work-categories li {
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    color: var(--text-black);
    padding-bottom: 5px;
}

.work-categories li.active {
    color: red;
    border-bottom: 3px solid red;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.work-card {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
}

.work-card img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s;
}

.work-card:hover img {
    transform: scale(1.1);
}

/* Our Clients Section (SocialPanga Style) */
.client-title {
    font-size: 4rem;
    margin-bottom: 4rem;
    text-transform: none; /* Keep it sentence case */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-title span {
    font-size: 3.5rem;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 1rem;
    align-items: center;
}

.client-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo.text-gray { color: #555; }
.client-logo.bg-navy-yellow { background-color: #2a3a6b; color: #ffd400; padding: 10px 20px; font-size: 1.2rem; border-radius: 5px; }
.client-logo.text-yellow-icon { color: #d32f2f; }
.client-logo.text-blue-small { color: #0277bd; font-size: 1.5rem; font-weight: 700; }
.client-logo.text-blue { color: #0288d1; font-size: 2rem;}
.client-logo.text-pink { color: #e91e63; font-size: 2.8rem; letter-spacing: -2px; }
.client-logo.bg-yellow-red { background-color: #ffd400; color: #d32f2f; padding: 10px 20px; border-radius: 10px; border: 1px solid #ccc; }
.client-logo.text-orange { color: #e65100; font-family: Impact, sans-serif; font-size: 2.2rem; }

@media (max-width: 992px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid { grid-template-columns: 1fr; }
    .text-right { text-align: left; }
    .justify-end { justify-content: flex-start; }
}

/* Page Header */
.page-header {
    padding-top: 150px;
    padding-bottom: 100px;
    background-color: var(--primary-yellow);
    border-bottom: 4px solid #000;
}

.page-title {
    font-size: 5rem;
}

/* Detailed Services */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-row.reverse .service-content { order: 2; }
.service-row.reverse .service-image-box { order: 1; }

.service-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-image-box {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    border: 4px solid #000;
    box-shadow: 15px 15px 0px rgba(0,0,0,1);
    border-radius: 15px;
    background-size: cover;
    background-position: center;
}

.custom-list li {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.custom-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    -webkit-text-stroke: 1px #000;
}

/* Contact Form */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border: 4px solid #000;
    box-shadow: 15px 15px 0px #FFD400;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 18px;
    border: 3px solid #000;
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    background-color: #f9f9f9;
}

/* Footer */
.site-footer {
    background-color: var(--primary-yellow);
    border-top: 4px solid #000;
    padding: 100px 0 30px;
}

.footer-top {
    text-align: center;
    margin-bottom: 5rem;
}

.footer-big-text {
    font-size: 6vw;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    color: #000;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-col ul li { margin-bottom: 1rem; }

.footer-col ul li a {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 2px solid #000;
    padding-top: 30px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 4rem; }
    .service-row { grid-template-columns: 1fr; gap: 3rem; }
    .service-row.reverse .service-content { order: unset; }
    .service-row.reverse .service-image-box { order: unset; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-big-text { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .mobile-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        border-bottom: 2px solid #000;
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    .main-nav.active { display: flex; }
    .nav-links { flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
    .section-title { font-size: 2.5rem; }
    .service-card { padding: 30px 20px; }
}
