:root {
    --bg-dark: #07070a;
    --bg-darker: #030305;
    --bg-card: rgba(20, 20, 30, 0.4);
    --primary: #4361ee;
    --primary-glow: rgba(67, 97, 238, 0.4);
    --secondary: #7209b7;
    --accent: #f72585;
    --accent-glow: rgba(247, 37, 133, 0.4);
    --text-main: #f8f9fa;
    --text-muted: #a0aabf;
    --border-color: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 13px; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: radial-gradient(circle at center, #101018 0%, #030305 100%);
}

h1, h2, h3, h4, .logo-text { font-family: 'Outfit', sans-serif; }
.container { max-width: 1150px; margin: 0 auto; padding: 0 2rem; }
.highlight { color: var(--primary); }
.highlight-gradient {
    background: linear-gradient(90deg, #4cc9f0, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }

/* Utilities */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.glow-border {
    position: relative;
}
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}
.glow-border:hover::before { opacity: 1; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.5rem 0; z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}
.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.logo { text-decoration: none; font-size: 1.2rem; font-weight: 900; color: var(--text-main); letter-spacing: -0.5px; flex-shrink: 0; }
.nav-logo-img {
    height: 44px; width: 44px; border-radius: 50%;
    object-fit: cover; object-position: top center;
    border: 2px solid rgba(67,97,238,0.7);
    box-shadow: 0 0 14px rgba(67,97,238,0.5);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav-logo-img:hover { transform: scale(1.08); box-shadow: 0 0 20px rgba(67,97,238,0.8); }
.nav-links { display: flex; list-style: none; align-items: center; gap: 1.2rem; flex-wrap: nowrap; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; font-size: 0.82rem; transition: color 0.3s ease; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.hamburger { display: none; cursor: pointer; font-size: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.8rem 1.8rem; border-radius: 8px; font-weight: 600; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; border: none;
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    box-shadow: 0 0 18px rgba(76,201,240,0.5), 0 4px 15px rgba(67,97,238,0.4);
    border: 1px solid rgba(76,201,240,0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(76,201,240,0.7), 0 8px 25px rgba(67,97,238,0.5);
}
.btn-secondary {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(5px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline { border: 1px solid var(--primary); color: var(--primary) !important; background: transparent; }
.btn-outline:hover { background: var(--primary); color: white !important; box-shadow: 0 4px 15px var(--primary-glow); }
.glow-btn { position: relative; overflow: hidden; }
.w-100 { width: 100%; }

/* ===== HERO SECTION ===== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding-top: 90px; padding-bottom: 2rem; overflow: hidden;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}
.hero-text {
    display: flex; flex-direction: column;
    align-items: flex-start; text-align: left;
    z-index: 2;
}
.floating-badge {
    display: inline-block; padding: 0.55rem 1.4rem; margin-bottom: 1.8rem;
    background: rgba(67,97,238,0.12); border: 1px solid rgba(67,97,238,0.4);
    border-radius: 50px; color: #4cc9f0; font-size: 0.78rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
}
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 3.5rem);
    font-weight: 900; line-height: 1.1;
    margin-bottom: 1.5rem; text-transform: uppercase;
    letter-spacing: -1px; text-align: left;
}
.hero-highlight-blue {
    background: linear-gradient(90deg, #4cc9f0, #4361ee);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-highlight-pink {
    background: linear-gradient(90deg, #7209b7, #f72585);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 2.5rem; max-width: 500px; text-align: left;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero Visual / Right Side */
.hero-visual {
    position: relative; display: flex;
    align-items: center; justify-content: center;
    z-index: 2;
    width: 100%;
    perspective: 1000px;
}
.hologram-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-img.hologram-effect {
    width: 100%; max-width: 560px;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 30px rgba(67,97,238,0.6)) drop-shadow(0 0 70px rgba(114,9,183,0.4)) brightness(1.2);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
    mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
    animation: floatHologram 5s ease-in-out infinite, glitch 4s infinite alternate;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}
.scanning-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(76, 201, 240, 0.9);
    box-shadow: 0 0 20px 5px rgba(76, 201, 240, 0.6);
    animation: scan 3s linear infinite;
    z-index: 5;
    opacity: 0.8;
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
    mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}



@keyframes floatHologram {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-12px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

@keyframes scan {
    0% { top: -5%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 105%; opacity: 0; }
}

@keyframes glitch {
    0% { filter: hue-rotate(0deg) brightness(1.1) drop-shadow(0 0 30px rgba(67,97,238,0.6)); }
    98% { filter: hue-rotate(0deg) brightness(1.1) drop-shadow(0 0 30px rgba(67,97,238,0.6)); }
    99% { filter: hue-rotate(40deg) brightness(1.3) drop-shadow(0 0 40px rgba(247,37,133,0.8)); transform: translateX(2px); }
    100% { filter: hue-rotate(0deg) brightness(1.1) drop-shadow(0 0 30px rgba(67,97,238,0.6)); transform: translateX(0); }
}

@media (min-width: 768px) {
    .nowrap { white-space: nowrap; }
}

.hero-img-glow {
    position: absolute; width: 450px; height: 450px; border-radius: 50%;
    background: radial-gradient(circle, rgba(67,97,238,0.3) 0%, transparent 70%);
    filter: blur(50px); z-index: -1;
}

/* Responsive Hero */
@media (max-width: 900px) {
    .hero-container { grid-template-columns: 1fr; gap: 2rem; }
    .hero-text { align-items: center; text-align: center; }
    .hero-title { text-align: center; font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-subtitle { text-align: center; max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-img { max-width: 320px; }
}

/* Expertise Showcase */
.expertise-section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 3rem; margin-bottom: 1rem; letter-spacing: -1px; }
.section-header p { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

.showcase-row {
    display: flex; align-items: center; gap: 4rem; margin-bottom: 6rem;
}
.showcase-row.reverse { flex-direction: row-reverse; }
.showcase-content { flex: 1; }
.icon-box {
    width: 60px; height: 60px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(67,97,238,0.2), rgba(114,9,183,0.2));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--primary); margin-bottom: 1.5rem;
    border: 1px solid rgba(67,97,238,0.3);
}
.showcase-content h3 { font-size: 2.2rem; margin-bottom: 1rem; }
.showcase-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }
.feature-list { list-style: none; }
.feature-list li {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1rem; font-size: 1.05rem; color: #e0e0e0;
}
.feature-list i { color: #4cc9f0; }

.showcase-image {
    flex: 1; border-radius: 20px; overflow: hidden;
    padding: 1rem; position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}
.showcase-row.reverse .showcase-image { transform: perspective(1000px) rotateY(5deg); }
.showcase-image:hover { transform: perspective(1000px) rotateY(0deg) translateY(-10px); }
.showcase-image img { width: 100%; border-radius: 12px; display: block; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }

/* Services Grid */
.services { padding: 4rem 0 8rem; position: relative; }
.services::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}
.large-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem;
}
.service-card {
    border-radius: 16px; padding: 2.5rem; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.service-card:hover {
    transform: translateY(-10px); border-color: rgba(67, 97, 238, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 20px rgba(67, 97, 238, 0.1);
}
.service-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); }

/* Packages Grid */
.packages-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
    align-items: start;
}
.package-card {
    border-radius: 20px; padding: 3rem 2rem; position: relative; transition: all 0.4s ease;
}
.package-card:hover { transform: translateY(-10px); }
.package-card.popular {
    border-color: var(--primary); background: rgba(67, 97, 238, 0.05);
    transform: scale(1.05); z-index: 2;
}
.package-card.popular:hover { transform: scale(1.05) translateY(-10px); }
.popular-badge {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white; padding: 0.4rem 1.5rem; border-radius: 50px; font-size: 0.85rem; font-weight: bold;
}
.package-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; }
.package-card h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.budget-tag {
    color: #4cc9f0; font-size: 1.2rem; font-weight: bold; margin-bottom: 1.5rem; font-family: 'Outfit';
}
.package-features { list-style: none; margin: 2rem 0; }
.package-features li { display: flex; gap: 0.8rem; margin-bottom: 1rem; color: #d0d0d0; }
.package-features i { color: #25D366; margin-top: 0.3rem; }

/* Contact */
.contact { padding: 8rem 0; position: relative; }
.contact-card {
    max-width: 700px; margin: 0 auto; border-radius: 24px; padding: 4rem; text-align: center;
}
.contact-card h2 { font-size: 3rem; margin-bottom: 1rem; }
.contact-card > p { color: var(--text-muted); margin-bottom: 2.5rem; }
.contact-info { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.contact-link {
    display: flex; align-items: center; gap: 0.8rem; color: var(--text-main); text-decoration: none;
    font-weight: 500; background: rgba(255,255,255,0.05); padding: 0.8rem 1.5rem;
    border-radius: 50px; border: 1px solid var(--border-color); transition: all 0.3s ease;
}
.contact-link:hover { background: rgba(255,255,255,0.1); border-color: var(--primary); }
.whatsapp-link:hover { border-color: #25D366; color: #25D366; }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; text-align: left; }
.form-group input, .form-group textarea, .custom-select {
    width: 100%; padding: 1.2rem; background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-color); border-radius: 12px;
    color: var(--text-main); font-family: 'Inter', sans-serif; font-size: 1rem;
    transition: all 0.3s ease;
}
.custom-select { appearance: none; background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23FFFFFF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"); background-repeat: no-repeat; background-position: right 1rem top 50%; background-size: 0.65rem auto; }
.custom-select option { background: var(--bg-dark); }
.form-group input:focus, .form-group textarea:focus, .custom-select:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 15px rgba(67, 97, 238, 0.2);
}

/* Footer */
footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border-color); background: rgba(0,0,0,0.5); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1.5rem; margin-top: 1.5rem; }
.social-links a {
    display: flex; align-items: center; justify-content: center; width: 60px; height: 60px;
    border-radius: 50%; background: rgba(255,255,255,0.05); color: var(--text-main);
    transition: all 0.3s ease; border: 1px solid transparent; font-size: 1.8rem;
}
.social-links a:hover { background: var(--primary); transform: translateY(-5px); border-color: rgba(255,255,255,0.2); box-shadow: 0 5px 20px var(--primary-glow); }
.footer-links h4, .footer-contact h4 { margin-bottom: 1.5rem; font-size: 1.2rem; color: #fff; }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.8rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--primary); transform: translateX(5px); }
.footer-contact p { color: var(--text-muted); margin-bottom: 0.8rem; }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.9rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }

/* Animations */
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }
[data-aos] { opacity: 0; transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-up"] { transform: translateY(30px) scale(0.95); }
.aos-animate { opacity: 1 !important; transform: translate(0) scale(1) !important; }

/* Responsive */
@media (max-width: 992px) {
    .showcase-row, .showcase-row.reverse { flex-direction: column; gap: 2rem; text-align: center; }
    .icon-box { margin: 0 auto 1.5rem; }
    .feature-list li { justify-content: center; }
    .showcase-image { transform: none !important; }
    .package-card.popular { transform: none; }
    .package-card.popular:hover { transform: translateY(-10px); }
}
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-buttons { flex-direction: column; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .contact-card { padding: 2rem; }
    .contact-info { flex-direction: column; align-items: center; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 9999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    animation: waPulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.15); }
.wa-tooltip {
    position: absolute; right: 70px; background: #25D366; color: white;
    padding: 0.4rem 1rem; border-radius: 8px; font-size: 0.85rem;
    font-weight: 600; white-space: nowrap; opacity: 0;
    pointer-events: none; transition: opacity 0.3s ease;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 35px rgba(37,211,102,0.9); }
}

/* ===== STATS SECTION ===== */
.stats-section { padding: 4rem 0; background: rgba(0,0,0,0.2); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 2rem; }
.stat-card { border-radius: 20px; padding: 2.5rem 2rem; text-align: center; transition: transform 0.4s ease; }
.stat-card:hover { transform: translateY(-8px); }
.stat-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 1rem; }
.stat-number {
    font-family: 'Outfit', sans-serif; font-size: 3.5rem; font-weight: 900;
    background: linear-gradient(90deg, #4cc9f0, var(--primary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
.stat-label { color: var(--text-muted); font-size: 1rem; margin-top: 0.5rem; font-weight: 500; }

/* ===== PORTFOLIO ===== */
.portfolio-section { padding: 6rem 0; }
.portfolio-filter { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn {
    padding: 0.6rem 1.5rem; border-radius: 50px; border: 1px solid var(--border-color);
    background: transparent; color: var(--text-muted); cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 0.9rem; transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 15px var(--primary-glow); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2rem; }
.portfolio-card { border-radius: 20px; overflow: hidden; transition: transform 0.4s ease; }
.portfolio-card:hover { transform: translateY(-10px); }
.portfolio-img { position: relative; overflow: hidden; height: 220px; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-img img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-info { padding: 1.5rem; }
.portfolio-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #4cc9f0; letter-spacing: 1px; }
.portfolio-info h3 { font-size: 1.3rem; margin: 0.5rem 0; }
.portfolio-info p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.portfolio-result { color: #4cc9f0; font-size: 0.9rem; font-weight: 600; border-top: 1px solid var(--border-color); padding-top: 1rem; }
.portfolio-card.hidden { display: none; }

/* ===== YOUTUBE SECTION ===== */
.youtube-section { padding: 6rem 0; background: rgba(0,0,0,0.2); }
.youtube-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.yt-card { border-radius: 20px; overflow: hidden; }
.yt-thumb-link { display: block; text-decoration: none; }
.yt-thumb-wrap {
    position: relative; overflow: hidden; height: 220px;
}
.yt-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.yt-thumb-link:hover .yt-thumb-wrap img { transform: scale(1.05); }
.yt-play-btn {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.4); color: #ff0000; font-size: 4rem;
    transition: background 0.3s ease;
}
.yt-thumb-link:hover .yt-play-btn { background: rgba(0,0,0,0.6); }
.yt-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.yt-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.yt-info { padding: 1.5rem; }
.yt-tag { font-size: 0.8rem; font-weight: 700; color: #ff0000; text-transform: uppercase; letter-spacing: 1px; }
.yt-info h3 { font-size: 1.3rem; margin: 0.5rem 0; }
.yt-info p { color: var(--text-muted); }
.yt-channel-cta { border-radius: 20px; padding: 3rem 2.5rem; text-align: center; border: 1px solid rgba(255,0,0,0.2); }
.yt-channel-icon { font-size: 4rem; color: #ff0000; margin-bottom: 1rem; }
.yt-channel-cta h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.yt-channel-cta p { color: var(--text-muted); margin-bottom: 1.5rem; }
.yt-benefits { list-style: none; text-align: left; margin-bottom: 2rem; }
.yt-benefits li { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; color: #e0e0e0; }
.yt-benefits i { color: #4cc9f0; }
.btn-youtube {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: #ff0000; color: white; padding: 0.9rem 2rem;
    border-radius: 8px; font-weight: 700; text-decoration: none;
    transition: all 0.3s ease;
}
.btn-youtube:hover { background: #cc0000; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,0,0,0.4); }

/* ===== REVIEWS ===== */
.reviews-section { padding: 6rem 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; }
.review-card { border-radius: 20px; padding: 2rem; transition: transform 0.4s ease; }
.review-card:hover { transform: translateY(-8px); border-color: rgba(67,97,238,0.4); }
.review-stars { color: #ffd700; font-size: 1.1rem; margin-bottom: 1.2rem; letter-spacing: 2px; }
.review-text { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 1rem; }
.reviewer-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1rem; flex-shrink: 0;
    object-fit: cover;
}
.reviewer-info h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.reviewer-info span { color: var(--text-muted); font-size: 0.85rem; }

/* ===== BLOG ===== */
.blog-section { padding: 6rem 0; background: rgba(0,0,0,0.2); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2rem; }
.blog-card { border-radius: 20px; overflow: hidden; transition: transform 0.4s ease; }
.blog-card:hover { transform: translateY(-10px); }
.blog-img-wrap { position: relative; overflow: hidden; height: 200px; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.08); }
.blog-cat {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--primary); color: white; padding: 0.3rem 0.9rem;
    border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
.blog-body { padding: 1.5rem; }
.blog-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.8rem; }
.blog-body h3 { font-size: 1.2rem; margin-bottom: 0.8rem; line-height: 1.4; }
.blog-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.2rem; }
.blog-link { color: var(--primary); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s ease; }
.blog-link:hover { gap: 0.9rem; }

/* ===== SCROLL MARGIN FIX ===== */
section[id] {
    scroll-margin-top: 100px;
}

/* ===== ABOUT SECTION ===== */
.about-section { padding: 6rem 0; background: rgba(0,0,0,0.2); }
.about-container {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 4rem; align-items: center;
}
.about-image { display: flex; justify-content: center; }
.about-img-wrapper {
    width: 280px; height: 280px; border-radius: 50%;
    overflow: hidden; position: relative;
    border: 3px solid rgba(67,97,238,0.5);
    box-shadow: 0 0 40px rgba(67,97,238,0.3), 0 0 80px rgba(114,9,183,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-img-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(67,97,238,0.5), 0 0 100px rgba(114,9,183,0.25);
}
.about-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.about-content h3 {
    font-family: 'Outfit', sans-serif; font-size: 2rem;
    margin-bottom: 1.5rem; line-height: 1.3;
}
.about-content p {
    color: var(--text-muted); font-size: 1.05rem; line-height: 1.7;
    margin-bottom: 1rem;
}
.about-highlights { margin-top: 1.5rem; }
.about-highlight-item {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 0.8rem; color: #e0e0e0; font-size: 1rem;
}
.about-highlight-item i { color: #4cc9f0; font-size: 1rem; }

/* ===== HOW IT WORKS / PROCESS ===== */
.process-section { padding: 6rem 0; }
.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2rem; position: relative;
}
.process-step {
    border-radius: 20px; padding: 2.5rem 2rem;
    text-align: center; position: relative;
    transition: transform 0.4s ease, border-color 0.3s ease;
    overflow: hidden;
}
.process-step:hover {
    transform: translateY(-10px);
    border-color: rgba(67,97,238,0.4);
}
.process-number {
    font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 900;
    background: linear-gradient(135deg, rgba(67,97,238,0.15), rgba(114,9,183,0.15));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1; margin-bottom: 1rem;
    position: absolute; top: 1rem; right: 1.5rem; opacity: 0.5;
}
.process-icon {
    font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem;
    width: 70px; height: 70px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(67,97,238,0.15), rgba(114,9,183,0.15));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(67,97,238,0.3);
}
.process-step h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 6rem 0; background: rgba(0,0,0,0.2); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-radius: 16px; margin-bottom: 1rem; overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(67,97,238,0.3); }
.faq-question {
    width: 100%; padding: 1.5rem 2rem; background: transparent;
    border: none; color: var(--text-main); font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; font-weight: 600; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; text-align: left; transition: color 0.3s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
    transition: transform 0.3s ease; color: var(--primary);
    font-size: 0.9rem; flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 2rem;
}
.faq-item.active .faq-answer {
    max-height: 300px; padding: 0 2rem 1.5rem;
}
.faq-answer p {
    color: var(--text-muted); font-size: 1rem; line-height: 1.7;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 992px) {
    .youtube-grid { grid-template-columns: 1fr; }
    .about-container { grid-template-columns: 1fr; text-align: center; }
    .about-content { text-align: center; }
    .about-highlight-item { justify-content: center; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .stat-number { font-size: 2.5rem; }
    .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
    .process-grid { grid-template-columns: 1fr; }
    .about-img-wrapper { width: 220px; height: 220px; }
    .back-to-top { bottom: 80px; right: 20px; width: 42px; height: 42px; font-size: 1rem; }
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
    opacity: 0; visibility: hidden;
}
.loader-spinner {
    width: 50px; height: 50px; border-radius: 50%;
    border: 3px solid rgba(67,97,238,0.15);
    border-top: 3px solid var(--primary);
    animation: spin 0.8s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 90px; right: 30px; z-index: 9998;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(67,97,238,0.15); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; text-decoration: none;
    border: 1px solid rgba(67,97,238,0.3);
    backdrop-filter: blur(10px);
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.back-to-top.visible {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary); color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px var(--primary-glow);
}

/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active-section {
    color: var(--primary) !important;
}

/* ===== HIRE PLATFORMS (Fiverr / Upwork) ===== */
.hire-platforms {
    display: flex; justify-content: center; gap: 1rem;
    margin-bottom: 2.5rem; flex-wrap: wrap;
}
.hire-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.7rem 1.5rem; border-radius: 50px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none;
    transition: all 0.3s ease; border: 1px solid;
}
.hire-icon {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-family: 'Outfit', sans-serif; font-size: 0.9rem;
}
.fiverr-badge {
    color: #1dbf73; border-color: rgba(29,191,115,0.3);
    background: rgba(29,191,115,0.06);
}
.fiverr-badge:hover {
    background: rgba(29,191,115,0.15); border-color: #1dbf73;
    box-shadow: 0 4px 20px rgba(29,191,115,0.3);
    transform: translateY(-2px);
}
.fiverr-icon { background: #1dbf73; color: white; }
.upwork-badge {
    color: #6fda44; border-color: rgba(111,218,68,0.3);
    background: rgba(111,218,68,0.06);
}
.upwork-badge:hover {
    background: rgba(111,218,68,0.15); border-color: #6fda44;
    box-shadow: 0 4px 20px rgba(111,218,68,0.3);
    transform: translateY(-2px);
}
.upwork-icon { background: #435169; color: white; }

/* Footer Fiverr/Upwork hover */
.social-links .fiverr-social:hover { background: #1dbf73; box-shadow: 0 5px 20px rgba(29,191,115,0.4); }
.social-links .upwork-social:hover { background: #435169; box-shadow: 0 5px 20px rgba(67,81,105,0.5); }

/* ===== AI CHAT WIDGET ===== */
.chat-toggle {
    position: fixed; bottom: 30px; left: 30px; z-index: 9997;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: white; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 25px rgba(67,97,238,0.5);
    transition: all 0.3s ease;
    animation: chatPulse 3s ease-in-out infinite;
}
.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(67,97,238,0.7);
}
.chat-toggle.active { animation: none; }
.chat-toggle .chat-badge {
    position: absolute; top: -2px; right: -2px;
    width: 16px; height: 16px; background: #ef4444; border-radius: 50%;
    border: 2px solid var(--bg-dark);
    animation: badgePop 1s ease-in-out infinite;
}
@keyframes chatPulse {
    0%, 100% { box-shadow: 0 4px 25px rgba(67,97,238,0.4); }
    50% { box-shadow: 0 4px 35px rgba(67,97,238,0.7), 0 0 60px rgba(124,58,237,0.2); }
}
@keyframes badgePop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.chat-window {
    position: fixed; bottom: 100px; left: 30px; z-index: 9998;
    width: 380px; height: 520px;
    background: rgba(15,17,28,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(67,97,238,0.2);
    border-radius: 20px;
    display: flex; flex-direction: column;
    overflow: hidden;
    opacity: 0; visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(67,97,238,0.1);
}
.chat-window.open {
    opacity: 1; visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(67,97,238,0.15), rgba(124,58,237,0.1));
    border-bottom: 1px solid rgba(67,97,238,0.15);
    display: flex; align-items: center; gap: 12px;
}
.chat-header-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; color: white;
}
.chat-header-info h4 {
    margin: 0; font-size: 0.95rem; color: white; font-weight: 600;
}
.chat-header-info span {
    font-size: 0.75rem; color: #22c55e;
}
.chat-header-info span::before {
    content: ''; display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    background: #22c55e; margin-right: 5px;
    animation: onlineDot 2s ease-in-out infinite;
}
@keyframes onlineDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.chat-close {
    margin-left: auto; background: none; border: none;
    color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1.2rem;
    transition: color 0.2s;
}
.chat-close:hover { color: white; }

.chat-messages {
    flex: 1; overflow-y: auto; padding: 16px;
    display: flex; flex-direction: column; gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(67,97,238,0.3) transparent;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(67,97,238,0.3); border-radius: 4px;
}

.chat-msg {
    max-width: 85%; padding: 10px 14px;
    border-radius: 16px; font-size: 0.88rem;
    line-height: 1.5; word-wrap: break-word;
    animation: msgSlide 0.3s ease-out;
}
@keyframes msgSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.chat-msg.ai {
    align-self: flex-start;
    background: rgba(67,97,238,0.12);
    border: 1px solid rgba(67,97,238,0.15);
    color: rgba(255,255,255,0.9);
    border-bottom-left-radius: 4px;
}
.chat-msg.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-typing {
    align-self: flex-start; padding: 10px 16px;
    background: rgba(67,97,238,0.08);
    border: 1px solid rgba(67,97,238,0.1);
    border-radius: 16px; border-bottom-left-radius: 4px;
    display: none; gap: 4px; align-items: center;
}
.chat-typing.show { display: flex; }
.chat-typing span {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(67,97,238,0.6);
    animation: typingBounce 1.4s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chat-quick-actions {
    padding: 8px 16px;
    display: flex; gap: 6px; flex-wrap: wrap;
    border-top: 1px solid rgba(67,97,238,0.1);
}
.chat-quick-btn {
    padding: 5px 12px; border-radius: 20px; border: none;
    background: rgba(67,97,238,0.1); color: var(--primary);
    font-size: 0.75rem; cursor: pointer; font-weight: 500;
    transition: all 0.2s; white-space: nowrap;
}
.chat-quick-btn:hover {
    background: var(--primary); color: white;
}

.chat-input-area {
    padding: 12px 16px;
    border-top: 1px solid rgba(67,97,238,0.1);
    display: flex; gap: 8px; align-items: center;
}
.chat-input {
    flex: 1; padding: 10px 14px;
    border-radius: 25px; border: 1px solid rgba(67,97,238,0.2);
    background: rgba(255,255,255,0.05); color: white;
    font-size: 0.88rem; outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--primary); }
.chat-input::placeholder { color: rgba(255,255,255,0.3); }
.chat-send {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: white; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; transition: all 0.2s;
    flex-shrink: 0;
}
.chat-send:hover { transform: scale(1.05); box-shadow: 0 4px 15px rgba(67,97,238,0.5); }
.chat-send:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Chat widget mobile */
@media (max-width: 768px) {
    .chat-toggle { bottom: 20px; left: 20px; width: 52px; height: 52px; font-size: 1.3rem; }
    .chat-window {
        bottom: 0; left: 0; right: 0;
        width: 100%; height: 100vh;
        border-radius: 0;
        z-index: 10000; /* Fix overlap with WhatsApp button on mobile */
    }
}
