:root {
    --bg-dark: #000000;
    --bg-surface: #0a0c10;
    --bg-card: #0f131a;
    --bg-card-hover: #161b26;
    --bg-card-elevated: #131722;
    --accent-orange: #ff5e00;
    --accent-orange-bright: #ff7824;
    --accent-orange-glow: rgba(255, 94, 0, 0.4);
    --accent-red-glow: rgba(220, 38, 38, 0.25);
    --whatsapp-green: #25D366;
    --whatsapp-glow: rgba(37, 211, 102, 0.35);
    --tiktok-color: #00f2fe;
    --tiktok-glow: rgba(0, 242, 254, 0.35);
    --text-white: #ffffff;
    --text-grey: #cbd5e1;
    --text-muted: #94a3b8;
    --border-card: #1c2230;
    --border-hover: rgba(255, 94, 0, 0.6);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    line-height: 1.5;
}

/* ==========================================================================
   AI FACE TRANSFORMATION CANVAS & GLOWING AMBIENT ORANGE
   ========================================================================== */
.canvas-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

#hero-canvas {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Radiant Orange & Red Ambient Atmospheric Glow */
.canvas-ambient-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 28%, rgba(255, 94, 0, 0.28) 0%, rgba(220, 38, 38, 0.12) 35%, transparent 65%);
    pointer-events: none;
}

.canvas-ambient-blur-top {
    position: absolute;
    top: -10%;
    left: 10%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(255, 110, 20, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.canvas-ambient-blur-bottom {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(255, 70, 0, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050608;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 94, 0, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 4rem;
    z-index: 100;
    background: #06070a;
    border-bottom: 1px solid var(--border-card);
    transition: all 0.3s ease;
}

.logo {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-accent {
    color: var(--accent-orange);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    color: var(--text-grey);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-contact-link {
    color: var(--text-white) !important;
    font-weight: 600 !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.btn-live-nav {
    background: #19120c;
    border: 1px solid rgba(255, 94, 0, 0.45);
    color: #ffaa6e;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s ease;
}

.btn-live-nav:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-orange-glow);
}

.live-pulse {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.btn-nav {
    background: white;
    color: black;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.btn-nav:hover {
    background-color: var(--accent-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-orange-glow);
}

.mobile-toggle {
    display: none;
    background: #0f131a;
    border: 1px solid var(--border-card);
    color: var(--text-white);
    font-size: 1.2rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a0c10;
    border-bottom: 1px solid var(--border-card);
    padding: 1.5rem 2rem;
    z-index: 99;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.mobile-link.highlight {
    color: var(--accent-orange);
}

.live-btn-mobile {
    color: #ffaa6e !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 9rem 4rem 5rem 4rem;
    display: flex;
    align-items: center;
    z-index: 1;
    background: transparent;
}

.hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.45rem 1.1rem;
    background: #14100c;
    border: 1px solid rgba(255, 94, 0, 0.4);
    border-radius: 30px;
    font-size: 0.82rem;
    color: #ffaa6e;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.intro-text {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 2.2rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #ff8c42 60%, #ff5e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #d83d00 100%);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px var(--accent-orange-glow);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(255, 94, 0, 0.6);
}

.btn-secondary {
    background: #121620;
    border: 1px solid var(--border-card);
    color: var(--text-white);
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-secondary:hover {
    background: #1b202e;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* HERO DESC CARD */
.hero-desc-box {
    display: flex;
    justify-content: flex-end;
}

.desc-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 2.2rem;
    max-width: 420px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.desc-card .quote {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.9rem;
    line-height: 1.45;
}

.desc-card .sub-desc {
    font-size: 0.88rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 1.4rem;
}

.quick-contact-pills {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.quick-pill {
    padding: 0.45rem 1rem;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.2s ease;
}

.whatsapp-pill {
    background: #0f2016;
    border: 1px solid rgba(37, 211, 102, 0.45);
    color: #4ade80;
}

.whatsapp-pill:hover {
    background: var(--whatsapp-green);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--whatsapp-glow);
}

.tiktok-pill {
    background: #0b1a26;
    border: 1px solid rgba(0, 242, 254, 0.4);
    color: #38bdf8;
}

.tiktok-pill:hover {
    background: #00f2fe;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--tiktok-glow);
}

/* ==========================================================================
   SKILLS STRIP
   ========================================================================== */
.skills-strip {
    position: relative;
    z-index: 5;
    padding: 0 4rem;
    margin-top: -2rem;
    background: transparent;
}

.skills-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: var(--bg-surface);
    padding: 2.2rem 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-card);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.skill-item .num {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 800;
    font-family: monospace;
    letter-spacing: 1px;
}

.skill-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--text-white);
}

.skill-info p {
    font-size: 0.84rem;
    color: var(--text-grey);
    line-height: 1.4;
}

/* ==========================================================================
   TRUSTED BY SECTION
   ========================================================================== */
.trusted-by {
    position: relative;
    z-index: 5;
    padding: 5rem 4rem 3rem 4rem;
    background: transparent;
}

.trusted-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    background: var(--bg-surface);
    padding: 1.8rem 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-card);
}

.trusted-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    line-height: 1.4;
}

.brand-logos {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
    transition: all 0.2s ease;
}

.brand:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    position: relative;
    z-index: 5;
    padding: 7rem 4rem;
    background: transparent;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid var(--border-card);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.tagline {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-left h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 2.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-orange);
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-grey);
    margin-top: 0.2rem;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.bio-text {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.7;
    color: #e2e8f0;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-card);
}

.small-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.direct-reach-text {
    font-size: 0.84rem;
    color: var(--accent-orange);
    font-weight: 500;
}

.btn-orange {
    background: var(--accent-orange);
    color: white;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px var(--accent-orange-glow);
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 94, 0, 0.5);
}

/* ==========================================================================
   UI/UX DESIGNS SHOWCASE SECTION
   ========================================================================== */
.image-grid-section {
    position: relative;
    z-index: 5;
    padding: 6rem 4rem 7rem 4rem;
    background: transparent;
}

.section-header {
    max-width: 1400px;
    margin: 0 auto 3.5rem auto;
    background: var(--bg-surface);
    padding: 2.5rem 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-card);
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-grey);
    font-size: 1rem;
}

.image-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
}

/* PROJECT CARD */
.project-card {
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(255, 94, 0, 0.22);
    background: var(--bg-card-hover);
}

.image-box {
    width: 100%;
    height: 340px;
    position: relative;
    overflow: hidden;
    background: #08090c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Specific styling for laptop and phone mockups to show full frames cleanly */
.mockup-box {
    background: #08090c;
    padding: 10px;
}

.mockup-box img {
    object-fit: contain;
    object-position: center;
}

.project-card:hover .image-box img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.card-badge {
    background: #0a0d13;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-white);
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-details {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}

.project-cat {
    color: var(--accent-orange);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-year {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.project-title {
    font-size: 1.22rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.35;
    color: var(--text-white);
}

.project-desc {
    font-size: 0.88rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* ==========================================================================
   STANDALONE LIVE WEBSITE SHOWCASE (CYBER CORE)
   ========================================================================== */
.live-showcase-section {
    position: relative;
    z-index: 5;
    padding: 2rem 4rem 6rem 4rem;
    background: transparent;
}

.live-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

.live-showcase-card {
    background: linear-gradient(135deg, #121622 0%, #0a0d14 100%);
    border: 1px solid rgba(255, 94, 0, 0.4);
    border-radius: 28px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 94, 0, 0.18);
}

.live-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1rem;
    background: #0f2016;
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #4ade80;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.live-showcase-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.live-showcase-desc {
    font-size: 1.05rem;
    color: #e2e8f0;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 2rem;
}

.live-link-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-live-launch {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #d83d00 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px var(--accent-orange-glow);
    transition: all 0.25s ease;
}

.btn-live-launch:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 94, 0, 0.6);
}

.live-url-text {
    font-family: monospace;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.live-showcase-accent {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
}

.showcase-icon {
    font-size: 4rem;
    color: var(--accent-orange);
    position: relative;
    z-index: 2;
}

.glowing-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.45) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbPulse 3s infinite alternate;
}

@keyframes orbPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; }
}

/* ==========================================================================
   DEDICATED "GET IN TOUCH" CONTACT SECTION
   ========================================================================== */
.contact-section {
    position: relative;
    z-index: 5;
    padding: 6rem 4rem 8rem 4rem;
    background: transparent;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem auto;
    background: var(--bg-surface);
    padding: 2.5rem 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-card);
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-top: 0.8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 1.8rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon-box {
    transform: scale(1.1);
}

/* WHATSAPP CARD */
.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.25);
    background: #0d1e15;
}

.whatsapp-icon-box {
    background: #0f2016;
    color: var(--whatsapp-green);
    border: 1px solid rgba(37, 211, 102, 0.4);
}

.whatsapp-badge {
    background: #11261a;
    color: #4ade80;
    border: 1px solid rgba(37, 211, 102, 0.4);
}

/* TIKTOK CARD */
.tiktok-card:hover {
    border-color: rgba(0, 242, 254, 0.6);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.25);
    background: #0b1a26;
}

.tiktok-icon-box {
    background: #0b1a26;
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.4);
}

.tiktok-badge {
    background: #0e2233;
    color: #38bdf8;
    border: 1px solid rgba(0, 242, 254, 0.4);
}

/* PHONE CARD */
.phone-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px var(--accent-orange-glow);
    background: #1e130c;
}

.phone-icon-box {
    background: #18110b;
    color: var(--accent-orange);
    border: 1px solid rgba(255, 94, 0, 0.4);
}

.phone-badge {
    background: #21150c;
    color: #ffaa6e;
    border: 1px solid rgba(255, 94, 0, 0.4);
}

.contact-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.channel-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-hint {
    font-size: 0.82rem;
    color: var(--text-grey);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.contact-channel-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-grey);
    margin-bottom: 0.3rem;
}

.contact-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
}

.contact-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    position: relative;
    z-index: 5;
    padding: 5rem 4rem 3rem 4rem;
    background: #06070a;
    border-top: 1px solid var(--border-card);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.2rem;
}

.footer-brand p {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-top: 0.6rem;
    max-width: 520px;
}

.footer-channels {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-pill {
    background: #11151e;
    border: 1px solid var(--border-card);
    color: var(--text-white);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.footer-pill:hover {
    background: #1a202d;
    transform: translateY(-2px);
}

.highlight-pill {
    background: #19120c;
    border-color: rgba(255, 94, 0, 0.45);
    color: #ffaa6e;
}

.highlight-pill:hover {
    background: var(--accent-orange);
    color: white;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE, TABLET, LAPTOP, DESKTOP)
   ========================================================================== */
@media (max-width: 1280px) {
    .navbar { padding: 1.25rem 2.5rem; }
    .hero { padding: 8rem 2.5rem 4rem 2.5rem; }
    .hero-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .skills-strip { padding: 0 2.5rem; }
    .skills-container { grid-template-columns: repeat(2, 1fr); padding: 2rem; }
    .trusted-by { padding: 4rem 2.5rem 2.5rem 2.5rem; }
    .about-section { padding: 5rem 2.5rem; }
    .about-container { padding: 3rem; }
    .image-grid-section { padding: 5rem 2.5rem; }
    .image-grid { grid-template-columns: repeat(2, 1fr); }
    .live-showcase-section { padding: 2rem 2.5rem 5rem 2.5rem; }
    .contact-section { padding: 5rem 2.5rem 6rem 2.5rem; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer { padding: 4rem 2.5rem 3rem 2.5rem; }
}

@media (max-width: 992px) {
    .navbar { padding: 1rem 1.5rem; }
    .nav-links, .btn-nav, .btn-live-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero { padding: 7rem 1.5rem 3rem 1.5rem; }
    .hero-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-desc-box { justify-content: flex-start; }
    .desc-card { max-width: 100%; }
    .skills-strip { padding: 0 1.5rem; margin-top: 0; }
    .skills-container { grid-template-columns: 1fr; border-radius: 20px; padding: 1.5rem; }
    .trusted-by { padding: 3rem 1.5rem; }
    .trusted-container { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 1.5rem; }
    .brand-logos { gap: 2rem; }
    .about-section { padding: 4rem 1.5rem; }
    .about-container { grid-template-columns: 1fr; gap: 3rem; padding: 2rem 1.5rem; }
    .image-grid-section { padding: 4rem 1.5rem; }
    .section-header { padding: 1.5rem; }
    .image-grid { grid-template-columns: 1fr; gap: 2rem; }
    .image-box { height: 300px; }
    .live-showcase-section { padding: 1rem 1.5rem 4rem 1.5rem; }
    .live-showcase-card { grid-template-columns: 1fr; padding: 2rem; }
    .live-showcase-accent { display: none; }
    .contact-section { padding: 4rem 1.5rem 5rem 1.5rem; }
    .contact-header { padding: 1.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .cta-wrapper { flex-direction: column; align-items: flex-start; }
    .site-footer { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.35rem; letter-spacing: -1px; }
    .hero-cta-group { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .image-box { height: 260px; }
    .about-stats { flex-direction: column; gap: 1rem; }
    .contact-val { font-size: 1.35rem; }
}
