/* ============================================
   ZBT MEDIA - Sosyal Medya Ajansı
   Modern Dark Theme with Instagram Gradients
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS Variables - Color Palette
   ============================================ */
:root {
    /* Background Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1a1a1a;

    /* Instagram Gradient Colors */
    --gradient-orange: #F58529;
    --gradient-pink: #DD2A7B;
    --gradient-purple: #8134AF;
    --gradient-magenta: #C13584;
    --gradient-yellow: #FEDA77;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    /* Gradients */
    --instagram-gradient: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
    --instagram-gradient-reverse: linear-gradient(45deg, #8134AF, #DD2A7B, #F58529);
    --glow-gradient: linear-gradient(135deg, rgba(245, 133, 41, 0.3), rgba(221, 42, 123, 0.3), rgba(129, 52, 175, 0.3));

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(221, 42, 123, 0.3);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);

    /* Border */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-gradient: linear-gradient(135deg, rgba(245, 133, 41, 0.5), rgba(221, 42, 123, 0.5), rgba(129, 52, 175, 0.5));

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animated {
    background: linear-gradient(90deg, #F58529, #DD2A7B, #8134AF, #DD2A7B, #F58529);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s linear infinite;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(221, 42, 123, 0.15);
    border: 1px solid rgba(221, 42, 123, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--gradient-pink);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* ============================================
   Animations Keyframes
   ============================================ */
@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(221, 42, 123, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(221, 42, 123, 0.5);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(245, 133, 41, 0.5);
    }

    33% {
        border-color: rgba(221, 42, 123, 0.5);
    }

    66% {
        border-color: rgba(129, 52, 175, 0.5);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Header / Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--instagram-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.logo span {
    color: var(--gradient-pink);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
    position: relative;
}

.nav-links a:hover {
    color: var(--gradient-pink);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--instagram-gradient);
    transition: var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px;
    background: var(--instagram-gradient);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-normal);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

/* Hero Background Video */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.7) 0%,
            rgba(10, 10, 10, 0.5) 30%,
            rgba(10, 10, 10, 0.6) 70%,
            rgba(10, 10, 10, 0.9) 100%);
    /* Add Instagram gradient tint */
    background-blend-mode: overlay;
}

.hero-video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(221, 42, 123, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(245, 133, 41, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(129, 52, 175, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(245, 133, 41, 0.1);
    border: 1px solid rgba(245, 133, 41, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--gradient-orange);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge::before {
    content: '●';
    font-size: 8px;
    animation: pulse 2s ease infinite;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    display: block;
}

/* Remove shadow from gradient text to preserve gradient effect */
.hero-title .gradient-text-animated {
    text-shadow: none;
}

.hero-description {
    font-size: 18px;
    color: #ffffff;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--instagram-gradient);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(221, 42, 123, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-normal);
    cursor: pointer;
    color: white;
}

.btn-secondary:hover {
    border-color: var(--gradient-pink);
    background: rgba(221, 42, 123, 0.1);
}

.btn-secondary .play-icon {
    width: 20px;
    height: 20px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #ffffff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    animation: float 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-indicator .wheel {
    width: 3px;
    height: 8px;
    background: var(--gradient-pink);
    border-radius: 3px;
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gradient-pink), transparent);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--instagram-gradient);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(221, 42, 123, 0.3);
    background: var(--bg-card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
}

.service-icon.orange {
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.2), rgba(245, 133, 41, 0.1));
    color: var(--gradient-orange);
}

.service-icon.pink {
    background: linear-gradient(135deg, rgba(221, 42, 123, 0.2), rgba(221, 42, 123, 0.1));
    color: var(--gradient-pink);
}

.service-icon.purple {
    background: linear-gradient(135deg, rgba(129, 52, 175, 0.2), rgba(129, 52, 175, 0.1));
    color: var(--gradient-purple);
}

.service-icon.yellow {
    background: linear-gradient(135deg, rgba(254, 218, 119, 0.2), rgba(254, 218, 119, 0.1));
    color: var(--gradient-yellow);
}

.service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gradient-orange);
    font-weight: 500;
    transition: var(--transition-normal);
}

.service-link:hover {
    gap: 12px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: var(--section-padding);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 40%;
    height: 60%;
    transform: translateY(-50%);
    background: radial-gradient(ellipse at right, rgba(221, 42, 123, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content>p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.about-feature::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--instagram-gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: var(--transition-normal);
}

.about-card:hover {
    border-color: rgba(221, 42, 123, 0.3);
    transform: translateX(10px);
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: var(--instagram-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Satisfaction Meter */
.satisfaction-meter {
    background: linear-gradient(135deg, rgba(245, 133, 41, 0.1), rgba(221, 42, 123, 0.1));
    border: 1px solid rgba(221, 42, 123, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

.satisfaction-number {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 700;
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.satisfaction-label {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-card);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0a0a0a;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-overlay p {
    font-size: 14px;
    color: var(--text-secondary);
}

.portfolio-overlay .tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--instagram-gradient);
    border-radius: 20px;
    font-size: 12px;
    margin-top: 12px;
}

.portfolio-item .portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0a0a0a;
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-video {
    transform: scale(1.05);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0a0a0a;
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--section-padding);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(245, 133, 41, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-normal);
}

.contact-item:hover {
    border-color: rgba(221, 42, 123, 0.3);
    transform: translateX(10px);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--instagram-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 16px;
    font-weight: 500;
}

.social-links {
    margin-top: 20px;
}

.social-links h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--instagram-gradient);
    border-color: transparent;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-primary);
    transition: var(--transition-normal);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gradient-pink);
    box-shadow: 0 0 20px rgba(221, 42, 123, 0.2);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, var(--gradient-orange), var(--gradient-pink));
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(221, 42, 123, 0.4);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(221, 42, 123, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gradient-pink);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.faq-answer p strong {
    color: var(--text-primary);
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--instagram-gradient);
    border-color: transparent;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-column ul a:hover {
    color: var(--gradient-pink);
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--gradient-pink);
}

.newsletter-form button {
    padding: 14px 20px;
    background: var(--instagram-gradient);
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(221, 42, 123, 0.4);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--gradient-pink);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 50px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
        padding-top: 60px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 24px;
        opacity: 0;
        animation: fadeInUp 0.5s ease forwards;
    }

    .nav-links a:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links a:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links a:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links a:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-links a:nth-child(5) {
        animation-delay: 0.5s;
    }

    .nav-links a:nth-child(6) {
        animation-delay: 0.6s;
    }

    .nav-links a:nth-child(7) {
        animation-delay: 0.7s;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 28px;
    }

    .service-card {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }
}

/* ============================================
   Page Header (Blog & Portfolio)
   ============================================ */
.page-header {
    padding: 160px 20px 80px;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(221, 42, 123, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Post Hero Image */
.blog-hero-figure {
    margin: 30px 0;
    position: relative;
}

.blog-hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    aspect-ratio: 1200 / 630;
    object-fit: cover;
    transition: box-shadow 0.3s ease;
}

.blog-hero-image:hover {
    box-shadow: 0 8px 32px rgba(221, 42, 123, 0.2);
}

.blog-hero-figure figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

/* ============================================
   Blog Page Styles
   ============================================ */
.blog-section {
    padding: var(--section-padding);
}

.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    position: relative;
    cursor: pointer;
}

.blog-featured:hover {
    border-color: rgba(221, 42, 123, 0.3);
}

.blog-featured-image {
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.blog-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.blog-category {
    padding: 6px 14px;
    background: rgba(221, 42, 123, 0.15);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gradient-pink);
    font-weight: 500;
}

.blog-date {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    align-items: center;
}

.blog-featured-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-featured-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gradient-orange);
    font-weight: 500;
    transition: var(--transition-normal);
}

.blog-read-more::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.blog-read-more:hover {
    gap: 15px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(221, 42, 123, 0.3);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-content {
    padding: 25px;
}

.blog-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-load-more {
    text-align: center;
}

.blog-cta {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

.blog-cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.blog-cta-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 15px;
}

.blog-cta-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.blog-cta-form {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.blog-cta-form input {
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 15px;
    width: 300px;
}

.blog-cta-form input:focus {
    outline: none;
    border-color: var(--gradient-pink);
}

/* ============================================
   Portfolio Page Styles
   ============================================ */
.portfolio-page {
    padding: var(--section-padding);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover {
    border-color: var(--gradient-pink);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--instagram-gradient);
    border-color: transparent;
    color: white;
}

.portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-page-item {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.portfolio-page-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.portfolio-placeholder-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
}

.portfolio-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0a0a0a;
    transition: var(--transition-slow);
    cursor: pointer;
}

.portfolio-page-item:hover .portfolio-video {
    transform: scale(1.02);
}

.portfolio-page-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0a0a0a;
    transition: var(--transition-slow);
    cursor: pointer;
}

.portfolio-page-item:hover .portfolio-page-image img {
    transform: scale(1.02);
}

.portfolio-page-item:hover .portfolio-placeholder-large {
    transform: scale(1.05);
}

.portfolio-page-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, transparent 100%);
    transform: translateY(60%);
    transition: var(--transition-normal);
}

.portfolio-page-item:hover .portfolio-page-overlay {
    transform: translateY(0);
}

.portfolio-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(221, 42, 123, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: var(--gradient-pink);
    margin-bottom: 12px;
}

.portfolio-page-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-page-overlay p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.portfolio-stats {
    display: flex;
    gap: 25px;
}

.portfolio-stat {
    text-align: left;
}

.portfolio-stat .stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.portfolio-stat .stat-name {
    font-size: 12px;
    color: var(--text-muted);
}

.portfolio-cta {
    padding: 100px 20px;
    text-align: center;
    background: var(--bg-secondary);
}

.portfolio-cta-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 15px;
}

.portfolio-cta-content p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Nav Active State */
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* ============================================
   Blog & Portfolio Responsive
   ============================================ */
@media (max-width: 992px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-page-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    .blog-cta-form {
        flex-direction: column;
        align-items: center;
    }

    .blog-cta-form input {
        width: 100%;
        max-width: 350px;
    }

    .portfolio-page-image {
        height: 280px;
    }
}

/* ============================================
   Form Notification Styles
   ============================================ */
.form-notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    animation: fadeInUp 0.3s ease;
}

.form-notification.success {
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.form-notification.error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

.form-notification span {
    flex: 1;
}

.form-notification button {
    background: none;
    border: none;
    color: inherit;
    font-size: 24px;
    cursor: pointer;
    padding: 0 0 0 15px;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.form-notification button:hover {
    opacity: 1;
}

/* ============================================
   Legal Content Styles (Privacy Policy, Terms)
   ============================================ */
.legal-content {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-secondary);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.legal-document h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-align: center;
}

.legal-date {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.legal-document h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.legal-document p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-document ul {
    margin: 15px 0 25px 25px;
}

.legal-document ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.legal-document ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--gradient-pink);
    border-radius: 50%;
}

.legal-document ul li strong {
    color: var(--text-primary);
}

.legal-contact {
    margin-top: 40px;
    padding: 30px;
    background: rgba(221, 42, 123, 0.05);
    border: 1px solid rgba(221, 42, 123, 0.2);
    border-radius: 15px;
    text-align: center;
}

.legal-contact p {
    margin-bottom: 20px;
}

.legal-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.legal-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(221, 42, 123, 0.3);
}

@media (max-width: 768px) {
    .legal-document {
        padding: 30px 20px;
    }

    .legal-document h2 {
        font-size: 22px;
    }

    .legal-document h3 {
        font-size: 18px;
    }
}

/* ============================================
   Blog Post Styles (Individual Articles)
   ============================================ */
.blog-post {
    padding: 160px 20px 80px;
    background: var(--bg-primary);
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.back-to-blog {
    display: inline-block;
    color: var(--text-secondary);
    margin-bottom: 30px;
    transition: var(--transition-normal);
}

.back-to-blog:hover {
    color: var(--gradient-pink);
}

.blog-post-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-top: 20px;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content .lead {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.blog-post-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 40px 0 20px;
}

.blog-post-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.blog-post-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.blog-post-content ul {
    margin: 20px 0 30px 25px;
}

.blog-post-content ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.blog-post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--gradient-pink);
    border-radius: 50%;
}

.blog-post-content ul li strong {
    color: var(--text-primary);
}

.blog-cta-box {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.blog-cta-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.blog-cta-box p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .blog-post {
        padding: 120px 20px 60px;
    }

    .blog-post-content .lead {
        font-size: 18px;
    }

    .blog-post-content h2 {
        font-size: 22px;
    }

    .blog-cta-box {
        padding: 30px 20px;
    }
}

/* ============================================
   WhatsApp Popup Button
   ============================================ */
.whatsapp-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-popup:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-popup svg {
    transition: transform 0.3s ease;
}

.whatsapp-popup:hover svg {
    transform: rotate(15deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #1a1a1a;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: #1a1a1a;
}

.whatsapp-popup:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-popup {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   Lightbox Gallery Styles
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content video,
.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(221, 42, 123, 0.8);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(221, 42, 123, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    z-index: 10001;
}

.lightbox-caption h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.lightbox-caption p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.lightbox-counter {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    z-index: 10001;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lightbox-caption {
        bottom: 10px;
        padding: 10px 20px;
    }

    .lightbox-caption h4 {
        font-size: 16px;
    }
}

/* ============================================
   Brand Ticker / Logo Slider
   ============================================ */
.brand-ticker {
    padding: 50px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.brand-ticker::before,
.brand-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brand-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.brand-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 60s linear infinite;
}

.ticker-item {
    flex-shrink: 0;
    margin: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-item img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: var(--transition-normal);
}

.ticker-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
    cursor: pointer;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .ticker-item {
        margin: 0 30px;
    }

    .ticker-item img {
        height: 70px;
    }
}

/* ============================================
   FAQ Section Styles
   ============================================ */
.faq-section {
    padding: 100px 20px;
    background: var(--bg-secondary);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(221, 42, 123, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--gradient-pink);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gradient-pink);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

/* ============================================
   Service Page Styles (Landing Pages)
   ============================================ */
.page-header {
    padding: 160px 20px 80px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.page-header .breadcrumb a {
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.page-header .breadcrumb a:hover {
    color: var(--gradient-pink);
}

.page-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-page {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-intro {
    margin-bottom: 60px;
}

.service-intro h2,
.service-features h2,
.service-why h2,
.service-process h2,
.service-industries h2,
.service-results h2,
.service-equipment h2,
.service-testimonial h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.service-intro p,
.service-why p,
.service-industries p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: rgba(221, 42, 123, 0.3);
    transform: translateY(-5px);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.service-why,
.service-process,
.service-industries,
.service-equipment {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.service-why ul,
.service-process ol,
.service-industries ul,
.service-equipment ul {
    list-style: none;
    padding: 0;
}

.service-why li,
.service-industries li,
.service-equipment li {
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 8px;
}

.service-why li strong,
.service-industries li strong,
.service-equipment li strong {
    color: var(--text-primary);
}

.service-process ol {
    counter-reset: steps;
}

.service-process li {
    counter-increment: steps;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 45px;
    position: relative;
}

.service-process li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--instagram-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.industry-item {
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.industry-item:hover {
    border-color: rgba(221, 42, 123, 0.3);
}

.industry-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.industry-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.result-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.result-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.result-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.service-testimonial {
    margin: 60px 0;
}

.service-testimonial blockquote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--gradient-pink);
    padding: 30px 40px;
    border-radius: 0 16px 16px 0;
    margin: 0;
}

.service-testimonial blockquote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-testimonial cite {
    color: var(--text-primary);
    font-weight: 600;
    font-style: normal;
}

.service-cta {
    margin-top: 60px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(221, 42, 123, 0.1) 0%, rgba(245, 133, 41, 0.1) 100%);
    border: 1px solid rgba(221, 42, 123, 0.3);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
}

.cta-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-phone {
    margin-top: 20px;
    color: var(--text-muted);
}

.cta-phone a {
    color: var(--gradient-pink);
    transition: var(--transition-normal);
}

.cta-phone a:hover {
    color: var(--gradient-orange);
}

@media (max-width: 992px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 20px 60px;
    }

    .service-page {
        padding: 60px 20px;
    }

    .service-why,
    .service-process,
    .service-industries,
    .service-equipment {
        padding: 30px 20px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .results-grid {
        grid-template-columns: 1fr 1fr;
    }

    .result-number {
        font-size: 28px;
    }

    .service-testimonial blockquote {
        padding: 25px;
    }
}

/* ============================================
   Blog Article Styles
   ============================================ */
.blog-article {
    padding: 80px 0;
    background: var(--bg-primary);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Table of Contents */
.table-of-contents {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 50px;
}

.table-of-contents h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.table-of-contents ul {
    list-style: none;
}

.table-of-contents li {
    margin-bottom: 12px;
}

.table-of-contents a {
    color: var(--text-secondary);
    transition: var(--transition-normal);
    font-size: 15px;
}

.table-of-contents a:hover {
    color: var(--gradient-pink);
}

/* Article Sections */
.article-section {
    margin-bottom: 50px;
}

.article-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-top: 20px;
}

.article-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.article-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.article-section ul,
.article-section ol {
    margin: 15px 0 25px 20px;
}

.article-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.article-section li strong {
    color: var(--text-primary);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    background: var(--instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

/* Article CTA */
.article-cta {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .blog-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 24px;
    }

    .article-section h2 {
        font-size: 24px;
    }

    .article-section h3 {
        font-size: 18px;
    }

    .table-of-contents {
        padding: 20px;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(221, 42, 123, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-wrapper {
    position: relative;
    padding: 0 50px;
    /* Space for buttons */
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 5px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scroll-behavior: smooth;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-normal);
}

.slider-btn:hover {
    background: var(--instagram-gradient);
    border-color: transparent;
    color: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px;
    border-radius: 20px;
    transition: var(--transition-normal);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 340px;
    /* Adjusted to fit 3 items perfectly */
    max-width: 340px;
    scroll-snap-align: center;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 133, 41, 0.3);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    color: var(--gradient-yellow);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--text-muted);
    font-size: 13px;
    display: block;
}

/* Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials-slider {
        gap: 20px;
        padding-left: calc(50% - 150px);
        padding-right: calc(50% - 150px);
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px;
    }

    .testimonials::before {
        display: none;
    }
}