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

:root {
    /* Lacivert Bazlı Renk Paleti - Göz Yormayan */
    --primary-color: #1e40af; /* Lacivert */
    --primary-dark: #1e3a8a; /* Koyu Lacivert */
    --primary-light: #3b82f6; /* Açık Lacivert */
    --primary-lighter: #60a5fa; /* Çok Açık Lacivert */
    --secondary-color: #0ea5e9; /* Mavi (Vurgu) */
    --accent-color: #f59e0b; /* Turuncu (Vurgu) */
    --accent-light: #fbbf24; /* Açık Turuncu */
    --success-color: #10b981; /* Yeşil */
    --dark: #0f172a; /* Çok Koyu Gri */
    --dark-light: #1e293b; /* Koyu Gri */
    --gray: #64748b; /* Orta Gri */
    --gray-light: #94a3b8; /* Açık Gri */
    --light-gray: #e2e8f0; /* Çok Açık Gri */
    --lighter-gray: #f1f5f9; /* Neredeyse Beyaz Gri */
    --white: #ffffff;
    
    /* Gradient'ler - Lacivert Bazlı */
    --gradient-1: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    --gradient-3: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    --gradient-card: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    
    /* Gölgeler - Yumuşak */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 20px 50px rgba(15, 23, 42, 0.15);
    --shadow-primary: 0 8px 24px rgba(30, 64, 175, 0.2);
}

html {
    scroll-behavior: smooth;
}

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

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-text:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
}

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

/* Modern Hero Slider */
.hero-slider-modern {
    position: relative;
    width: 100%;
    margin-bottom: 4rem;
    padding: 3rem 0;
    overflow: hidden;
}

.slider-track {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
}

.slider-slide-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
    cursor: pointer;
}

.slider-slide-modern.active {
    cursor: pointer;
}

/* İlk slide başlangıçta görünür */
.slider-slide-modern.active:first-child,
.slider-slide-modern[data-slide="0"].active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slider-slide-modern.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    z-index: 2;
    pointer-events: all;
    cursor: pointer;
}

.slider-slide-modern.active:hover {
    transform: translateX(0) scale(1.01);
}

/* İlk slide'ın başlangıçta görünmesi için */
.slider-slide-modern[data-slide="0"].active,
.slider-slide-modern.active[data-slide="0"] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    z-index: 2 !important;
}

.slider-slide-modern.prev {
    transform: translateX(-100%);
}

.slider-slide-modern.next {
    transform: translateX(100%);
}

.slide-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}

.slider-slide-modern[data-slide="0"] .slide-bg-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.slider-slide-modern[data-slide="1"] .slide-bg-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #34d399 100%);
}

.slider-slide-modern[data-slide="2"] .slide-bg-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #fbbf24 100%);
}

.slider-slide-modern[data-slide="3"] .slide-bg-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #a78bfa 100%);
}

.slider-slide-modern[data-slide="4"] .slide-bg-gradient {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #38bdf8 100%);
}

.slider-slide-modern[data-slide="5"] .slide-bg-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #f472b6 100%);
}

.slide-bg-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: gradientRotate 20s linear infinite;
}

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

.slide-content-modern {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
    pointer-events: auto;
}

.slide-number {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.5;
    letter-spacing: 2px;
}

.slide-icon-large {
    font-size: 6rem;
    margin-bottom: 2rem;
    display: inline-block;
    animation: iconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.slide-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-word {
    display: block;
    animation: titleSlideIn 0.8s ease-out;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
}

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

.slide-desc-modern {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slide-tech-modern {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-chip {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-chip:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Slide Price */
.slide-price-modern {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: priceFadeIn 0.8s ease-out 0.4s both;
}

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

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Slider Controls */
.slider-controls-modern {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10;
}

.slider-btn-modern {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.slider-btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.slider-btn-modern:hover::before {
    width: 100px;
    height: 100px;
}

.slider-btn-modern:hover {
    background: var(--white);
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.3);
}

.slider-btn-modern:active {
    transform: scale(0.95);
}

.slider-btn-modern svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.slider-btn-modern:hover svg {
    transform: scale(1.2);
}

/* Slider Progress */
.slider-progress-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    overflow: hidden;
}

.progress-bar-modern {
    height: 100%;
    width: 0%;
    background: var(--white);
    transition: width 0.1s linear;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Slider Indicators */
.slider-indicators-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.indicator-modern {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--white);
    transition: width 0.4s, height 0.4s;
}

.indicator-modern.active {
    background: var(--white);
    width: 40px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.indicator-modern.active::after {
    width: 100%;
    height: 100%;
}

.indicator-modern:hover {
    transform: scale(1.4);
    background: rgba(255, 255, 255, 0.7);
}

/* Floating Code Background */
.floating-code {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-code span {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: rgba(30, 64, 175, 0.1);
    font-weight: 600;
    animation: floatCode 20s infinite linear;
    opacity: 0;
}

.floating-code span:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.floating-code span:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.floating-code span:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.floating-code span:nth-child(4) {
    top: 50%;
    right: 10%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.floating-code span:nth-child(5) {
    bottom: 40%;
    right: 30%;
    animation-delay: 8s;
    animation-duration: 22s;
}

.floating-code span:nth-child(6) {
    top: 70%;
    left: 15%;
    animation-delay: 10s;
    animation-duration: 17s;
}

.floating-code span:nth-child(7) {
    top: 20%;
    left: 50%;
    animation-delay: 12s;
    animation-duration: 19s;
}

.floating-code span:nth-child(8) {
    bottom: 10%;
    right: 20%;
    animation-delay: 14s;
    animation-duration: 21s;
}

@keyframes floatCode {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(360deg);
    }
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.slider-slide.active .title-line {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide.active .title-line:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-80px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.hero-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto 2.5rem;
    max-width: 900px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.9);
}

.advantage-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-card);
    border-radius: 12px;
    flex-shrink: 0;
}

.advantage-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.advantage-text strong {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.advantage-text span {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .hero-advantages {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem auto 2rem;
    }
    
    .advantage-item {
        padding: 1rem;
    }
    
    .advantage-icon {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .advantage-text strong {
        font-size: 0.95rem;
    }
    
    .advantage-text span {
        font-size: 0.8rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-primary);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-2);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

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

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    background-size: 200% 200%;
    border-radius: 2px;
    animation: gradientShift 3s ease infinite;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 1.5rem;
}

.section-privacy-note {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid var(--accent-color);
    border-radius: 8px;
    display: inline-block;
}

.section-privacy-note small {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    min-width: 0;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: visible;
    width: 100%;
    display: block;
    word-break: keep-all;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.2);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: decorationFloat 6s ease-in-out infinite;
}

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

.about-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 2px solid rgba(30, 64, 175, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-box {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-radius: 15px;
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(30, 64, 175, 0.1);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: iconPulse 3s ease-in-out infinite;
}

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

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid var(--lighter-gray);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, var(--lighter-gray) 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: var(--white);
}

.service-card .service-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(3deg);
}

.service-card.featured {
    border: 2px solid var(--light-gray);
    background: var(--white);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--dark-light);
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 2px solid var(--light-gray);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--gray);
    font-size: 0.9rem;
}

.service-price-yearly {
    text-align: center;
    padding: 0.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-price-yearly span {
    color: var(--gray);
    font-size: 0.85rem;
}

.btn-service {
    width: 100%;
    text-align: center;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.875rem 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.btn-service:last-of-type {
    margin-bottom: 0;
}

.service-card .btn-service {
    margin-top: auto;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


/* Projects Section */
.projects {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.project-card.featured-project {
    border: 3px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.project-card.featured-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    z-index: 1;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 20;
    box-shadow: var(--shadow-md);
    animation: pulse 2s ease-in-out infinite;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.project-preview {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-preview img,
.project-preview .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-preview .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-3);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(236, 72, 153, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-preview img,
.project-card:hover .project-preview .image-placeholder {
    transform: scale(1.1);
}

.btn-view-details {
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-view-details:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.project-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-image.active {
    opacity: 1;
    transform: scale(1);
}

.project-image .image-placeholder {
    height: 100%;
    background: var(--gradient-3);
    border-radius: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.gallery-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.gallery-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
    width: 25px;
    border-radius: 5px;
}

.project-info {
    padding: 1.5rem;
}

.project-tech-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.project-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.4rem 1rem;
    background: var(--light-gray);
    color: var(--dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.project-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

.project-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-app-store {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-app-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
}

.btn-app-store span {
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item .image-placeholder {
    height: 100%;
    background: var(--gradient-2);
    border-radius: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item:hover .image-placeholder {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(236, 72, 153, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: scale(1);
}

.gallery-title {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

.gallery-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-1);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover::before {
    height: 100%;
}

.info-card:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.info-card .info-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover .info-icon {
    transform: scale(1.2) rotate(10deg);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--gray);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.form-input:hover {
    border-color: var(--primary-light);
}

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

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 1200px;
    max-height: 90vh;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.modal-close:hover {
    background: var(--white);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    overflow-y: auto;
    padding: 2rem;
    max-height: calc(90vh - 4rem);
}

.modal-project {
    display: none;
}

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

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.modal-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-notice {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border-left: 3px solid var(--accent-color);
    border-radius: 5px;
}

.privacy-notice small {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 500;
}

.project-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.project-note strong {
    color: var(--primary-color);
}

.project-detail-note {
    color: var(--gray);
    line-height: 1.8;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    font-size: 0.95rem;
}

.modal-gallery {
    margin: 2rem 0;
}

.modal-gallery-main {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modal-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-image.active {
    opacity: 1;
    transform: scale(1);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f8fafc;
}

.modal-gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 10;
}

.modal-gallery-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.modal-gallery-btn:hover {
    background: var(--white);
    transform: scale(1.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.modal-gallery-btn:active {
    transform: scale(1.1);
}

.modal-gallery-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.modal-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.modal-details {
    margin-top: 3rem;
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.modal-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.modal-feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.modal-feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.modal-feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.modal-feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.modal-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.modal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .modal-gallery-main {
        height: 350px;
    }

    .modal-feature-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.privacy-footer-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-footer-note small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Loading Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}


/* Custom Popup Messages */
.custom-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid;
}

.custom-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-popup.success {
    border-left-color: var(--success-color);
}

.custom-popup.error {
    border-left-color: #ef4444;
}

.popup-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.popup-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.popup-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.popup-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .custom-popup {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }

    .custom-popup.show {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
        animation: slideRight 0.4s ease;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .about-features {
        gap: 1rem;
    }

    .feature-box {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin-bottom: 0.5rem;
    }

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

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    /* Hero Slider Mobile */
    .hero-slider {
        min-height: 400px;
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }

    .slider-wrapper {
        min-height: 350px;
    }

    .slider-slide {
        min-height: 350px;
    }

    .slide-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .slide-content .hero-title {
        font-size: 1.8rem;
    }

    .slide-content .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .tech-badges {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .tech-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .slider-controls {
        padding: 0 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 25px;
    }

    .floating-code span {
        font-size: 0.9rem;
    }

    .hero-slider-modern {
        padding: 2rem 0;
    }

    .slider-track {
        min-height: 450px;
    }

    .slide-content-modern {
        padding: 3rem 2rem;
    }

    .slide-icon-large {
        font-size: 4rem;
    }

    .slide-title-modern {
        font-size: 2.5rem;
    }

    .slide-desc-modern {
        font-size: 1rem;
    }

    .slider-controls-modern {
        padding: 0 1rem;
    }

    .slider-btn-modern {
        width: 50px;
        height: 50px;
    }

    .slider-btn-modern svg {
        width: 24px;
        height: 24px;
    }

    .slide-number {
        top: 1rem;
        left: 1rem;
        font-size: 0.9rem;
    }

    .slide-price-modern {
        padding: 1.25rem 1.5rem;
        margin-top: 1.5rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .price-label {
        font-size: 0.8rem;
    }
}

