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

:root {
    --primary-color: #FF1654;
    --secondary-color: #FF0066;
    --dark-bg: #000000;
    --dark-secondary: #0a0a0a;
    --dark-card: #141414;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --border-color: #1f1f1f;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF4D8C 100%);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 22, 84, 0.5);
}

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

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-brand .logo {
        font-size: 20px;
    }
    
    .nav-brand .logo svg {
        width: 30px;
        height: 30px;
    }
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-brand .logo span {
    color: #ffffff;
}

.nav-brand .logo:hover {
    transform: translateY(-2px);
}

.nav-brand .logo svg {
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 22, 84, 0.3));
}

.nav-brand .logo:hover svg {
    transform: rotate(5deg) scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 22, 84, 0.5));
}

.nav-brand .logo svg path {
    transition: all 0.3s ease;
}

/* Logo entrance animation */
@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    60% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.nav-brand .logo svg {
    animation: logoEntrance 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Subtle pulse animation for logo */
@keyframes logoPulse {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(255, 22, 84, 0.3));
    }
    50% {
        filter: drop-shadow(0 2px 12px rgba(255, 22, 84, 0.5));
    }
}

.nav-brand .logo svg {
    animation: logoEntrance 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
               logoPulse 3s ease-in-out infinite 1s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.nav-social {
    display: flex;
    gap: 15px;
}

.nav-social a {
    color: var(--text-secondary);
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-social a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: var(--primary-color);
    padding: 12px;
    border-radius: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    position: relative;
    min-height: 100vh;
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 100px 0 40px;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-text h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .hero-text h3 {
        font-size: 13px;
        letter-spacing: 1.5px;
    }
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF4D8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-main {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-subtitle-main {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .hero-subtitle-main {
        font-size: 18px;
    }
}

.hero-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hero-text p {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

@media (max-width: 600px) {
    .hero-text p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
}

.typing-text {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

@media (max-width: 768px) {
    .typing-text {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .typing-text {
        font-size: 32px;
    }
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.7s infinite;
    color: var(--primary-color);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

@media (max-width: 600px) {
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 22, 84, 0.3);
}

.hero-stats-mini {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-mini {
    text-align: left;
}

.stat-mini h4 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF4D8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-mini p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 600px) {
    .hero-stats-mini {
        gap: 20px;
        justify-content: space-between;
    }
    
    .stat-mini {
        text-align: center;
        flex: 1;
        min-width: calc(33.333% - 14px);
    }
    
    .stat-mini h4 {
        font-size: 24px;
    }
    
    .stat-mini p {
        font-size: 11px;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--text-primary);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

@media (max-width: 600px) {
    .btn-primary {
        padding: 14px 28px;
        font-size: 15px;
    }
}

.btn-primary:hover {
    background: #ff0040;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 22, 84, 0.3);
}

.hero-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a0a0a 0%, #0a0a0a 100%);
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .hero-image-wrapper {
        max-width: 100%;
        aspect-ratio: 4/5;
    }
}

.hero-badge {
    position: absolute;
    top: 50px;
    right: -50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 60px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    transform: rotate(-45deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero-badge-bottom {
    position: absolute;
    bottom: 100px;
    left: -50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 60px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    transform: rotate(90deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
}

@media (max-width: 600px) {
    .hero-badge {
        font-size: 9px;
        padding: 8px 40px;
        right: -40px;
        top: 30px;
    }
    
    .hero-badge-bottom {
        font-size: 9px;
        padding: 8px 40px;
        left: -40px;
        bottom: 80px;
    }
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.1) 0%, transparent 100%);
}

.hero-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.95) contrast(1.05);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-image-wrapper:hover .hero-image-photo {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.service-card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 600px) {
    .service-card {
        padding: 30px 20px;
    }
}

.service-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 22, 84, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: var(--primary-color);
}

.flutter-icon {
    width: 35px;
    height: 35px;
}

.service-logo-large {
    width: 90px;
    height: 90px;
}

.tech-icon-svg {
    width: 16px;
    height: 16px;
}

.brand-logo-svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

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

/* About Me Section - Modern Redesign */
.about-me {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-me::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 22, 84, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.about-me-modern {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.about-header-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-lead {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.about-description-box {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 20, 20, 0.5) 100%);
    padding: 45px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-icon-float {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.2) 0%, rgba(255, 22, 84, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.about-description-box p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 2;
    margin: 0;
    padding-right: 100px;
}

.about-expertise-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.expertise-card {
    background: var(--dark-card);
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 22, 84, 0.2);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF4D8C 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon {
    transform: rotateY(360deg);
}

.expertise-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.expertise-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-skills-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.skill-showcase-item {
    background: var(--dark-card);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.skill-showcase-item:hover {
    background: rgba(255, 22, 84, 0.05);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.skill-showcase-item i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.skill-showcase-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

.about-cta-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .about-expertise-cards {
        grid-template-columns: 1fr;
    }

    .about-skills-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header-section h2 {
        font-size: 36px;
    }

    .about-description-box {
        padding: 30px 25px;
    }

    .about-description-box p {
        padding-right: 0;
        font-size: 16px;
    }

    .about-icon-float {
        position: relative;
        top: auto;
        right: auto;
        margin: 0 auto 20px;
    }

    .about-skills-showcase {
        grid-template-columns: 1fr;
    }

    .about-cta-section {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: var(--dark-secondary);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 22, 84, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.stat-large {
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.2) 0%, rgba(255, 22, 84, 0.05) 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .stat-large {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .stat-large {
        padding: 30px 20px;
    }
}

.stat-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 22, 84, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.stat-large:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 22, 84, 0.3);
}

.stat-large .stat-number {
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF4D8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-number 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .stat-large .stat-number {
        font-size: 90px;
    }
}

@media (max-width: 600px) {
    .stat-large .stat-number {
        font-size: 70px;
    }
}

@keyframes pulse-number {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat-large h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .stat-large h3 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .stat-large h3 {
        font-size: 22px;
    }
}

.stat-large p {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .stats-grid {
        gap: 15px;
    }
}

.stat-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 20, 20, 0.8) 100%);
    padding: 35px 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 600px) {
    .stat-card {
        padding: 25px 20px;
    }
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 22, 84, 0.25);
}

.stat-card h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF4D8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

@media (max-width: 600px) {
    .stat-card h2 {
        font-size: 32px;
    }
    
    .stat-card p {
        font-size: 13px;
    }
}

.stat-card:hover h2 {
    transform: scale(1.1);
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.stat-card:nth-child(1) {
    animation: float-stat 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation: float-stat 3s ease-in-out infinite 0.5s;
}

.stat-card:nth-child(3) {
    animation: float-stat 3s ease-in-out infinite 1s;
}

.stat-card:nth-child(4) {
    animation: float-stat 3s ease-in-out infinite 1.5s;
}

@keyframes float-stat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Skills Section */
.skills {
    padding: 80px 0;
}

.skills-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.skill-column h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.skill-item {
    margin-bottom: 35px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.skill-header span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: var(--dark-card);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF4D8C 100%);
    border-radius: 10px;
    transition: width 1s ease;
}

/* What I Do Section - Alternating Layout */
.what-i-do {
    padding: 100px 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.what-i-do::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 22, 84, 0.1) 0%, transparent 70%);
    top: 10%;
    right: -200px;
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.what-i-do::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 22, 84, 0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -150px;
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

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

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .section-header h2 {
        font-size: 28px;
    }
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.03) 0%, transparent 100%);
    border-radius: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 22, 84, 0.05), transparent);
    transition: left 0.7s ease;
}

.service-row:hover::before {
    left: 100%;
}

.service-row:hover {
    border-color: rgba(255, 22, 84, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 22, 84, 0.15);
}

.service-row-right {
    grid-template-columns: 1fr 1fr;
}

.service-row-right .service-content {
    order: 2;
}

.service-row-right .service-visual {
    order: 1;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-number-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF4D8C 100%);
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 25px;
}

.service-tech-stack {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tech-badge {
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.tech-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

.tech-badge:hover {
    background: rgba(255, 22, 84, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

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

.service-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.15) 0%, rgba(255, 22, 84, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    color: var(--primary-color);
    position: relative;
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 22, 84, 0.2);
}

.service-row:hover .service-icon-large {
    transform: scale(1.1) rotate(15deg);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(0.9);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1);
    }
}

@media (max-width: 1024px) {
    .container-wide {
        padding: 0 20px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
        margin-bottom: 40px;
    }

    .service-row-right {
        grid-template-columns: 1fr;
    }

    .service-row-right .service-content,
    .service-row-right .service-visual {
        order: initial;
    }

    .service-icon-large {
        width: 150px;
        height: 150px;
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .service-row {
        padding: 30px 20px;
    }

    .service-content h3 {
        font-size: 26px;
    }

    .service-icon-large {
        width: 120px;
        height: 120px;
        font-size: 55px;
    }
}

/* Education & Experience Section */
.education-experience {
    padding: 80px 0;
}

.education-section,
.experience-section {
    margin-bottom: 80px;
}

.education-section h3,
.experience-section h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.education-card {
    background: var(--dark-card);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.education-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.education-card .year {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.education-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.experience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.experience-item {
    margin-bottom: 40px;
}

.experience-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.experience-item h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.experience-role {
    display: inline-block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.experience-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

.experience-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--dark-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.experience-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.experience-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 22, 84, 0.2);
}

/* GitHub Stats Section */
.github-stats {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.github-stat-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 20, 20, 0.8) 100%);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.github-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.github-stat-card:hover::before {
    opacity: 1;
}

.github-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 22, 84, 0.2);
}

.github-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF4D8C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--text-primary);
    transition: all 0.4s ease;
}

.github-stat-card:hover .github-icon {
    transform: scale(1.1) rotate(360deg);
}

.github-stat-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.github-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF4D8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.github-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.github-link:hover {
    color: var(--primary-color);
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 22, 84, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.brands-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.brand-card {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 20, 20, 0.8) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 22, 84, 0.2);
}

.brand-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF4D8C 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--text-primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.brand-card:hover .brand-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 22, 84, 0.4);
}

.brand-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.brand-card p {
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.brand-card:nth-child(1) .brand-icon {
    animation: float 3s ease-in-out infinite;
}

.brand-card:nth-child(2) .brand-icon {
    animation: float 3s ease-in-out infinite 0.2s;
}

.brand-card:nth-child(3) .brand-icon {
    animation: float 3s ease-in-out infinite 0.4s;
}

.brand-card:nth-child(4) .brand-icon {
    animation: float 3s ease-in-out infinite 0.6s;
}

.brand-card:nth-child(5) .brand-icon {
    animation: float 3s ease-in-out infinite 0.8s;
}

.brand-card:nth-child(6) .brand-icon {
    animation: float 3s ease-in-out infinite 1s;
}

.brand-card:nth-child(7) .brand-icon {
    animation: float 3s ease-in-out infinite 1.2s;
}

.brand-card:nth-child(8) .brand-icon {
    animation: float 3s ease-in-out infinite 1.4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
}

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

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.portfolio-item {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 22, 84, 0.3);
}

.portfolio-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.1) 0%, transparent 100%);
}

.portfolio-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-main-image {
    transform: scale(1.1);
}

.portfolio-image-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.portfolio-image-count i {
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .portfolio-image-count {
        padding: 6px 12px;
        font-size: 12px;
        top: 10px;
        right: 10px;
    }
}

.portfolio-item h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 25px 25px 10px;
}

@media (max-width: 600px) {
    .portfolio-item h3 {
        font-size: 18px;
        padding: 20px 20px 10px;
    }
}

.portfolio-meta {
    padding: 0 25px 25px;
}

@media (max-width: 600px) {
    .portfolio-meta {
        padding: 0 20px 20px;
    }
}

.portfolio-meta h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.portfolio-meta span {
    font-size: 13px;
    color: var(--text-secondary);
    display: block;
    line-height: 1.6;
}

/* My Skill Section */
.my-skill {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.skill-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.skill-card-item {
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.15) 0%, rgba(255, 22, 84, 0.02) 100%);
    padding: 45px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.skill-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.skill-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.skill-card-content h3 {
    font-size: 22px;
    font-weight: 700;
}

.skill-card-content span {
    font-size: 16px;
    font-weight: 600;
}

.skill-card-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.skill-card-link {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.skill-card-link:hover {
    color: var(--primary-color);
}

/* Client Reviews Section */
.client-reviews {
    padding: 100px 0;
    background: var(--dark-secondary);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-stat-item {
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(20, 20, 20, 0.8) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
}

.review-stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(255, 22, 84, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF4D8C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.review-stat-item:hover .stat-icon {
    transform: rotateY(360deg);
}

.review-stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF4D8C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.review-stat-item p {
    color: var(--text-secondary);
    font-size: 15px;
}

.stars {
    color: #FFD700;
    font-size: 16px;
    margin-top: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: var(--dark-card);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 22, 84, 0.5);
    box-shadow: 0 20px 40px rgba(255, 22, 84, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info {
    flex: 1;
}

.review-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.review-role {
    font-size: 14px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 8px;
}

.review-stars {
    color: #FFD700;
    font-size: 14px;
    display: flex;
    gap: 3px;
}

.review-platform {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-secondary);
}

.review-text {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 16px;
    font-style: italic;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.review-project,
.review-date {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-project i {
    color: var(--primary-color);
}

.reviews-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.1) 0%, transparent 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.reviews-cta p {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .reviews-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .review-card {
        padding: 25px;
    }

    .review-avatar {
        width: 60px;
        height: 60px;
    }

    .review-info h4 {
        font-size: 18px;
    }

    .review-text p {
        font-size: 15px;
    }

    .review-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .reviews-cta {
        padding: 35px 20px;
    }

    .reviews-cta p {
        font-size: 18px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--dark-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .contact-info h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .contact-info h2 {
        font-size: 26px;
    }
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--dark-card);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-detail-item i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 3px;
}

.contact-detail-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-detail-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--dark-card);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 35px;
    }
}

@media (max-width: 600px) {
    .contact-form {
        padding: 25px 20px;
    }
}

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 18px;
}

/* Blog Section */
.blog {
    padding: 80px 0;
}

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

.blog-card {
    background: var(--dark-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 22, 84, 0.1) 0%, transparent 100%);
}

.blog-meta-top {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
}

.blog-meta-top span {
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-link {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-content {
        gap: 30px;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.footer-logo span {
    color: #ffffff;
}

.footer-logo:hover {
    transform: translateX(5px);
}

.footer-logo svg {
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 22, 84, 0.3));
}

.footer-logo:hover svg {
    transform: rotate(-5deg) scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 22, 84, 0.5));
}

.footer-col h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.footer-col h3 span {
    display: block;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

@media (max-width: 900px) {
    .footer-newsletter {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .footer-newsletter {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-newsletter input {
        width: 100%;
    }
    
    .footer-newsletter button {
        width: 100%;
        height: 50px;
    }
}

.footer-newsletter input {
    flex: 1;
    padding: 14px 20px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
}

.footer-newsletter button {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #ff0040;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

/* Floating Actions Menu */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

@media (max-width: 600px) {
    .floating-actions {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
}

.action-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    animation: float-actions 3s ease-in-out infinite;
}

@media (max-width: 600px) {
    .action-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    }
}

.action-btn:nth-child(1) { animation-delay: 0s; }
.action-btn:nth-child(2) { animation-delay: 0.2s; }
.action-btn:nth-child(3) { animation-delay: 0.4s; }
.action-btn:nth-child(4) { animation-delay: 0.6s; }

@keyframes float-actions {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.chat-btn {
    background: var(--primary-color);
}

.github-btn {
    background: #333333;
}

.linkedin-btn {
    background: #0077b5;
}

.email-btn {
    background: #ea4335;
}

.action-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 22, 84, 0.4);
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.project-modal.active {
    display: flex;
}

@media (max-width: 900px) {
    .project-modal {
        padding: 10px;
        align-items: flex-start;
        overflow-y: auto;
    }
}

@media (max-width: 600px) {
    .project-modal {
        padding: 5px;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 1400px;
    width: 95%;
    max-height: 95vh;
    background: var(--dark-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 22, 84, 0.4);
}

.modal-body {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    height: 100%;
    max-height: 95vh;
    overflow: hidden;
}

@media (max-width: 1200px) {
    .modal-body {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .modal-body {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }
}

.modal-gallery {
    background: var(--dark-bg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 400px;
}

@media (max-width: 900px) {
    .modal-gallery {
        padding: 25px;
        min-height: 350px;
        max-height: 60vh;
    }
}

@media (max-width: 600px) {
    .modal-gallery {
        padding: 20px;
        min-height: 300px;
        max-height: 50vh;
    }
}

.gallery-main {
    position: relative;
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background: var(--dark-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-height: 600px;
}

@media (max-width: 900px) {
    .gallery-main {
        min-height: 250px;
    }
    
    .gallery-main img {
        max-height: 400px;
    }
}

@media (max-width: 600px) {
    .gallery-main {
        min-height: 200px;
    }
    
    .gallery-main img {
        max-height: 300px;
    }
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .thumbnail {
        width: 70px;
        height: 70px;
    }
}

.thumbnail:hover {
    opacity: 1;
}

.thumbnail.active {
    border-color: var(--primary-color);
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 40px;
    overflow-y: auto;
    max-height: 95vh;
}

@media (max-width: 900px) {
    .modal-info {
        padding: 25px;
        max-height: none;
    }
}

@media (max-width: 600px) {
    .modal-info {
        padding: 20px;
    }
}

.modal-category {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.modal-info h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .modal-info h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .modal-info h2 {
        font-size: 24px;
    }
}

.modal-info > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.modal-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
    .modal-technologies {
        gap: 6px;
    }
}

.tech-tag {
    background: rgba(255, 22, 84, 0.1);
    border: 1px solid rgba(255, 22, 84, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

@media (max-width: 600px) {
    .tech-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.modal-features {
    margin-bottom: 30px;
}

.modal-features h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-features ul {
    list-style: none;
    padding: 0;
}

.modal-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.modal-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 600px) {
    .modal-features li {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .modal-features li::before {
        font-size: 16px;
    }
}

.modal-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .modal-links {
        flex-direction: column;
    }
    
    .modal-links .btn-primary,
    .modal-links .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .stats-wrapper,
    .skills-wrapper,
    .experience-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu,
    .nav-social {
        display: none;
    }

    .typing-text,
    .hero-text h1 {
        font-size: 42px;
    }

    .hero-subtitle-main {
        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 20px;
    }

    .about-me-wrapper {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .github-stats-wrapper {
        grid-template-columns: 1fr;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 15px;
    }

    .services-grid,
    .stats-grid,
    .education-grid,
    .skill-cards,
    .reviews-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .action-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .hamburger {
        padding: 10px;
    }

    .modal-content {
        width: 98%;
        max-height: 98vh;
        border-radius: 15px;
    }

    .modal-body {
        grid-template-columns: 1fr;
        max-height: 98vh;
    }

    .modal-gallery {
        padding: 15px;
        min-height: 250px;
        max-height: 45vh;
    }

    .modal-info {
        padding: 15px;
        max-height: none;
    }

    .modal-info h2 {
        font-size: 20px;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 10px;
        right: 10px;
    }

    .gallery-prev,
    .gallery-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .modal-features h3 {
        font-size: 18px;
    }

    .modal-features li {
        font-size: 14px;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
