/* --- RESET & VARIABLES --- */
:root {
    --primary-color: #E71C18;
    --primary-hover: #c41613;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --max-width: 1200px;
    --spacing-section: 80px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    animation: pageFade 0.8s ease-out;
}

@keyframes pageFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- UTILITIES --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.placeholder-box {
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: bold;
    border-radius: 8px;
    transition: var(--transition);
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231,28,24,0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* --- SECTION 1: HERO --- */
.hero {
    padding: 160px 0 100px;
    background-color: var(--bg-light);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-label{
    display:inline-flex;
    align-items:center;
    font-size:0.85rem;
    font-weight:600;
    color:var(--primary-color);
    background:rgba(231,28,24,0.08);
    padding:8px 16px;
    border-radius:20px;
    margin-bottom:14px;
    letter-spacing:0.02em;
    white-space:nowrap;
    overflow:hidden;
}

.hero-rotating-text{
    position:relative;
    display:inline-block;
    height:1.2em;
    line-height:1.2em;
}

.hero-rotating-text::after{
    content:"Instagram & Facebook Content";
    visibility:hidden;
    white-space:nowrap;
    display:block;
    height:0;
}

.hero-rotating-text span{
    position:absolute;
    left:0;
    top:0;
    white-space:nowrap;
    opacity:0;
    animation: heroWordFade 15s infinite;
}

.hero-rotating-text span:nth-child(1){ animation-delay:0s; }
.hero-rotating-text span:nth-child(2){ animation-delay:3s; }
.hero-rotating-text span:nth-child(3){ animation-delay:6s; }
.hero-rotating-text span:nth-child(4){ animation-delay:9s; }
.hero-rotating-text span:nth-child(5){ animation-delay:12s; }

@keyframes heroWordFade{
    0% { opacity:0; transform:translateY(6px); }
    5% { opacity:1; transform:translateY(0); }
    20% { opacity:1; transform:translateY(0); }
    25% { opacity:0; transform:translateY(-6px); }
    100% { opacity:0; }
}

.hero-content h1 {
    font-size: 3.75rem;
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 34px;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-visual-wrapper {
    position: relative;
    display: inline-block;
}

.hero-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(231,28,24,0.15), transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 0;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: floatHero 6s ease-in-out infinite;
    max-width: 520px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover{
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 60px 120px rgba(0,0,0,0.22);
}

@keyframes floatHero {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* --- SECTION 2: LOGOS --- */
.logos {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logos .section-header h3{
    font-size:1rem;
    font-weight:600;
    color:var(--text-light);
    letter-spacing:0.08em;
    text-transform:uppercase;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-box {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.client-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo:hover{
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* --- SECTION 3: PROCESS --- */
.process {
    padding: var(--spacing-section) 0;
}

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

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    transition: var(--transition);
    transform: translateZ(0);
}

.process-icon:hover {
    transform: scale(1.08) rotate(-2deg);
}

.process-icon-inner {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}
/* --- SECTION 5: SERVICES --- */
.services{
    padding: var(--spacing-section) 0;
    background: var(--bg-light);
}

.services-grid{
    display:grid;
    grid-template-columns: repeat(4,1fr);
    gap:32px;
    margin-top:20px;
}

.service-card{
    background:var(--white);
    border-radius:14px;
    padding:24px;
    border:1px solid var(--border-color);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}

.service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.service-image{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:18px;
    display:block;
}

.service-card h3{
    font-size:1.15rem;
    margin-bottom:8px;
}

.service-card p{
    font-size:0.95rem;
    color:var(--text-light);
    margin-top:6px;
}


/* --- SECTION 6: PROJECTS --- */
.projects{
    padding: var(--spacing-section) 0;
}

.project-row{
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:40px;
}

.project-card{
    background:var(--white);
    border-radius:16px;
    overflow:hidden;
    border:1px solid var(--border-color);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

.project-image{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.project-info{
    padding:24px;
}

.project-info h3{
    font-size:1.25rem;
    margin-bottom:8px;
}

.project-info p{
    color:var(--text-light);
    margin-bottom:16px;
}

.project-btn{
    display:inline-block;
}

/* --- SECTION 8: CONTACT / CTA --- */
.contact{
    padding: var(--spacing-section) 0;
    background: var(--bg-light);
    text-align:center;
}

.contact p{
    max-width:640px;
    margin:0 auto 28px auto;
    color:var(--text-light);
    font-size:1.1rem;
}

.contact .hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.contact .btn-primary{
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border:1px solid var(--primary-color);
    padding:12px 24px;
    border-radius:6px;
    font-weight:600;
    display:inline-block;
}

.contact .btn-secondary{
    background: transparent;
    border:1px solid var(--border-color);
}

.contact-note{
    font-size:0.9rem;
    color:var(--text-light);
}

/* --- FOOTER --- */
footer{
    background:#242424;
    color:#9ca3af;
    padding:80px 0 40px;
    border-top:3px solid var(--primary-color);
}

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    align-items:flex-start;
}

.footer-brand h3{
    color:var(--primary-color);
    font-size:1.6rem;
    margin-bottom:14px;
    letter-spacing:-0.02em;
}
.footer-brand p{
    color:#9ca3af;
    max-width:320px;
    line-height:1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4{
    color:#ffffff;
    font-size:0.9rem;
    text-transform:uppercase;
    letter-spacing:0.08em;
    margin-bottom:16px;
}

.footer-links a,
.footer-contact a,
.footer-social a{
    display:block;
    color:#9ca3af;
    text-decoration:none;
    margin-bottom:10px;
    font-size:0.95rem;
    transition:var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover{
    color:var(--primary-color);
    transform:translateX(4px);
}

.footer-copy{
    grid-column:1/-1;
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:50px;
    padding-top:24px;
    text-align:center;
    font-size:0.85rem;
    color:#6b7280;
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1024px){

    .hero-container{
        flex-direction: column;
        text-align:center;
        gap:50px;
    }

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

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

    .process-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .services-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .project-row{
        grid-template-columns:1fr;
    }
}

@media (max-width: 640px){

    .hero{
        padding:140px 0 80px;
    }

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

    .hero-content p{
        font-size:1.05rem;
    }

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

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

    .nav-links{
        display:none;
    }

}