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

/* --- DESIGN TOKENS --- */
:root {
    --bg-primary: #08090c;
    --bg-secondary: #0f111a;
    --bg-tertiary: #171b26;
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --neon-cyan: #00f2fe;
    --neon-cyan-glow: rgba(0, 242, 254, 0.5);
    
    --neon-pink: #fe0979;
    --neon-pink-glow: rgba(254, 9, 121, 0.5);
    
    --neon-orange: #ff5e00;
    --neon-orange-glow: rgba(255, 94, 0, 0.5);
    
    --neon-green: #39ff14;
    --neon-green-glow: rgba(57, 255, 20, 0.5);
    
    --whatsapp-green: #25d366;
    --whatsapp-glow: rgba(37, 211, 102, 0.5);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* --- UTILITIES & GLOWS --- */
.neon-glow-cyan {
    text-shadow: 0 0 10px var(--neon-cyan-glow), 0 0 20px var(--neon-cyan-glow);
}
.neon-glow-pink {
    text-shadow: 0 0 10px var(--neon-pink-glow), 0 0 20px var(--neon-pink-glow);
}
.neon-border-cyan {
    box-shadow: 0 0 15px var(--neon-cyan-glow);
    border: 1px solid var(--neon-cyan);
}
.neon-border-pink {
    box-shadow: 0 0 15px var(--neon-pink-glow);
    border: 1px solid var(--neon-pink);
}

.text-gradient-cyan-pink {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- LAYOUT CONTAINER --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 9, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(8, 9, 12, 0.95);
    border-bottom: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan-glow);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    transition: var(--transition-normal);
    box-shadow: 0 0 8px var(--neon-cyan-glow);
}

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

.btn-header {
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.btn-header:hover {
    background: var(--neon-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--neon-cyan);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-normal);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(0, 242, 254, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(254, 9, 121, 0.12) 0%, rgba(254, 9, 121, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    z-index: 1;
    position: relative;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content h1 span {
    display: block;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), #00b8ff);
    color: var(--bg-primary);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.6);
}

.btn-secondary {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary:hover {
    border-color: var(--neon-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 9, 121, 0.3);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(8, 9, 12, 0.8));
    z-index: 1;
}

.hero-image-glow {
    position: absolute;
    top: -5%;
    left: -5%;
    right: -5%;
    bottom: -5%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, rgba(254, 9, 121, 0.1) 50%, transparent 80%);
    filter: blur(20px);
    z-index: -1;
    border-radius: var(--border-radius-lg);
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- STATS BAR --- */
.stats {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- SECTION GENERAL --- */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--neon-cyan);
    margin-bottom: 12px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 242, 254, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(0, 242, 254, 0.15);
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* --- WORKS / CATEGORIES SECTION --- */
.works-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
    background: var(--text-gradient-cyan-pink);
    border-color: var(--neon-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--neon-cyan-glow);
    background: var(--neon-cyan);
}

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

.work-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-normal);
    position: relative;
    cursor: pointer;
}

.work-img-container {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.work-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 9, 12, 0.9) 0%, rgba(8, 9, 12, 0.2) 60%);
    opacity: 0;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    z-index: 2;
}

.work-card:hover .work-overlay {
    opacity: 1;
}

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

.work-category-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.badge-vinil {
    background: rgba(0, 242, 254, 0.2);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.badge-kutu {
    background: rgba(255, 94, 0, 0.2);
    border: 1px solid var(--neon-orange);
    color: var(--neon-orange);
}

.badge-folyo {
    background: rgba(57, 255, 20, 0.2);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.badge-neon {
    background: rgba(254, 9, 121, 0.2);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
}

.work-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.work-details {
    padding: 20px;
}

.work-details p {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.work-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
}

.work-card:hover.card-vinil {
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.2);
    border-color: var(--neon-cyan);
}
.work-card:hover.card-kutu {
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
    border-color: var(--neon-orange);
}
.work-card:hover.card-folyo {
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.2);
    border-color: var(--neon-green);
}
.work-card:hover.card-neon {
    box-shadow: 0 10px 30px rgba(254, 9, 121, 0.2);
    border-color: var(--neon-pink);
}

/* --- ABOUT SECTION --- */
.about {
    background: var(--bg-secondary);
}

.about-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background: var(--bg-tertiary);
    padding: 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition-fast);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: inline-block;
}

.feature-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-box p {
    font-size: 14px;
    color: var(--text-secondary);
}

.about-content h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.about-list {
    margin-bottom: 40px;
}

.about-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-list-item svg {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan-glow));
}

/* --- CONTACT SECTION --- */
.contact-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-md);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.15);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-details h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.info-details p,
.info-details a {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan-glow);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    border: none;
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(254, 9, 121, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
}

/* --- WHATSAPP WIDGET --- */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: var(--whatsapp-green);
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 20px var(--whatsapp-glow);
    transition: var(--transition-normal);
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px var(--whatsapp-green);
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    border: 3px solid var(--whatsapp-green);
    animation: pulseWhatsapp 2s infinite;
    z-index: -1;
}

@keyframes pulseWhatsapp {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* --- FOOTER --- */
footer {
    background: #040507;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--neon-cyan);
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-col ul a:hover {
    color: var(--neon-cyan);
    padding-left: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
}

.social-btn:hover {
    color: var(--text-primary);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan-glow);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* --- LIGHTBOX MODAL --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 5, 7, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
    padding: 24px;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 900px;
    max-height: 80vh;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.lightbox-caption {
    color: var(--text-primary);
    text-align: center;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
}

/* --- BLOG PAGE SPECIFIC STYLES --- */
.blog-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    background: radial-gradient(circle at top, rgba(0, 242, 254, 0.05) 0%, transparent 60%);
    text-align: center;
}

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

.blog-card {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-normal);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card-content h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
}

.blog-card-content h3 a:hover {
    color: var(--neon-cyan);
}

.blog-card-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.blog-read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-cyan);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.1);
}

/* --- BLOG ARTICLE PAGE SPECIFIC --- */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 140px;
    padding-bottom: 100px;
}

.article-header {
    margin-bottom: 40px;
}

.article-category {
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.article-header h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 24px;
}

.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: #e2e8f0;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.article-body h3 {
    font-size: 22px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.article-body blockquote {
    border-left: 4px solid var(--neon-cyan);
    background: var(--bg-secondary);
    padding: 24px;
    margin: 32px 0;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-style: italic;
    color: var(--text-primary);
}

.article-body ul, .article-body ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-featured-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 52px;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition-normal);
        z-index: 1050;
    }
    
    .nav-links.active {
        right: 0;
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 40px;
    }
    .stats-container {
        grid-template-columns: 1fr;
    }
    .works-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-group-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .whatsapp-tooltip {
        display: none;
    }
    .article-header h1 {
        font-size: 32px;
    }
}
