/* ==========================================
   Elite Futuristic Glass-Carbon Tech Theme
   Designed for: Abather Majid Premium Portfolio
   Super-vibrant, high-contrast, interactive, and breathtaking.
   ========================================== */

:root {
    --primary-color: #00f2fe;      /* Saturated Cyber Cyan */
    --primary-glow: rgba(0, 242, 254, 0.4);
    --secondary-color: #7f00ff;    /* Saturated Hyper Purple */
    --secondary-glow: rgba(127, 0, 255, 0.4);
    --accent-color: #ff007f;       /* Electric Hot Pink */
    --accent-glow: rgba(255, 0, 127, 0.4);
    --bg-dark: #040408;            /* Deep Space Velvet */
    --bg-deep: #010103;            /* Pure Black Obsidian */
    --card-bg: rgba(10, 10, 20, 0.75); /* Dark Glassmorphism */
    --text-main: #ffffff;          /* Saturated Pure White */
    --text-dim: #a5b4fc;           /* Light Pastel Blue/Indigo */
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-border-glow: rgba(0, 242, 254, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Global Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Almarai', 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Interactive Saturated Nebulae (Vibrant cosmic highlights) */
.bg-glow {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, rgba(127, 0, 255, 0.08) 40%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow1 15s infinite alternate ease-in-out;
    filter: blur(80px);
}

.bg-glow-2 {
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.12) 0%, rgba(127, 0, 255, 0.06) 50%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulseGlow2 18s infinite alternate ease-in-out;
    filter: blur(80px);
}

@keyframes pulseGlow1 {
    0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
    100% { transform: scale(1.3) translate(50px, 30px); opacity: 0.9; }
}

@keyframes pulseGlow2 {
    0% { transform: scale(1.2) translate(0, 0); opacity: 0.5; }
    100% { transform: scale(0.9) translate(-40px, -40px); opacity: 0.8; }
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 242, 254, 0.08) 1.5px, transparent 1.5px);
    background-size: 35px 35px;
    z-index: -2;
    opacity: 0.7;
}

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

/* Premium Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
    background: rgba(4, 4, 8, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(4, 4, 8, 0.85);
    border-bottom: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15);
}

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

.logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 30%, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-glow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    border-radius: 4px;
    box-shadow: 0 0 8px var(--primary-color);
}

.nav-links a.active {
    color: var(--text-main);
}

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

/* Mobile Toggle Hamburger */
.nav-toggle {
    display: none;
    font-size: 22px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.nav-toggle:hover {
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(4, 4, 8, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1005;
    border-left: 1px solid rgba(0, 242, 254, 0.2);
    padding: 100px 48px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 35px;
    left: 35px;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

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

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 20px;
    font-weight: 700;
    transition: var(--transition);
    display: block;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary-color);
    padding-right: 12px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1004;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Sections General */
section {
    padding: 120px 0;
}

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

.section-header h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #fff 40%, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 140px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1.3;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    margin: 15px 0;
    background: linear-gradient(135deg, #fff 50%, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h3 {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px var(--accent-glow);
}

.hero-text p {
    font-size: 18.5px;
    color: var(--text-dim);
    max-width: 600px;
    margin-bottom: 45px;
    line-height: 1.8;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

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

.btn {
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: var(--transition);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-deep);
    box-shadow: 0 10px 25px var(--primary-glow);
}

.btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px var(--primary-color);
    background: #fff;
    color: var(--bg-deep);
}

.btn.secondary {
    border: 2px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(0, 242, 254, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 242, 254, 0.15);
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    flex: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border: 4px solid var(--glass-border);
    animation: morph 8s ease-in-out infinite;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 66% 34% 33% 67% / 58% 73% 27% 42%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    filter: blur(50px);
    opacity: 0.4;
    z-index: 0;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid var(--text-dim);
    border-radius: 15px;
    position: relative;
}

.mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2.2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 16px); opacity: 0; }
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-info p {
    font-size: 17px;
    color: var(--text-dim);
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.stat-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    flex: 1;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.15);
}

.stat-card h4 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 700;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
}

.ai-insight h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    font-size: 22px;
    color: var(--secondary-color);
}

.ai-insight h3 i {
    color: var(--primary-color);
}

.ai-insight p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
}

.ai-insight ul {
    list-style: none;
    margin-top: 25px;
}

.ai-insight li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 600;
}

.ai-insight li i {
    color: var(--primary-color);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.skill-category {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition);
}

.skill-category:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.category-header i {
    font-size: 26px;
    color: var(--primary-color);
}

.category-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.skill-list {
    list-style: none;
}

.skill-list li {
    margin-bottom: 22px;
}

.skill-list li span {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bar {
    height: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
}

/* APK Section - Gorgeous Glass Cards */
.apk-showcase-section {
    position: relative;
}

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

.apk-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    min-height: 360px;
}

.apk-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.15);
}

.apk-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.apk-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-color);
    transition: var(--transition);
}

.apk-card:hover .apk-icon-box {
    background: var(--primary-color);
    color: var(--bg-deep);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 0 15px var(--primary-color);
}

.apk-badge-top {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
}

.apk-details {
    margin-bottom: 25px;
}

.apk-details h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}

.apk-card:hover .apk-details h3 {
    color: var(--primary-color);
}

.apk-details p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
}

.btn-apk-dl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 14px 22px;
    border-radius: 14px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition);
}

.btn-apk-dl i {
    font-size: 18px;
    color: var(--primary-color);
}

.btn-apk-dl:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: var(--bg-deep);
    box-shadow: 0 10px 25px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-apk-dl:hover i {
    color: var(--bg-deep);
}

/* ==========================================
   GIANT SHOWCASE PROJECTS SECTION
   Ultra-High-End Visual Cards with Glow Shadows
   ========================================== */
.projects-showcase-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.giant-project-panel {
    display: flex;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    min-height: 480px;
    transition: var(--transition);
}

.giant-project-panel:hover {
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 20px 40px rgba(0, 242, 254, 0.08);
}

.giant-project-panel:nth-child(even) {
    flex-direction: row-reverse;
}

.project-visual-side {
    flex: 1.1;
    position: relative;
    overflow: hidden;
    background: #06060c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-visual-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.7;
}

.giant-project-panel:hover .project-visual-side img {
    transform: scale(1.06);
    opacity: 0.85;
}

.project-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, var(--bg-dark) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.giant-project-panel:nth-child(even) .project-visual-overlay {
    background: linear-gradient(to right, var(--bg-dark) 0%, transparent 60%);
}

.project-visual-icon {
    position: absolute;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.02);
    z-index: 1;
    transition: var(--transition);
}

.giant-project-panel:hover .project-visual-icon {
    color: rgba(0, 242, 254, 0.15);
}

.project-content-side {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.project-featured-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 20px;
}

.project-content-side h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 40%, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-content-side p {
    font-size: 15.5px;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 25px;
}

.project-meta-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-item span.meta-label {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 800;
}

.meta-item span.meta-value {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 600;
}

.giant-project-actions {
    display: flex;
    gap: 20px;
}

.giant-project-actions .btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
}

/* Multimedia Giant Banner */
.multimedia-giant-banner {
    background: linear-gradient(135deg, rgba(4, 4, 8, 0.95), rgba(127, 0, 255, 0.08));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.multimedia-banner-text {
    flex: 1.2;
}

.multimedia-banner-text h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 12px;
}

.multimedia-banner-text p {
    color: var(--text-dim);
    font-size: 15.5px;
    margin-bottom: 0;
}

.multimedia-banner-action {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

.multimedia-banner-action .btn {
    white-space: nowrap;
    border-radius: 30px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-card h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info-card p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 16.5px;
    font-weight: 700;
    transition: var(--transition);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(0, 242, 254, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--primary-color);
    border: 1px solid rgba(0, 242, 254, 0.2);
    transition: var(--transition);
    font-size: 18px;
}

.contact-item:hover {
    color: var(--primary-color);
}

.contact-item:hover i {
    background: var(--primary-color);
    border-color: transparent;
    color: var(--bg-deep);
    box-shadow: 0 0 15px var(--primary-color);
}

/* Form Card */
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 40px;
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dim);
}

.form-control {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    padding: 14px 20px;
    border-radius: 10px;
    color: var(--text-main);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

.form-control:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}

textarea.form-control {
    resize: none;
    min-height: 140px;
}

.btn-submit {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 30px;
}

/* Success Toast */
.toast-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    background: rgba(4, 4, 8, 0.95);
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    padding: 16px 24px;
    color: var(--text-main);
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 380px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 34px;
    height: 34px;
    background: rgba(0, 242, 254, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
}

.toast-content h4 {
    font-size: 14.5px;
    font-weight: 800;
    margin-bottom: 2px;
}

.toast-content p {
    font-size: 13px;
    color: var(--text-dim);
}

/* Footer */
.footer {
    text-align: center;
    padding: 50px 0;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-deep);
}

.highlight {
    color: var(--primary-color);
    font-weight: 800;
    text-shadow: 0 0 8px var(--primary-glow);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
    .giant-project-panel {
        min-height: auto;
    }
    .project-content-side {
        padding: 40px;
    }
    .hero-text h1 {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }
    .hero-text p {
        margin: 0 auto 40px auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image-wrapper {
        width: 300px;
        height: 300px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .apk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .giant-project-panel, .giant-project-panel:nth-child(even) {
        flex-direction: column;
    }
    .project-visual-side {
        height: 280px;
    }
    .project-visual-overlay {
        background: linear-gradient(to top, var(--bg-dark) 0%, transparent 80%);
    }
    .giant-project-panel:nth-child(even) .project-visual-overlay {
        background: linear-gradient(to top, var(--bg-dark) 0%, transparent 80%);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .multimedia-giant-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .multimedia-banner-action {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .apk-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .hero-text h1 {
        font-size: 44px;
    }
    .hero-text h3 {
        font-size: 22px;
    }
    section {
        padding: 80px 0;
    }
}
