/* Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Lazy Loading Styles */
img[data-src],
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img.lazy-loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* Lazy loading placeholder */
img[data-src]:not(.lazy-loaded) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

.section-padding {
    padding: 100px 0;
}

/* Utility Classes */
.highlight {
    color: #6c5ce7;
}

/* Modern Button System - GitHub/Stripe/Notion tarzı */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
    background: linear-gradient(135deg, #5855f6 0%, #7c3aed 50%, #9333ea 100%);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: 1.5px solid rgba(156, 163, 175, 0.3);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: #1f2937;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: rgba(156, 163, 175, 0.4);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: #5a4fcf;
    transform: scale(1.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.section-header p {
    font-size: 1.1rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.nav-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #6c5ce7;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.25);
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35);
}

.nav-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
}

@media (max-width: 768px) {
    .nav-logo h3 {
        font-size: 1.4rem;
    }
    
    .nav-logo-img {
        width: 38px;
        height: 38px;
    }
}

/* Legacy: previously colored last name in heading; now brand uses custom parts */
.nav-logo h3 span {
    color: #6c5ce7;
}

/* Brand text next to logo */
.brand-text {
    display: flex;
    align-items: baseline;
    gap: 0;
    font-weight: 800;
    font-size: 1.85rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.brand-me,
.brand-su {
    color: #111827;
}
.brand-x {
    color: #6c5ce7;
    margin: 0 1px;
}

@media (max-width: 768px) {
    .brand-text { font-size: 1.5rem; }
}

/* Creative brand badge next to logo */
.brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.25);
    transition: all 0.3s ease;
}

.brand-chip:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(108, 92, 231, 0.35);
}

@media (max-width: 768px) {
    .brand-chip {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(162, 155, 254, 0.05) 100%);
    padding: 8px 10px;
    border-radius: 50px;
    border: 1px solid rgba(108, 92, 231, 0.1);
    backdrop-filter: blur(10px);
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 20px;
    display: block;
    border-radius: 25px;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.2);
}

/* Auth CTAs in nav: color-tuned hovers */
.nav-link.login-cta::before {
    background: linear-gradient(135deg, #2ea0ff 0%, #007bff 100%);
}
.nav-link.signup-cta::before {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Small helper line under hero for auth links */
.auth-cta-line{
    margin-top: 8px;
    color: #64748b;
    font-size: 14px;
    text-align: center;
}
.auth-cta-line a{ text-decoration: none; font-weight: 600; }
.auth-cta-line a.login{ color: #007bff; }
.auth-cta-line a.signup{ color: #16a34a; }
.auth-cta-line a:hover{ text-decoration: underline; }

/* Navbar Search Button */
.nav-search-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.1) 0%, 
        rgba(162, 155, 254, 0.1) 100%);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6c5ce7;
    font-size: 16px;
}

.nav-search-btn:hover {
    background: linear-gradient(135deg, 
        rgba(108, 92, 231, 0.15) 0%, 
        rgba(162, 155, 254, 0.15) 100%);
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.15);
}

.nav-search-btn:active {
    transform: translateY(0) scale(1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d3436;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e6ff 100%);
    padding: 120px 0 80px; /* Normal padding restored */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ddd6fe" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero-container {
        padding: 0 32px;
        gap: 48px;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 80px;
        padding: 0 40px;
    }
}

.hero-content h1 {
    font-size: clamp(1.75rem, 6vw, 4rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1f2937 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-container {
    margin-bottom: 24px;
}

.typing-container h2 {
    font-size: clamp(1.25rem, 4vw, 2.25rem);
    font-weight: 600;
    color: #4b5563;
    line-height: 1.3;
}

#typing-text {
    color: #6c5ce7;
}

.cursor {
    animation: blink 1s infinite;
}

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

.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    color: #6b7280;
    max-width: 100%;
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-content p {
        max-width: 540px;
        margin-bottom: 48px;
    }
}

/* Hero Search Button */
.hero-search-container {
    margin: 32px 0;
}

.hero-search-btn {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: 60px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(108, 92, 231, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.hero-search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(108, 92, 231, 0.05), 
        transparent);
    transition: left 0.6s ease;
}

.hero-search-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(108, 92, 231, 0.4);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 15px 35px rgba(108, 92, 231, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.hero-search-btn:hover::before {
    left: 100%;
}

.hero-search-btn:active {
    transform: translateY(-1px) scale(1);
}

.hero-search-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.hero-search-btn:hover .hero-search-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.4);
}

.hero-search-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-search-text {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.hero-search-hint {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    line-height: 1.4;
}

.hero-search-action {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 92, 231, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    color: #6c5ce7;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-search-btn:hover .hero-search-action {
    background: rgba(108, 92, 231, 0.15);
    transform: translateX(4px);
}

.hero-search-action i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-search-btn:hover .hero-search-action i {
    transform: translateX(3px);
}

/* Hero Search Responsive */
@media (max-width: 768px) {
    .hero-search-btn {
        padding: 16px 20px;
        border-radius: 50px;
        gap: 16px;
    }
    
    .hero-search-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .hero-search-text {
        font-size: 16px;
    }
    
    .hero-search-hint {
        font-size: 13px;
    }
    
    .hero-search-action {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-search-btn {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    
    .hero-search-content {
        text-align: center;
    }
    
    .hero-search-action {
        align-self: stretch;
        justify-content: center;
    }
}

/* Modern Button Group Layout */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    align-items: stretch;
    width: 100%;
}

/* Large devices - horizontal layout */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        width: auto;
    }
}

/* Button size improvements */
.hero-buttons .btn {
    width: 100%;
    min-width: unset;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 24px;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons .btn {
        width: auto;
        min-width: 180px;
        font-size: 16px;
        padding: 16px 28px;
    }
}

.hero-buttons .btn-primary {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}

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

/* Hero Logo Showcase */
.hero-logo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 20px;
}

.logo-container-hero {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatLogo 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .logo-container-hero {
        width: 280px;
        height: 280px;
    }
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-2deg); }
}

/* Logo Glow Effect */
.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    filter: blur(20px);
}

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

/* Main Logo Image */
.hero-logo-img {
    position: relative;
    z-index: 2;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 
        0 0 0 8px rgba(108, 92, 231, 0.1),
        0 20px 60px rgba(108, 92, 231, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .hero-logo-img {
        width: 180px;
        height: 180px;
    }
}

.hero-logo-img:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        0 0 0 12px rgba(108, 92, 231, 0.2),
        0 25px 80px rgba(108, 92, 231, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.7);
}

/* Animated Rings */
.logo-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(108, 92, 231, 0.3);
    border-radius: 50%;
    animation: expandRing 4s ease-out infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation-delay: 0s;
}

.ring-2 {
    width: 350px;
    height: 350px;
    animation-delay: 1.3s;
    border-color: rgba(162, 155, 254, 0.25);
}

.ring-3 {
    width: 400px;
    height: 400px;
    animation-delay: 2.6s;
    border-color: rgba(99, 102, 241, 0.2);
}

@media (max-width: 768px) {
    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 260px; height: 260px; }
    .ring-3 { width: 300px; height: 300px; }
}

@keyframes expandRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Floating Tech Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .float-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

.float-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.icon-1 {
    top: 10%;
    left: 0%;
    color: #e34c26;
    animation: orbit1 12s linear infinite;
}

.icon-2 {
    top: 15%;
    right: 5%;
    color: #264de4;
    animation: orbit2 14s linear infinite;
}

.icon-3 {
    bottom: 15%;
    left: 5%;
    color: #f7df1e;
    animation: orbit3 13s linear infinite;
}

.icon-4 {
    bottom: 10%;
    right: 0%;
    color: #61dafb;
    animation: orbit4 15s linear infinite;
}

.icon-5 {
    top: 45%;
    left: -10%;
    color: #68a063;
    animation: orbit5 11s linear infinite;
}

.icon-6 {
    top: 45%;
    right: -10%;
    color: #f24e1e;
    animation: orbit6 16s linear infinite;
}

@keyframes orbit1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(90deg); }
    50% { transform: translate(0, -25px) rotate(180deg); }
    75% { transform: translate(-10px, -15px) rotate(270deg); }
}

@keyframes orbit2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, 15px) rotate(-90deg); }
    50% { transform: translate(0, 25px) rotate(-180deg); }
    75% { transform: translate(10px, 15px) rotate(-270deg); }
}

@keyframes orbit3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -20px) scale(1.1); }
}

@keyframes orbit4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, 20px) scale(1.1); }
}

@keyframes orbit5 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

@keyframes orbit6 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(30px) rotate(-180deg); }
}

/* Logo Subtitle */
.logo-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(162, 155, 254, 0.1));
    border-radius: 24px;
    border: 2px solid rgba(108, 92, 231, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 600;
    color: #6c5ce7;
    font-size: 1rem;
    box-shadow: 0 8px 16px rgba(108, 92, 231, 0.15);
}

@media (max-width: 768px) {
    .logo-subtitle {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff88;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.profile-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

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

.profile-img {
    text-align: center;
    margin-bottom: 20px;
}

/* Yaratıcı Avatar Tasarımı */
.avatar-container {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    background: #000;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 2;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: avatarPulse 3s ease-in-out infinite;
    border: 4px solid #fff;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
}

.avatar-face {
    width: 120px;
    height: 120px;
    background: #fdbcb4;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    margin-top: -20px;
}

.avatar-hair {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 80px;
    background: #2d3436;
    border-radius: 70px 70px 40px 40px;
    z-index: 1;
}

.eyes {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
}

.eye {
    width: 15px;
    height: 15px;
    background: #2d3436;
    border-radius: 50%;
    position: absolute;
    animation: blink 4s infinite;
}

.eye.left { left: 15px; }
.eye.right { right: 15px; }

.glasses {
    position: absolute;
    top: -5px;
    left: -10px;
    width: 100px;
    height: 40px;
}

.lens {
    width: 35px;
    height: 35px;
    border: 3px solid #2d3436;
    border-radius: 50%;
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
}

.left-lens { left: 0; }
.right-lens { right: 0; }

.bridge {
    position: absolute;
    top: 15px;
    left: 38px;
    width: 24px;
    height: 3px;
    background: #2d3436;
    border-radius: 2px;
}

.nose {
    position: absolute;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #f0a899;
    border-radius: 50%;
}

.mouth {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 12px;
    border: 2px solid #2d3436;
    border-top: none;
    border-radius: 0 0 25px 25px;
    background: #ff6b6b;
}

.avatar-body {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 80px;
    z-index: 0;
}

.shirt {
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    border-radius: 10px 10px 0 0;
    margin: 0 auto;
    position: relative;
}

.coding-setup {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
}

.terminal-screen {
    width: 110px;
    height: 70px;
    background: #0d1117;
    border-radius: 6px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid #30363d;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.terminal-header {
    background: #161b22;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    border-bottom: 1px solid #30363d;
}

.terminal-buttons {
    display: flex;
    gap: 2px;
}

.terminal-buttons span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
}

.btn-close { background: #ff5f56; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #27ca3f; }

.terminal-title {
    font-size: 3px;
    color: #7d8590;
    font-family: 'Courier New', monospace;
}

.terminal-body {
    padding: 4px 3px;
    height: 56px;
    overflow: hidden;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.code-line {
    font-size: 3px;
    line-height: 4px;
    margin: 1px 0;
    color: #00ff00;
    display: flex;
    align-items: center;
    animation: fadeInCode 3s infinite;
}

.code-line:nth-child(1) { animation-delay: 0s; }
.code-line:nth-child(2) { animation-delay: 0.5s; }
.code-line:nth-child(3) { animation-delay: 1s; }
.code-line:nth-child(4) { animation-delay: 1.5s; }
.code-line:nth-child(5) { animation-delay: 2s; }
.code-line:nth-child(6) { animation-delay: 2.5s; }
.code-line:nth-child(7) { animation-delay: 3s; }

.prompt { color: #00ff00; font-weight: bold; }
.command { color: #58a6ff; }
.keyword { color: #ff7b72; }
.variable { color: #ffa657; }
.function { color: #d2a8ff; }
.string { color: #a5f3fc; }
.operator { color: #00ff00; }
.bracket { color: #f0f6fc; }
.comment { color: #8b949e; font-style: italic; }
.text { color: #00ff00; }
.indent { width: 6px; }

.cursor {
    color: #00ff00;
    animation: blink 1s infinite;
    font-weight: bold;
}

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

@keyframes fadeInCode {
    0% { opacity: 0; transform: translateX(-10px); }
    20% { opacity: 1; transform: translateX(0); }
    80% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(10px); }
}

.keyboard {
    width: 120px;
    height: 8px;
    background: #30363d;
    border-radius: 0 0 4px 4px;
    margin: 2px auto 0;
    position: relative;
}

.keyboard-row {
    display: flex;
    gap: 2px;
    padding: 1px 4px;
}

.key {
    width: 8px;
    height: 6px;
    background: #21262d;
    border-radius: 1px;
    border: 1px solid #30363d;
}

.key.active {
    background: #238636;
    box-shadow: 0 0 4px rgba(35, 134, 54, 0.5);
    animation: keyPress 2s infinite;
}

@keyframes keyPress {
    0%, 90% { transform: translateY(0); }
    10% { transform: translateY(1px); }
}

/* Tech Icons Orbit */
.tech-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    animation: rotate 20s linear infinite;
}

.tech-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: counterRotate 20s linear infinite;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.tech-icon i {
    font-size: 1.4rem;
}

.html-icon {
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}
.html-icon i { color: #e34f26; }

.css-icon {
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
}
.css-icon i { color: #1572b6; }

.js-icon {
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}
.js-icon i { color: #f7df1e; background: #2d3436; border-radius: 3px; padding: 2px; }

.react-icon {
    top: 50%;
    left: -22px;
    transform: translateY(-50%);
}
.react-icon i { color: #61dafb; }

/* Animasyonlar */
@keyframes avatarPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 25px 50px rgba(108, 92, 231, 0.4);
    }
}

@keyframes blink {
    0%, 90%, 100% { height: 15px; }
    95% { height: 2px; }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f3ff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(162, 155, 254, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.about .container {
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 50px;
    color: #6c5ce7;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-wrapper {
    display: grid;
    gap: 40px;
    margin-top: 50px;
}

/* Profile Card */
.about-profile-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6c5ce7 0%, #a29bfe 100%);
}

.profile-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-rings {
    position: absolute;
    width: 100%;
    height: 100%;
}

.profile-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: 50%;
    animation: expandRing 3s ease-out infinite;
}

.profile-ring:nth-child(1) {
    width: 180px;
    height: 180px;
    animation-delay: 0s;
}

.profile-ring:nth-child(2) {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

.profile-ring:nth-child(3) {
    width: 220px;
    height: 220px;
    animation-delay: 2s;
}

.profile-avatar {
    position: relative;
    z-index: 2;
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.profile-avatar:hover .profile-img {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.4);
}

.profile-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: white;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d3436;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00d95f;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.profile-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 20px;
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge-primary {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.badge-secondary {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.3);
}

.badge-tertiary {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.about-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6c5ce7 0%, #a29bfe 100%);
    opacity: 1;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4);
}

.about-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

.about-card p {
    color: #636e72;
    line-height: 1.7;
    font-size: 1rem;
}

/* Specific Card Styles */
.story-card .card-icon {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.mission-card .card-icon {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}

.expertise-card .card-icon {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.expertise-list {
    display: grid;
    gap: 12px;
    margin-top: 15px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f8f9ff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    transform: translateX(5px);
}

.expertise-item i {
    color: #6c5ce7;
    font-size: 1.1rem;
}

.expertise-item span {
    color: #2d3436;
    font-weight: 500;
}

/* Stats Grid */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(162, 155, 254, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.15);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

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

.stat-content h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3436;
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-size: 2rem;
    color: #6c5ce7;
    font-weight: 700;
    margin-left: 5px;
}

.stat-content p {
    color: #636e72;
    font-weight: 500;
    margin-top: 10px;
    font-size: 1rem;
}

/* Quick Info */
.about-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.quick-info-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.quick-info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.12);
}

.quick-info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c5ce7;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.85rem;
    color: #95a5a6;
    font-weight: 500;
}

.info-value {
    font-size: 1.05rem;
    color: #2d3436;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .about-profile-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .profile-image-wrapper {
        justify-self: center;
    }
    
    .profile-info h3 {
        font-size: 2rem;
    }
    
    .profile-badges {
        justify-content: center;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 25px 20px;
    }
    
    .about-card h4 {
        font-size: 1.3rem;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-content h3 {
        font-size: 2.5rem;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-quick-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quick-info-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .about-wrapper {
        gap: 30px;
    }
    
    .about-profile-card {
        padding: 25px 15px;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    .profile-ring:nth-child(1) { width: 140px; height: 140px; }
    .profile-ring:nth-child(2) { width: 160px; height: 160px; }
    .profile-ring:nth-child(3) { width: 180px; height: 180px; }
    
    .profile-info h3 {
        font-size: 1.6rem;
    }
    
    .profile-title {
        font-size: 1rem;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .about-card {
        padding: 20px 15px;
    }
    
    .about-card h4 {
        font-size: 1.2rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .expertise-item {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .expertise-item i {
        font-size: 1rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .stat-content h3 {
        font-size: 2.2rem;
    }
    
    .stat-plus {
        font-size: 1.6rem;
    }
    
    .stat-content p {
        font-size: 0.95rem;
    }
    
    .quick-info-item {
        padding: 18px 15px;
    }
    
    .quick-info-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .info-label {
        font-size: 0.8rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
}

/* Skills Section */
.skills {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e6ff 50%, #f0f3ff 100%);
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ddd6fe" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.skills .container {
    position: relative;
    z-index: 1;
}

.skills-container {
    display: grid;
    gap: 60px;
}

/* Main Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.skill-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #6c5ce7;
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-left-color: #a29bfe;
}

.skill-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.25);
}

.skill-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

.skill-card p {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

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

.tech-badge {
    background: #f8f9ff;
    color: #6c5ce7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: #6c5ce7;
    color: white;
    transform: scale(1.05);
}

/* Tech Badge Colors */
.tech-badge.html { background-color: #fff2f0; color: #e34f26; }
.tech-badge.css { background-color: #f0f8ff; color: #1572b6; }
.tech-badge.js { background-color: #fffbf0; color: #f7df1e; }
.tech-badge.react { background-color: #f0fffe; color: #61dafb; }
.tech-badge.figma { background-color: #fff0f0; color: #f24e1e; }
.tech-badge.photoshop { background-color: #f0f7ff; color: #31a8ff; }
.tech-badge.bootstrap { background-color: #f8f0ff; color: #7952b3; }
.tech-badge.git { background-color: #fff5f0; color: #f05032; }
.tech-badge.vscode { background-color: #f0f7ff; color: #007acc; }

.skill-level-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.level-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.level-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 10px;
    width: var(--level, 0%);
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.level-text {
    font-size: 1rem;
    font-weight: 600;
    color: #6c5ce7;
    min-width: 40px;
}

/* Technical Skills Showcase */
.tech-showcase {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.08);
}

.showcase-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 30px;
    text-align: center;
}

.tech-progress-list {
    display: grid;
    gap: 25px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: #f0f3ff;
    transform: translateX(5px);
}

.tech-info {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.tech-info i {
    font-size: 1.5rem;
    width: 30px;
}

.tech-info .fab.fa-html5 { color: #e34f26; }
.tech-info .fab.fa-css3-alt { color: #1572b6; }
.tech-info .fab.fa-js-square { color: #f7df1e; }
.tech-info .fab.fa-react { color: #61dafb; }
.tech-info .fab.fa-figma { color: #f24e1e; }
.tech-info .fab.fa-git-alt { color: #f05032; }

.tech-info span {
    font-weight: 500;
    color: #2d3436;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 10px;
    width: 0;
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c5ce7;
    min-width: 40px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .skill-card {
        padding: 30px;
    }
    
    .tech-showcase {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-card {
        padding: 25px;
    }
    
    .skill-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tech-showcase {
        padding: 25px;
    }
    
    .tech-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .tech-info {
        min-width: auto;
    }
    
    .progress-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .skill-card {
        padding: 20px;
    }
    
    .skill-card h3 {
        font-size: 1.3rem;
    }
    
    .tech-showcase {
        padding: 20px;
    }
    
    .showcase-title {
        font-size: 1.5rem;
    }
}

/* Packages Section */
.packages {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f3ff 100%);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.packages-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.packages-filters .filter-btn {
    padding: 12px 28px;
    background: white;
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: 50px;
    color: #636e72;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.packages-filters .filter-btn:hover {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border-color: #6c5ce7;
    color: #6c5ce7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.15);
}

.packages-filters .filter-btn.active {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border-color: #6c5ce7;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

/* Package Card */
.package-item {
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.package-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6c5ce7 0%, #a29bfe 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.2);
    border-color: rgba(108, 92, 231, 0.3);
}

.package-item:hover::before {
    opacity: 1;
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.package-badge.popular {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

.package-badge.featured {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.package-badge.premium {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
}

.package-badge.custom {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

/* Package Icon */
.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c5ce7;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.package-item:hover .package-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

/* Package Header */
.package-header {
    margin-bottom: 25px;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 12px;
}

.package-description {
    color: #636e72;
    line-height: 1.6;
    font-size: 1rem;
}

/* Package Price */
.package-price {
    margin-bottom: 30px;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(162, 155, 254, 0.05) 100%);
    border-radius: 15px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.price-period {
    color: #95a5a6;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}

/* Package Features */
.package-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.package-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f3ff;
    transition: all 0.3s ease;
}

.package-features .feature-item:last-child {
    border-bottom: none;
}

.package-features .feature-item:hover {
    padding-left: 5px;
    background: rgba(108, 92, 231, 0.02);
}

.package-features .feature-item i {
    color: #00b894;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.package-features .feature-item span {
    color: #2d3436;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Package Footer */
.package-footer {
    margin-top: auto;
}

.btn-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.4);
}

.btn-package i {
    transition: transform 0.3s ease;
}

.btn-package:hover i {
    transform: translateX(5px);
}

.btn-package.primary {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    box-shadow: 0 8px 20px rgba(253, 121, 168, 0.3);
}

.btn-package.primary:hover {
    box-shadow: 0 12px 30px rgba(253, 121, 168, 0.4);
}

.btn-package.premium {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-package.custom {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    box-shadow: 0 8px 20px rgba(0, 184, 148, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .package-item {
        padding: 35px 25px;
    }
    
    .package-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .package-header h3 {
        font-size: 1.6rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .packages-filters {
        gap: 10px;
    }
    
    .packages-filters .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .package-item {
        padding: 30px 20px;
    }
    
    .package-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .package-header h3 {
        font-size: 1.4rem;
    }
    
    .package-description {
        font-size: 0.95rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .package-features .feature-item {
        padding: 10px 0;
    }
    
    .package-features .feature-item span {
        font-size: 0.9rem;
    }
    
    .btn-package {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}

/* Skills Summary Cards */
.skills-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.summary-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #6c5ce7;
}

.summary-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.summary-card:hover .summary-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.summary-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 12px;
}

.summary-card p {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 20px;
}

.summary-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.summary-techs span {
    background: #f8f9ff;
    color: #6c5ce7;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.summary-techs span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.summary-techs span:hover::before {
    left: 100%;
}

.summary-techs span:hover {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
    border-color: #6c5ce7;
}

/* Subtle Floating Animation */
/* Skills Card Animations - Simplified */


/* === Gereksiz Skill Modal CSS Kaldırıldı === */

/* Toast Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.skill-toast {
    font-family: 'Poppins', sans-serif;
}

.toast-content {
    text-align: center;
}

.toast-level {
    margin-top: 5px;
    color: #6c5ce7;
    font-size: 0.9rem;
}

/* Modal Animations - Keep minimal ones */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Remove conflicting styles - already defined above */

/* Responsive Design for Skills */
@media (max-width: 1024px) {
    .skills-summary {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .summary-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    
    .skills-summary {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .summary-card {
        padding: 25px;
        margin: 0 10px;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .summary-techs span {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .skills-summary {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .summary-card {
        padding: 20px;
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .summary-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .summary-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .summary-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .summary-techs span {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

.skill-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
}

/* === Skill Modal Media Query Kaldırıldı === */

@media (max-width: 480px) {
    .skills-summary {
        margin-top: 30px;
    }
    
    .summary-card {
        padding: 18px;
    }
}

/* Services Section */
.services {
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

.service-card p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    color: #636e72;
    position: relative;
    padding-left: 25px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6c5ce7;
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: white;
}

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

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 20px;
}

.contact-info p {
    color: #636e72;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 10px;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method h4 {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 5px;
}

.contact-method p {
    color: #636e72;
    margin: 0;
}

.social-links h4 {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #5a4fcf;
    transform: translateY(-3px);
}

.contact-form-container {
    background: #f8f9ff;
    padding: 40px;
    border-radius: 15px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c5ce7;
}

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

/* Footer */
.footer {
    background: #2d3436;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-section h3 span {
    color: #6c5ce7;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #a29bfe;
}

.footer-section p {
    color: #b2bec3;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: #6c5ce7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #a29bfe;
    transform: translateY(-3px);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a29bfe;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: #6c5ce7;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #636e72;
    padding-top: 20px;
    text-align: center;
    color: #b2bec3;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #6c5ce7;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #5a4fcf;
    transform: translateY(-3px);
}

/* ==========================================
   MODERN SEARCH SYSTEM
   ========================================== */

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    width: 100%;
    max-width: 700px;
    margin: 80px auto 0;
    background: white;
    border-radius: 24px;
    box-shadow: 
        0 40px 120px rgba(0, 0, 0, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: searchSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes searchSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Search Header */
.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.search-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 600;
    font-size: 16px;
}

.search-brand i {
    color: #667eea;
    font-size: 18px;
}

.search-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.search-close:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.05);
}

/* Search Input */
.search-input-container {
    padding: 0 24px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.search-input-wrapper:focus-within {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-icon {
    position: absolute;
    left: 16px;
    color: #9ca3af;
    font-size: 18px;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within .search-icon {
    color: #667eea;
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 16px 50px 16px 50px;
    font-size: 18px;
    color: #1e293b;
    outline: none;
    font-weight: 400;
}

.search-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.search-voice,
.search-clear {
    position: absolute;
    right: 50px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
}

.search-clear {
    right: 16px;
    display: none;
}

.search-voice:hover,
.search-clear:hover {
    background: #e2e8f0;
    color: #374151;
}

/* Search Suggestions */
.search-suggestions {
    max-height: 400px;
    overflow-y: auto;
    padding-bottom: 16px;
}

.search-suggestion-group {
    margin-bottom: 20px;
}

.suggestion-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    padding: 0 8px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 4px;
}

.suggestion-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transform: translateX(4px);
}

.suggestion-icon {
    width: 18px;
    font-size: 14px;
    color: #667eea;
}

.suggestion-icon.hot {
    color: #ef4444;
    animation: pulse 2s ease-in-out infinite;
}

.suggestion-icon.trending {
    color: #10b981;
}

.suggestion-item span {
    color: #374151;
    font-weight: 500;
    font-size: 15px;
}

/* Search Results */
.search-results {
    display: none;
    max-height: 400px;
    overflow-y: auto;
    padding: 0 16px 16px;
}

.search-results-header {
    padding: 12px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 6px;
    border: 1px solid transparent;
}

.search-result-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.result-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.result-content {
    flex: 1;
    min-width: 0;
}

.result-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.4;
}

.result-title mark {
    background: linear-gradient(120deg, #fef3c7 0%, #fcd34d 100%);
    color: #92400e;
    padding: 1px 3px;
    border-radius: 3px;
    font-weight: 700;
}

.result-description {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 6px;
    line-height: 1.4;
}

.result-description mark {
    background: linear-gradient(120deg, #dbeafe 0%, #93c5fd 100%);
    color: #1d4ed8;
    padding: 1px 3px;
    border-radius: 3px;
    font-weight: 600;
}

.result-category {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.result-arrow {
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.search-result-item:hover .result-arrow {
    color: #667eea;
    transform: translateX(4px);
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.no-results i {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
}

.no-results p {
    font-size: 14px;
    line-height: 1.5;
}

/* Search Footer */
.search-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.search-shortcuts {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shortcut-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.shortcut-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6b7280;
}

.shortcut-item kbd {
    background: white;
    color: #374151;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-credits {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-search-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .search-container {
        margin: 16px;
        max-width: calc(100% - 32px);
        border-radius: 20px;
    }
    
    .search-header {
        padding: 16px 20px 12px;
    }
    
    .search-brand {
        font-size: 15px;
    }
    
    .search-brand i {
        font-size: 16px;
    }
    
    .search-close {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .search-input-container {
        padding: 0 20px;
    }
    
    .search-input {
        font-size: 16px;
        padding: 14px 45px 14px 45px;
    }
    
    .search-suggestions {
        max-height: 300px;
        padding-bottom: 12px;
    }
    
    .suggestion-item {
        padding: 14px 20px;
        min-height: 48px;
    }
    
    .search-result-item {
        padding: 14px 20px;
        gap: 12px;
        min-height: 48px;
    }
    
    .search-footer {
        padding: 12px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .search-shortcuts {
        flex-wrap: wrap;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .search-overlay {
        padding: 0;
    }
    
    .search-container {
        margin: 0;
        max-width: 100%;
        border-radius: 0;
        min-height: 100vh;
        margin: 0;
        animation: searchSlideUp 0.3s ease-out;
    }
    
    @keyframes searchSlideUp {
        from {
            transform: translateY(100%);
        }
        to {
            transform: translateY(0);
        }
    }
    
    .search-header {
        padding: 16px;
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
    }
    
    .search-brand {
        font-size: 14px;
    }
    
    .search-close {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .search-input-container {
        padding: 0 16px;
    }
    
    .search-input {
        font-size: 16px;
        padding: 14px 42px 14px 42px;
    }
    
    .search-icon {
        left: 12px;
        font-size: 16px;
    }
    
    .search-voice {
        right: 42px;
        width: 36px;
        height: 36px;
    }
    
    .search-clear {
        right: 12px;
        width: 36px;
        height: 36px;
    }
    
    .search-suggestions {
        padding: 0 8px 12px;
        max-height: calc(100vh - 200px);
    }
    
    .suggestion-item {
        padding: 12px 16px;
        min-height: 48px;
    }
    
    .search-results {
        padding: 0 8px 12px;
        max-height: calc(100vh - 200px);
    }
    
    .search-result-item {
        padding: 12px 16px;
        min-height: 48px;
    }
    
    .search-footer {
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
    
    .search-shortcuts {
        display: none; /* Hide keyboard shortcuts on mobile */
    }
    
    .search-credits {
        font-size: 11px;
    }
}

/* ==========================================
   AI ASSISTANT CHAT WIDGET
   ========================================== */

/* AI Assistant Highlight Animation */
@keyframes highlight {
    0% { background-color: transparent; }
    50% { background-color: rgba(102, 126, 234, 0.1); }
    100% { background-color: transparent; }
}

.ai-assistant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

/* Assistant Toggle Button */
.assistant-toggle {
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.assistant-toggle:hover {
    transform: translateY(-2px);
}

.assistant-toggle:active {
    transform: translateY(0) scale(0.95);
}

.assistant-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    border: 3px solid white;
}

/* Avatar image layering */
.assistant-avatar-img,
.assistant-avatar-img-small,
.assistant-avatar-img-tiny {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Hide legacy vector face when image present */
.assistant-avatar .avatar-face,
.assistant-avatar-small .avatar-face-small,
.assistant-avatar-tiny .avatar-face-tiny { display: none; }

.assistant-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

/* Animated Avatar Face */
.avatar-face {
    position: relative;
    width: 40px;
    height: 40px;
}

.avatar-eyes {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.eye {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 3s infinite;
}

.avatar-mouth {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    border: 2px solid white;
    border-top: none;
    border-radius: 0 0 12px 12px;
    animation: smile 2s ease-in-out infinite;
}

/* Pulse Animation */
.pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-ring-2 {
    animation-delay: 1s;
    border-color: rgba(118, 75, 162, 0.3);
}

/* Enhanced Status Bubble */
.assistant-status {
    position: absolute;
    bottom: 85px;
    right: -5px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.95) 50%, 
        rgba(241, 245, 249, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(102, 126, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    width: 320px;
    opacity: 0;
    transform: translateY(15px) scale(0.85);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1001;
    overflow: hidden;
}

.assistant-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #667eea 0%, 
        #764ba2 50%, 
        #667eea 100%);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.assistant-status::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.status-header {
    display: flex;
    align-items: center;
    padding: 16px 20px 12px;
    gap: 12px;
}

.status-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

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

.status-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: -0.025em;
}

.status-subtitle {
    font-size: 13px;
    color: #10b981;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    position: relative;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    background: #10b981;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.status-content {
    padding: 0 20px 18px;
}

.status-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

/* Interactive Feature Item Hover */
.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.05);
    color: #667eea;
    transform: translateX(4px);
}

.feature-item i {
    width: 16px;
    color: #667eea;
    font-size: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
    color: #5a67d8;
}.status-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.status-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.status-cta:hover::before {
    left: 100%;
}

.cta-text {
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.cta-arrow {
    color: white;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.status-cta:hover .cta-arrow {
    transform: translateX(3px);
}

/* Enhanced Hover Effects */
.assistant-toggle:hover .assistant-status {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.assistant-toggle:hover .assistant-avatar {
    transform: scale(1.05);
    box-shadow: 
        0 12px 40px rgba(102, 126, 234, 0.3),
        0 0 0 8px rgba(102, 126, 234, 0.1);
}

.assistant-toggle:hover .pulse-ring {
    animation-duration: 1.5s;
}

.assistant-toggle:hover .avatar-eyes .eye {
    animation: eyeBlink 3s ease-in-out infinite;
}

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.status-text {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.chat-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.assistant-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.assistant-avatar-small {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.avatar-face-small {
    position: relative;
    width: 25px;
    height: 25px;
}

.avatar-eyes-small {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.eye-small {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: blink 4s infinite;
}

.avatar-mouth-small {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 4px;
    border: 1px solid white;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.assistant-details h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.message {
    display: flex;
    gap: 10px;
    animation: messageSlide 0.3s ease-out;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    flex-shrink: 0;
}

.assistant-avatar-tiny {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.avatar-face-tiny {
    position: relative;
    width: 18px;
    height: 18px;
}

.avatar-eyes-tiny {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
}

.eye-tiny {
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
}

.avatar-mouth-tiny {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 3px;
    border: 1px solid white;
    border-top: none;
    border-radius: 0 0 6px 6px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.message-content {
    max-width: 260px;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.assistant-message .message-content {
    background: white;
    color: #374151;
    border-bottom-left-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.user-message .message-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom-right-radius: 6px;
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.3);
}

.message-content ul {
    margin: 8px 0;
    padding-left: 20px;
}

.message-content li {
    margin: 4px 0;
}

.message-time {
    align-self: flex-end;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

.user-message .message-time {
    align-self: flex-end;
    text-align: right;
}

/* Quick Actions */
.quick-actions {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.quick-action {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
}

.quick-action:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-1px);
}

.quick-action i {
    font-size: 14px;
}

/* Chat Input */
.chat-input-container {
    padding: 20px;
    background: white;
    border-top: 1px solid #e5e7eb;
}

.chat-input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    padding: 4px 4px 4px 20px;
    transition: all 0.2s ease;
}

.chat-input-wrapper:focus-within {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.chat-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 14px;
    color: #374151;
    padding: 12px 0;
    font-family: inherit;
}

.chat-input::placeholder {
    color: #9ca3af;
}

.send-button {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 14px;
}

.send-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.input-counter {
    text-align: right;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 8px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

@keyframes blink {
    0%, 90%, 100% {
        transform: scaleY(1);
    }
    95% {
        transform: scaleY(0.1);
    }
}

@keyframes smile {
    0%, 50%, 100% {
        border-radius: 0 0 12px 12px;
    }
    25%, 75% {
        border-radius: 0 0 20px 20px;
    }
}

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

/* Responsive Design for AI Assistant */
@media (max-width: 768px) {
    .ai-assistant {
        bottom: 20px;
        right: 20px;
        z-index: 9999;
    }
    
    .assistant-avatar {
        width: 60px;
        height: 60px;
        box-shadow: 0 6px 24px rgba(102, 126, 234, 0.35);
    }
    
    /* Hide status bubble completely on mobile - click to open chat */
    .assistant-status {
        display: none !important;
    }
    
    /* Chat window - full screen on mobile */
    .chat-window {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
        z-index: 10000;
    }
    
    .chat-header {
        padding: 16px 20px;
        border-radius: 0;
    }
    
    .assistant-details h4 {
        font-size: 16px;
    }
    
    .status-indicator {
        font-size: 12px;
    }
    
    .chat-messages {
        padding: 20px 16px;
        gap: 16px;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .message {
        max-width: 90%;
    }
    
    .message-content {
        max-width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
    }
    
    .message-content p {
        margin: 0 0 8px 0;
    }
    
    .message-content p:last-child {
        margin-bottom: 0;
    }
    
    .message-content ul {
        margin: 8px 0;
        padding-left: 20px;
    }
    
    .message-content li {
        margin: 4px 0;
        font-size: 13px;
    }
    
    .message-time {
        font-size: 11px;
        margin-top: 4px;
    }
    
    .quick-actions {
        padding: 16px;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }
    
    .quick-action {
        padding: 12px;
        font-size: 12px;
        min-height: 44px;
        justify-content: center;
        text-align: center;
    }
    
    .quick-action i {
        display: none;
    }
    
    .chat-input-container {
        padding: 16px;
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
    
    .chat-input-wrapper {
        padding: 4px 4px 4px 16px;
        border-radius: 24px;
    }
    
    .chat-input {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .send-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .ai-assistant {
        bottom: 16px;
        right: 16px;
    }
    
    .assistant-avatar {
        width: 56px;
        height: 56px;
    }
    
    .pulse-ring {
        top: -8px;
        left: -8px;
        right: -8px;
        bottom: -8px;
    }
    
    .chat-header {
        padding: 14px 16px;
    }
    
    .assistant-avatar-small { 
        width: 36px; 
        height: 36px; 
    }
    
    .assistant-avatar-tiny { 
        width: 28px; 
        height: 28px; 
    }
    
    .assistant-details h4 {
        font-size: 15px;
    }
    
    .status-indicator {
        font-size: 11px;
    }
    
    .status-dot {
        width: 6px;
        height: 6px;
    }
    
    .chat-messages {
        padding: 16px 12px;
        gap: 14px;
    }
    
    .message-content {
        padding: 11px 14px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .message-content li {
        font-size: 13px;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
        padding: 14px 12px;
        gap: 10px;
    }
    
    .quick-action {
        padding: 14px;
        font-size: 13px;
        min-height: 48px;
    }
    
    .chat-input-container {
        padding: 14px 12px;
        padding-bottom: max(14px, env(safe-area-inset-bottom));
    }
    
    .chat-input-wrapper {
        padding: 3px 3px 3px 14px;
    }
    
    .chat-input {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .send-button {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

/* Fix for landscape mobile */
@media (max-width: 812px) and (orientation: landscape) {
    .chat-messages {
        padding: 12px;
        gap: 12px;
    }
    
    .message-content {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .quick-actions {
        padding: 10px 12px;
        gap: 8px;
        grid-template-columns: 1fr 1fr;
    }
    
    .quick-action {
        padding: 10px;
        font-size: 11px;
        min-height: 36px;
    }
    
    .chat-input-container {
        padding: 10px 12px;
    }
}

/* Responsive Design - Navbar & Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 4px;
        border-radius: 0;
        border: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        border-radius: 12px;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
        background: #6c5ce7;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
        background: #6c5ce7;
    }
    
    /* Nav auth group for mobile */
    .nav-auth-group {
        display: flex !important;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #e5e7eb;
    }
    
    .nav-auth-group .btn-auth {
        width: 100%;
        min-height: 48px;
        font-size: 15px;
        justify-content: center;
    }
    
    /* Mobile menu inline auth links */
    .nav-auth-inline {
        display: flex !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        min-height: 52px;
    }
    
    .consultation-cta-hero {
        justify-content: center;
        margin: 32px 0 24px 0;
    }
    
    .btn-consultation-hero {
        max-width: 100%;
        padding: 16px 24px;
        font-size: 0.95rem;
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .consultation-text {
        width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Avatar responsive için tablet */
    .avatar-container {
        width: 180px;
        height: 180px;
    }
    
    .avatar-circle {
        width: 160px;
        height: 160px;
    }
    
    .tech-orbit {
        width: 240px;
        height: 240px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-logo-img {
        width: 36px;
        height: 36px;
    }
    
    .brand-text {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        top: 65px;
        padding: 20px 16px;
        max-height: calc(100vh - 65px);
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 15px;
        min-height: 44px;
    }
    
    .nav-auth-group {
        margin-top: 10px;
        padding-top: 10px;
        gap: 8px;
    }
    
    .nav-auth-group .btn-auth {
        min-height: 46px;
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        gap: 32px;
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: clamp(1.6rem, 8vw, 3rem);
        margin-bottom: 12px;
    }
    
    .typing-container h2 {
        font-size: clamp(1.1rem, 5vw, 1.8rem);
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        min-width: auto;
        min-height: 48px;
    }
    
    .consultation-cta-hero {
        margin: 28px 0 20px 0;
    }
    
    .btn-consultation-hero {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .consultation-text {
        gap: 4px;
    }
    
    .main-text {
        font-size: 0.9rem;
    }
    
    .sub-text {
        font-size: 0.75rem;
    }
    
    .hero-auth-cta {
        margin-top: 24px;
        padding: 16px;
    }
    
    .hero-auth-text {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .hero-auth-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .btn-auth--hero {
        width: 100%;
        min-height: 46px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Package cards mobile */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .package-item {
        padding: 24px 20px;
    }
    
    .package-header h3 {
        font-size: 1.4rem;
    }
    
    .package-price .price-amount {
        font-size: 2rem;
    }
    
    .btn-package {
        padding: 14px 24px;
        font-size: 14px;
        min-height: 48px;
    }
    
    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    /* Contact mobile */
    .contact-content {
        gap: 32px;
    }
    
    .contact-form-container {
        padding: 24px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 48px 0 28px;
    }
    
    .footer-content {
        gap: 32px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .footer-section p,
    .footer-section li a {
        font-size: 0.9rem;
    }
    
    /* Scroll to top mobile */
    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 80px;
        right: 16px;
    }
    
    /* Avatar responsive için mobil */
    .avatar-container {
        width: 160px;
        height: 160px;
    }
    
    .avatar-circle {
        width: 140px;
        height: 140px;
    }
    
    .tech-orbit {
        width: 220px;
        height: 220px;
    }
    
    .tech-icon {
        width: 36px;
        height: 36px;
    }
    
    .tech-icon i {
        font-size: 1.1rem;
    }
    
    /* Skills mobile */
    .skills-grid {
        gap: 20px;
    }
    
    .skill-card {
        padding: 24px 20px;
    }
    
    /* About mobile */
    .about-wrapper {
        gap: 32px;
    }
    
    .about-profile-card {
        padding: 28px 24px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 16px;
    }
}

/* Small landscape devices (phones in landscape) */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        gap: 24px;
    }
    
    .nav-menu.active {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .ai-assistant-chat-window.visible {
        max-height: calc(100vh - 80px);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hide {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #6c5ce7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #6c5ce7;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a4fcf;
}

/* ===== EXTREME MOBILE OPTIMIZATION ===== */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    /* Force single column layout */
    .skills-grid,
    .services-grid,
    .portfolio-grid,
    .skills-summary {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Ensure cards don't exceed screen width */
    .skill-card,
    .service-card,
    .package-item,
    .summary-card {
        max-width: 100%;
        margin: 0;
        padding: 15px;
    }
    
    /* Navigation adjustments */
    .nav-menu {
        width: 100vw;
        left: 0;
        right: 0;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 60px 0;
    }
    
    .floating-elements {
        display: none; /* Hide floating elements on small screens */
    }
    
    .profile-card {
        padding: 25px;
        transform: none !important; /* Disable parallax on mobile */
    }
    
    .float-element {
        width: 40px;
        height: 40px;
    }
    
    .float-element i {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    /* Section padding adjustments */
    .section-padding {
        padding: 60px 0;
    }
    
    /* Disable floating elements for performance */
    .floating-elements {
        display: none;
    }
    
    /* Preview windows in portfolio */
    .preview-window {
        width: 100%;
        max-width: 250px;
        height: 120px;
    }
    
    /* Tech badges */
    .tech-badge,
    .summary-techs span {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    /* Touch-friendly buttons */
    .btn,
    .filter-btn,
    .btn-link {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Hamburger menu touch area */
    .hamburger {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .skill-card,
    .service-card,
    .package-item,
    .summary-card {
        padding: 12px;
        border-radius: 12px;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    /* Ultra-small font adjustments */
    body {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .skill-card h3,
    .service-card h3 {
        font-size: 1.1rem;
    }
}

/* ==========================================
   CONSULTATION SECTION STYLES
========================================== */

.consultation {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8e6ff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236c5ce7" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    pointer-events: none;
}

.consultation-intro {
    margin-bottom: 60px;
}

.consultant-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.1);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.consultant-avatar {
    text-align: center;
}

.consultant-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #6c5ce7;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
    animation: consultantFloat 3s ease-in-out infinite;
}

@keyframes consultantFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.consultant-img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.5);
}

.consultant-info h3 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consultant-info p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.7;
    margin-bottom: 25px;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 15px;
    background: linear-gradient(135deg, #f8f9ff, #e8e6ff);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.15);
}

.benefit-item span {
    font-weight: 500;
    color: #2d3436;
    font-size: 0.95rem;
    line-height: 1.4;
}

.consultation-process {
    margin-bottom: 50px;
}

.consultation-process h3 {
    text-align: center;
    font-size: 2rem;
    color: #2d3436;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    color: #2d3436;
    margin-bottom: 15px;
}

.step-content p {
    color: #636e72;
    line-height: 1.6;
}

.consultation-cta {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 70px rgba(108, 92, 231, 0.15);
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    text-align: center;
    font-size: 2.2rem;
    color: #2d3436;
    margin-bottom: 15px;
}

.cta-content > p {
    text-align: center;
    font-size: 1.2rem;
    color: #636e72;
    margin-bottom: 40px;
}

.project-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.option-card {
    background: #f8f9ff;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(108, 92, 231, 0.1), transparent);
    transition: left 0.5s ease;
}

.option-card:hover::before {
    left: 100%;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: #6c5ce7;
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.2);
}

.option-card.selected {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border-color: #6c5ce7;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.3);
}

.option-card.selected .option-icon {
    transform: scale(1.2);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.option-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: inherit;
}

.option-card p {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.8;
}

.consultation-form {
    background: #f8f9ff;
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
}

.btn-consultation {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.25);
    min-width: 280px;
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(108, 92, 231, 0.35);
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.btn-consultation i {
    font-size: 1rem;
}

/* ========================================
   INTERACTIVE CONSULTATION QUESTIONNAIRE
   ======================================== */

.consultation-questionnaire {
    margin-top: 60px;
    width: 100%;
}

.questionnaire-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.questionnaire-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

/* Progress Bar */
.consultation-progress {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Step indicators (dots) */
.step-indicators {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
}

.step-dot {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.25);
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.step-dot:hover { transform: translateY(-2px); }

.step-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0; height: 100%; width: 0%;
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    transition: width 0.4s ease;
}

.step-dot.completed::after { width: 100%; }
.step-dot.active::after { width: 50%; }

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 12.5%;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* Question Wrapper */
.question-wrapper {
    min-height: 400px;
    position: relative;
    z-index: 2;
}

.question-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    /* animation: slideInQuestion 0.6s cubic-bezier(0.4, 0, 0.2, 1); */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

@keyframes slideInQuestion {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.question-card.fade-out {
    animation: slideOutQuestion 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideOutQuestion {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
}

.question-header {
    margin-bottom: 30px;
}

.question-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.question-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.4;
}

.question-subtitle {
    font-size: 16px;
    color: #718096;
    line-height: 1.6;
}

/* Answer Options */
.answer-options {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.answer-option {
    background: #f7fafc;
    border: 3px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.answer-option:hover {
    border-color: #667eea;
    background: #eef2ff;
    transform: translateX(5px);
}

.answer-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea15, #764ba215);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
}

.answer-option.selected::after {
    content: '✓';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.option-icon {
    font-size: 32px;
    min-width: 50px;
    text-align: center;
}

.option-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 6px;
}

.option-content p {
    font-size: 14px;
    color: #718096;
    margin: 0;
    line-height: 1.5;
}

/* Text Input Answer */
.answer-text-input {
    margin-top: 25px;
}

.answer-text-input label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 12px;
}

.answer-text-input input,
.answer-text-input textarea {
    width: 100%;
    padding: 16px 20px;
    border: 3px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.answer-text-input input:focus,
.answer-text-input textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.answer-text-input textarea {
    min-height: 120px;
    resize: vertical;
}

/* Multi-select Checkboxes */
.answer-multi-select {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.checkbox-option {
    background: #f7fafc;
    border: 3px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkbox-option:hover {
    border-color: #667eea;
    background: #eef2ff;
}

.checkbox-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea15, #764ba215);
}

.checkbox-option input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-option label {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    flex: 1;
    margin: 0;
}

/* Navigation Buttons */
.consultation-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.btn-back,
.btn-next {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

/* Button ripple effect */
.btn-back, .btn-next {
    position: relative;
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background: rgba(255,255,255,0.5);
    pointer-events: none;
}

@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}

/* Responsive table utility for consultation notes or future use */
.responsive-table { width: 100%; border-collapse: collapse; }
.responsive-table th, .responsive-table td { padding: 12px 16px; border-bottom: 1px solid #e5e7eb; text-align: left; }
.table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 640px) {
  .responsive-table thead { display: none; }
  .responsive-table tr { display: grid; row-gap: 8px; padding: 12px 0; }
  .responsive-table td { display: grid; grid-template-columns: 120px 1fr; gap: 8px; }
  .responsive-table td::before { content: attr(data-label); font-weight: 600; color: #374151; }
}

.btn-back {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.btn-next {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #1a202c;
    margin-left: auto;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-next:disabled {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    box-shadow: none;
}

/* Summary Section */
.consultation-summary {
    animation: slideInQuestion 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.summary-header {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.summary-header i {
    font-size: 64px;
    color: #00ff88;
    margin-bottom: 20px;
    display: block;
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.summary-header h3 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
}

.summary-header p {
    font-size: 18px;
    opacity: 0.9;
}

.summary-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.summary-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #e2e8f0;
}

.summary-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-section h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-section h4 i {
    color: #667eea;
    font-size: 24px;
}

.summary-section p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.summary-section ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.summary-section li {
    padding: 12px 0;
    color: #4a5568;
    font-size: 15px;
    display: flex;
    align-items: start;
    gap: 12px;
}

.summary-section li::before {
    content: '✓';
    color: #00ff88;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.recommendation-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.summary-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.summary-actions .btn {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.summary-actions .btn-primary {
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #1a202c;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.summary-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.summary-actions .btn-secondary {
    background: white;
    color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.summary-actions .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Questionnaire */
@media (max-width: 768px) {
    .questionnaire-container {
        padding: 30px 20px;
    }

    .question-card {
        padding: 30px 20px;
    }

    .question-title {
        font-size: 20px;
    }

    .answer-option {
        padding: 18px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .option-icon {
        font-size: 40px;
    }

    .consultation-navigation {
        flex-direction: column-reverse;
    }

    .btn-back,
    .btn-next {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .summary-header h3 {
        font-size: 24px;
    }

    .summary-content {
        padding: 25px 20px;
    }

    .summary-actions {
        flex-direction: column;
    }

    .summary-actions .btn {
        width: 100%;
    }
}

/* Responsive Design for Consultation */
@media (max-width: 768px) {
    .consultant-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    
    .consultant-img {
        width: 100px;
        height: 100px;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .project-options {
        grid-template-columns: 1fr;
    }
    
    .consultation-cta {
        padding: 30px 20px;
    }
    
    .consultation-form {
        padding: 25px 15px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .consultation {
        padding: 60px 0;
    }

    .consultation-intro {
        padding: 32px 20px;
    }

    .consultation-intro h2 {
        font-size: 1.6rem;
    }

    .consultation-intro p {
        font-size: 0.95rem;
    }

    .consultant-card {
        padding: 24px 16px;
    }

    .consultant-img {
        width: 90px;
        height: 90px;
    }
    
    .consultant-info h3 {
        font-size: 1.4rem;
    }
    
    .consultant-info p {
        font-size: 0.95rem;
    }

    .consultation-benefits {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 20px 16px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .process-steps {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 20px 16px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .project-options {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .project-option {
        padding: 24px 20px;
    }

    .option-header h4 {
        font-size: 1.2rem;
    }

    .consultation-cta {
        padding: 24px 16px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content > p {
        font-size: 0.95rem;
    }

    .consultation-form {
        padding: 20px 16px;
    }

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

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 16px;
        min-height: 48px;
    }

    .form-submit {
        min-height: 52px;
        font-size: 16px;
    }
    
    .consultation-process h3 {
        font-size: 1.6rem;
    }
    
    .option-icon {
        font-size: 2rem;
    }
    
    .btn-consultation {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-width: 260px;
        gap: 6px;
        width: 100%;
        min-height: 48px;
    }

    .questionnaire-container {
        padding: 24px 16px;
        margin: 0;
        border-radius: 0;
        min-height: 100vh;
    }

    .consultation-progress {
        margin: 0 -16px 24px;
        padding: 16px;
        border-radius: 0;
    }

    .question-card {
        padding: 24px 16px;
    }

    .question-number {
        font-size: 12px;
    }

    .question-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .question-description {
        font-size: 14px;
    }

    .answer-option {
        padding: 16px;
        min-height: 90px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .option-icon {
        font-size: 36px;
    }

    .option-text {
        font-size: 15px;
    }

    .option-description {
        font-size: 13px;
    }

    .consultation-navigation {
        padding: 16px;
        margin: 0 -16px;
        gap: 10px;
        flex-direction: column-reverse;
    }

    .btn-back,
    .btn-next {
        min-height: 50px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .summary-header {
        padding: 20px 16px;
    }

    .summary-header h3 {
        font-size: 20px;
    }

    .summary-content {
        padding: 20px 16px;
    }

    .summary-item {
        padding: 16px;
    }

    .summary-actions {
        padding: 16px;
        gap: 10px;
        flex-direction: column;
    }

    .summary-actions .btn {
        min-height: 50px;
        width: 100%;
    }
}

/* Ek responsive ayarlar */
@media (max-width: 360px) {
    .btn-consultation {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 240px;
        gap: 5px;
    }
    
    .btn-consultation i {
        font-size: 0.9rem;
    }
}

/* ==========================================
   HERO CONSULTATION CTA
   ========================================== */

.consultation-cta-hero {
    margin: 32px 0 24px 0;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

@media (min-width: 768px) {
    .consultation-cta-hero {
        margin: 40px 0 32px 0;
    }
}

.btn-consultation-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    width: 100%;
    max-width: 480px;
    font-size: 0.9rem;
    text-align: left;
}

@media (min-width: 640px) {
    .btn-consultation-hero {
        gap: 12px;
        padding: 16px 28px;
        font-size: 0.95rem;
        border-radius: 16px;
        width: auto;
    }
}

@media (min-width: 768px) {
    .btn-consultation-hero {
        padding: 18px 32px;
        font-size: 1rem;
    }
}

.btn-consultation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-consultation-hero:hover::before {
    left: 100%;
}

.btn-consultation-hero:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
}

/* CTA badge */
.cta-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #ea580c;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1.5px solid rgba(234, 88, 12, 0.3);
    box-shadow: 0 3px 8px rgba(234, 88, 12, 0.25);
    text-transform: uppercase;
    z-index: 10;
}

.btn-consultation-hero:hover .cta-badge {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(234, 88, 12, 0.35);
}

.consultation-icon {
    position: relative;
    font-size: 1.4rem;
    animation: bounce 2s ease-in-out infinite;
}

.icon-sparkles {
    position: absolute;
    top: -10px;
    right: -10px;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 1.5s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: -5px;
    right: 5px;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 5px;
    right: -5px;
    animation-delay: 1s;
}

.consultation-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    text-align: left;
}

.main-text {
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
}

.sub-text {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.3;
}

.consultation-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-consultation-hero:hover .consultation-arrow {
    transform: translateX(10px);
}

.btn-consultation-hero:hover .consultation-icon {
    animation: rocketBoost 0.6s ease;
}

/* Animations */
@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(102, 126, 234, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

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

@keyframes rocketBoost {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .consultation-cta-hero {
        margin: 20px 0 15px 0;
    }

    .btn-consultation-hero {
        padding: 14px 20px;
        gap: 10px;
        max-width: 100%;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .main-text {
        font-size: 0.95rem;
    }

    .sub-text {
        font-size: 0.8rem;
    }

    .consultation-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .btn-consultation-hero {
        padding: 12px 18px;
        gap: 8px;
        flex-direction: row;
        justify-content: center;
        font-size: 0.85rem;
    }

    .cta-badge {
        top: -6px;
        right: 8px;
        font-size: 9px;
        padding: 3px 8px;
    }

    .consultation-text {
        align-items: center;
        text-align: center;
    }

    .main-text {
        font-size: 0.85rem;
    }

    .sub-text {
        font-size: 0.8rem;
    }
}

/* Footer brand note */
.brand-note {
    margin: 6px 0 8px 0;
    font-size: 0.9rem;
    color: #6b7280;
}
.brand-note a { color: #6c5ce7; text-decoration: none; }
.brand-note a:hover { text-decoration: underline; }

/* ==========================
   Auth CTA group & Modals
   ========================== */
/* Desktop Auth CTA Group (right side) */
.nav-auth-group{
    display: none;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

@media (min-width: 992px){
    .nav-auth-group{ display: flex; }
    /* Hide auth links inside menu on desktop to avoid duplicates */
    .nav-menu .nav-auth-inline{ display: none; }
}

.btn-auth{
    display: inline-flex; align-items: center; justify-content: center;
    height: 46px; padding: 0 20px; border-radius: 999px; font-weight: 700;
    border: 2px solid transparent; cursor: pointer; transition: all .2s ease;
    font-size: 1rem; letter-spacing: .3px;
}
.btn-auth--login{
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(59,130,246,.35);
}
.btn-auth--login:hover{ box-shadow: 0 12px 32px rgba(59,130,246,.5); transform: translateY(-2px); filter: brightness(1.05); }
.btn-auth--signup{
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(34,197,94,.35);
}
.btn-auth--signup:hover{ box-shadow: 0 12px 32px rgba(34,197,94,.5); filter: brightness(1.04); transform: translateY(-2px); }

/* Auth CTAs in nav (mobile menu fallback) */
.nav-link.login-cta::before { background: linear-gradient(135deg, #2ea0ff 0%, #007bff 100%); }
.nav-link.signup-cta::before { background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); }

/* Helper line under hero */
.auth-cta-line{ margin-top: 8px; color: #64748b; font-size: 14px; text-align: center; }
.auth-cta-line a{ text-decoration: none; font-weight: 600; }
.auth-cta-line a.login{ color: #007bff; }
.auth-cta-line a.signup{ color: #16a34a; }
.auth-cta-line a:hover{ text-decoration: underline; }

/* Auth Modals */
.auth-modal-overlay{ position: fixed; inset:0; background: rgba(2,8,23,.55); backdrop-filter: blur(6px); display:none; align-items: center; justify-content: center; z-index: 2000; padding: 24px; }
.auth-modal-overlay.active{ display:flex; }
.auth-modal{ width:100%; max-width: 520px; background:#fff; border-radius: 18px; box-shadow: 0 20px 80px rgba(2,8,23,.25); border:1px solid #eef2ff; padding: 24px; position: relative; }
.auth-close{ position:absolute; right:10px; top:10px; width:36px; height:36px; border-radius:10px; border:1px solid #e5e7eb; background:#fff; cursor:pointer; font-size:20px; line-height:1; color:#6b7280; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.auth-close:hover{ background:#f8fafc; }
.auth-form{ display:grid; gap:12px; margin-top: 6px; }
.auth-label{ font-size: 14px; color:#374151; }
.auth-input-wrap{ position: relative; }
.auth-input{ width:100%; padding:12px 44px 12px 14px; border:1px solid #e5e7eb; border-radius:12px; outline:none; font-size: 16px; }
.auth-input:focus{ border-color:#007bff; box-shadow: 0 0 0 4px rgba(0,123,255,.2); }
.auth-toggle{ position:absolute; right:8px; top:50%; transform: translateY(-50%); border:0; background:#f3f4f6; color:#6b7280; padding:6px 8px; border-radius:8px; cursor:pointer; min-width: 44px; min-height: 32px; display: flex; align-items: center; justify-content: center; }
.auth-toggle:hover{ background:#e5e7eb; }
.auth-error{ color:#ef4444; font-size:12px; min-height: 16px; }
.btn-auth--primary{ background: linear-gradient(135deg, #2ea0ff 0%, #007bff 100%); color:#fff; box-shadow: 0 8px 22px rgba(0,123,255,.35); height:44px; min-height: 48px; }
.btn-auth--success{ background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); color:#fff; box-shadow: 0 8px 22px rgba(34,197,94,.35); height:44px; min-height: 48px; }
.auth-alt{ text-align:center; color:#64748b; font-size:14px; margin-top:4px; }
.auth-alt a{ text-decoration:none; font-weight:700; }
.auth-alt .link-login{ color:#007bff; }
.auth-alt .link-signup{ color:#16a34a; }

/* Auth Modal Mobile Responsive */
@media (max-width: 768px) {
    .auth-modal-overlay {
        padding: 16px;
    }
    
    .auth-modal {
        max-width: calc(100% - 32px);
        padding: 20px;
        border-radius: 16px;
    }
    
    .auth-close {
        width: 40px;
        height: 40px;
        right: 12px;
        top: 12px;
    }
    
    .auth-input {
        padding: 14px 48px 14px 14px;
        font-size: 16px; /* Prevent iOS zoom */
    }
    
    .btn-auth--primary,
    .btn-auth--success {
        min-height: 48px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .auth-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    
    .auth-modal {
        max-width: 100%;
        border-radius: 24px 24px 0 0;
        max-height: 90vh;
        overflow-y: auto;
        padding: 24px 20px;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
    
    .auth-close {
        width: 44px;
        height: 44px;
        right: 16px;
        top: 16px;
        font-size: 22px;
    }
    
    .auth-form {
        gap: 16px;
    }
    
    .auth-input {
        padding: 14px 50px 14px 14px;
        min-height: 48px;
    }
    
    .auth-toggle {
        min-width: 48px;
        min-height: 36px;
    }
    
    .btn-auth--primary,
    .btn-auth--success {
        min-height: 50px;
        font-size: 16px;
    }
}

/* Hero Auth CTA */
.hero-auth-cta{ margin-top: 32px; padding: 24px; background: rgba(255,255,255,.75); backdrop-filter: blur(10px); border-radius: 16px; border: 1px solid rgba(108,92,231,.15); }
.hero-auth-text{ text-align: center; font-size: 1.05rem; color: #374151; margin-bottom: 16px; font-weight: 500; }
.hero-auth-buttons{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-auth--hero{ height: 50px; padding: 0 24px; font-size: 1.05rem; }
.btn-auth--hero i{ margin-right: 6px; }

@media (max-width: 768px){
    .hero-auth-cta{ padding: 20px 16px; }
    .hero-auth-text{ font-size: 0.95rem; }
    .btn-auth--hero{ height: 44px; padding: 0 18px; font-size: 0.95rem; width: 100%; }
    .hero-auth-buttons{ flex-direction: column; }
}

/* Packages Auth Banner */
.section-auth-banner{ display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); border-radius: 18px; border: 2px solid #bae6fd; margin-bottom: 48px; flex-wrap: wrap; }
.auth-banner-content{ display: flex; align-items: center; gap: 16px; flex: 1; }
.auth-banner-icon{ font-size: 3rem; }
.auth-banner-text h3{ margin: 0 0 4px 0; font-size: 1.3rem; color: #0c4a6e; }
.auth-banner-text p{ margin: 0; color: #475569; font-size: 0.95rem; }
.auth-banner-actions{ display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 768px){
    .section-auth-banner{ flex-direction: column; text-align: center; padding: 20px; }
    .auth-banner-content{ flex-direction: column; text-align: center; }
    .auth-banner-actions{ width: 100%; flex-direction: column; }
    .auth-banner-actions .btn-auth{ width: 100%; }
}

/* Contact Auth Prompt */
.contact-auth-prompt{ margin-bottom: 48px; }
.contact-auth-card{ text-align: center; padding: 40px 32px; background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-radius: 20px; border: 2px solid #fbbf24; }
.contact-auth-icon{ font-size: 3.5rem; color: #d97706; margin-bottom: 12px; }
.contact-auth-card h3{ margin: 0 0 8px 0; font-size: 1.5rem; color: #78350f; }
.contact-auth-card p{ margin: 0 0 20px 0; color: #92400e; font-size: 1rem; }
.contact-auth-buttons{ display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px){
    .contact-auth-card{ padding: 32px 20px; }
    .contact-auth-icon{ font-size: 2.5rem; }
    .contact-auth-card h3{ font-size: 1.25rem; }
    .contact-auth-buttons{ flex-direction: column; }
    .contact-auth-buttons .btn-auth{ width: 100%; }
}