:root {
    --primary-color: #4477ee;
    --primary-light: #5588ff;
    --primary-dark: #3366dd;
    --accent-color: #00c3ff;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --bg-light: #f5f8ff;
    --bg-transparent: rgba(255, 255, 255, 0.15);
    --shadow-color: rgba(67, 119, 238, 0.2);
    --secondary-color: #003366;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1.5rem;
}

.logo-container {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,102,204,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 52px;
    height: 52px;
}

.logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,102,204,0.25);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    padding: 4px;
}

.logo img {
    height: 38px;
    width: 38px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,102,204,0.12);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    transform: translateX(0);
}

.nav-links a i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

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

.nav-links a:hover i {
    transform: translateY(-2px) scale(1.1);
}

.nav-links a::after {
    display: none;
}

.nav-links .nav-cta {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,102,204,0.2);
    transition: all 0.3s ease;
    overflow: visible;
}

.nav-links .nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.3);
    background: linear-gradient(135deg, #0077e6, #1a8cff);
    color: var(--white);
}

.nav-links .nav-cta::before {
    display: none;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: rgba(0,102,204,0.1);
    color: var(--primary-color);
}

/* Hero Section Base */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 8rem 0;
    margin-left: -8rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
    gap: 2rem;
}

/* Minimal Grid */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--primary-color) 0.5px, transparent 0.5px),
        linear-gradient(to right, var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 50px 50px;
    opacity: 0.03;
    transform: perspective(1000px) rotateX(60deg) scale(2);
    transform-origin: 50% 0;
    animation: gridFloat 20s linear infinite;
}

/* Subtle Glow */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 70% 30%,
        var(--primary-light) 0%,
        transparent 50%
    );
    opacity: 0.04;
    filter: blur(60px);
    animation: glowPulse 8s ease-in-out infinite alternate;
}

/* Clean Animations */
@keyframes gridFloat {
    0% {
        transform: perspective(1000px) rotateX(60deg) translateY(0) scale(2);
    }
    100% {
        transform: perspective(1000px) rotateX(60deg) translateY(-50px) scale(2);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.03;
    }
    100% {
        opacity: 0.05;
    }
}

/* Remove unused elements */
.hero-particles,
.hero-shape {
    display: none;
}

/* Content z-index */
.hero-content,
.hero-phone {
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero::before {
        background-size: 30px 30px;
    }
}

/* Hero Content Styles */
.hero-content {
    flex: 0.9;
    max-width: 600px;
    z-index: 5;
    color: var(--text-light);
    padding-right: 2rem;
    margin-left: -2rem;
}

.hero-badge {
    background: rgba(85, 136, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    font-weight: 500;
    letter-spacing: 0.5px;
    border: 1px solid rgba(85, 136, 255, 0.2);
    box-shadow: 0 0 20px rgba(85, 136, 255, 0.1);
    color: var(--text-light);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(85, 136, 255, 0.3);
}

.hero h1 .highlight {
    background: linear-gradient(120deg, var(--accent-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 90%;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(85, 136, 255, 0.3);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(85, 136, 255, 0.3);
}

.cta-button.secondary {
    background: rgba(85, 136, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button.primary:hover {
    background: var(--primary-light);
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(85, 136, 255, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(85, 136, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(85, 136, 255, 0.1);
    box-shadow: 0 0 20px rgba(85, 136, 255, 0.05);
    color: var(--text-light);
}

.feature-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.feature-item span {
    font-weight: 500;
    white-space: nowrap;
}

/* Phone Container Styles */
.hero-phone {
    flex: 1.2;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    min-width: 500px;
    margin-right: -4rem;
    margin-left: -12rem;
}

.phone-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: perspective(1000px) rotateY(-5deg);
}

.phone-main {
    height: 600px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transform: rotate(-15deg) translateX(60px);
    filter: drop-shadow(0 10px 20px rgba(85, 136, 255, 0.3));
    animation: floatMain 4s ease-in-out infinite;
}

.phone-secondary {
    height: 580px;
    object-fit: contain;
    position: absolute;
    z-index: 1;
    transform: rotate(-15deg) translateX(-80px);
    filter: drop-shadow(0 10px 20px rgba(85, 136, 255, 0.2));
    animation: floatSecondary 4s ease-in-out infinite;
}

@keyframes floatMain {
    0%, 100% {
        transform: rotate(-15deg) translateX(60px) translateY(0);
    }
    50% {
        transform: rotate(-15deg) translateX(60px) translateY(-10px);
    }
}

@keyframes floatSecondary {
    0%, 100% {
        transform: rotate(-15deg) translateX(-80px) translateY(0);
    }
    50% {
        transform: rotate(-15deg) translateX(-80px) translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero {
        margin-left: -4rem;
        padding: 8rem 2rem;
    }

    .hero-content {
        margin-left: -1rem;
    }
    
    .hero-phone {
        margin-right: -2rem;
        margin-left: -8rem;
    }
}

@media (max-width: 1200px) {
    .hero {
        margin-left: -2rem;
        padding: 6rem 2rem;
    }
    
    .hero-content {
        margin-left: 0;
    }
    
    .hero-phone {
        margin-right: -1rem;
        margin-left: -6rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .phone-main {
        height: 500px;
    }

    .phone-secondary {
        height: 480px;
    }

    .phone-phone {
        min-width: 500px;
        margin-right: -2rem;
    }
}

@media (max-width: 992px) {
    .hero {
        margin: 0;
        padding: 0 1.5rem;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        gap: 1rem;
        min-height: unset;
        height: auto;
        padding-top: 60px;
    }
    
    .hero-content {
        margin: 0;
        padding: 0;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.4rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 0.8rem;
        gap: 0.8rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
        margin-top: 0.8rem;
    }

    .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-phone {
        margin: 1rem 0;
        transform: scale(0.85);
    }

    .phone-container {
        height: 400px;
    }

    .phone-main, .phone-secondary {
        height: 400px;
    }

    .phone-main {
        transform: rotate(-15deg) translateX(45px);
    }
    
    .phone-secondary {
        transform: rotate(-15deg) translateX(-65px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 1rem;
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .phone-container {
        height: 400px;
        transform: scale(0.85);
    }

    .phone-main {
        height: 400px;
        transform: rotate(-15deg) translateX(35px);
    }

    .phone-secondary {
        height: 380px;
        transform: rotate(-15deg) translateX(-55px);
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 45px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 0.8rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .hero-phone {
        transform: scale(0.75);
    }

    .phone-container {
        height: 350px;
    }

    .phone-main, .phone-secondary {
        height: 350px;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .hero-features {
        gap: 0.8rem;
    }

    .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-phone {
        transform: scale(0.7);
    }

    .phone-container {
        height: 300px;
    }

    .phone-main, .phone-secondary {
        height: 300px;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, var(--accent-color) 0%, transparent 50%);
    opacity: 0.03;
    filter: blur(80px);
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding: 0 2rem 1rem;
    background: linear-gradient(120deg, transparent 0%, rgba(var(--primary-color-rgb), 0.1) 50%, transparent 100%);
    border-radius: 15px;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.services .title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem;
    background: linear-gradient(to right, transparent, rgba(var(--primary-color-rgb), 0.03), transparent);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    opacity: 0.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color),
        var(--primary-light),
        var(--accent-color)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    filter: blur(30px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

.service-card .corner-accent {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent, var(--primary-color));
    opacity: 0.1;
    border-radius: 0 25px 0 80px;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.1),
        0 0 0 1px rgba(var(--primary-color-rgb), 0.1);
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

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

.service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 5px 15px rgba(var(--primary-color-rgb), 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: inherit;
    border-radius: 20px;
    filter: blur(8px);
    opacity: 0.4;
    z-index: -1;
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    position: relative;
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    transform: translateX(8px);
    color: var(--primary-color);
}

.service-features i {
    color: var(--primary-color);
    font-size: 1rem;
    background: rgba(var(--primary-color-rgb), 0.1);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .services {
        padding: 6rem 2rem;
    }

    .services h2 {
        font-size: 2.4rem;
    }

    .services .title-wrapper {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 5rem 1.5rem;
    }

    .service-card {
        padding: 2.5rem 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .service-features li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .services {
        padding: 4rem 1rem;
    }

    .services h2 {
        font-size: 2rem;
        padding: 0 1rem 0.6rem;
    }

    .services .title-wrapper {
        padding: 1rem;
    }

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

    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 100% 0%, var(--accent-color) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, var(--primary-color) 0%, transparent 50%);
    opacity: 0.03;
    filter: blur(80px);
}

.portfolio .title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem;
    background: linear-gradient(to right, transparent, rgba(var(--primary-color-rgb), 0.03), transparent);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    padding: 0 2rem 1rem;
    background: linear-gradient(120deg, transparent 0%, rgba(var(--primary-color-rgb), 0.1) 50%, transparent 100%);
    border-radius: 15px;
}

.portfolio h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f0f0 100%);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.08);
}

.portfolio-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-content {
    padding: 2rem;
    background: var(--white);
    position: relative;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-content h3 {
    color: var(--primary-color);
}

.portfolio-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    min-height: 3.2rem;
}

/* Portfolio View Project Button Styles */
.view-project {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.view-project span {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.view-project i {
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.view-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.view-project:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
    border-color: transparent;
}

.view-project:hover::before {
    opacity: 1;
}

.view-project:hover span {
    color: white;
}

.view-project:hover i {
    transform: translateX(3px);
    color: white;
}

@media (max-width: 768px) {
    .view-project {
        padding: 0.7rem 1.3rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .portfolio-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio {
        padding: 5rem 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    .portfolio-content h3 {
        font-size: 1.35rem;
    }

    .portfolio-content p {
        font-size: 0.9rem;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .portfolio {
        padding: 4rem 1rem;
    }

    .portfolio h2 {
        font-size: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

    .portfolio-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Contact Section - Geliştirilmiş Tasarım */
.contact {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, var(--primary-color) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, var(--accent-color) 0%, transparent 40%);
    opacity: 0.05;
    filter: blur(60px);
}

.contact h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.contact-container {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.contact-info {
    padding-right: 3rem;
    border-right: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.contact-methods {
    display: grid;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-method::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.contact-method:hover::before {
    opacity: 0.4;
}

.contact-method i {
    font-size: 1.8rem;
    padding: 1.2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.2);
}

.contact-method h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.contact-method p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.social-connect {
    text-align: left;
    padding-top: 2.5rem;
}

.social-connect h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icons {
    display: block;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.social-icon i {
    font-size: 1.8rem;
    padding: 1.2rem;
    border-radius: 18px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.social-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
}

.social-name::before {
    content: 'Follow Us on Instagram';
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.social-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.social-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .social-icon {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .social-name::before {
        font-size: 1.2rem;
    }
    
    .social-name {
    font-size: 1rem;
    }
}

.contact-form-wrapper {
    padding-left: 2rem;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    background: #ffffff;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-group input {
    height: 60px;
}

.form-group textarea {
    height: 180px;
    resize: none;
    line-height: 1.6;
    padding-top: 1.2rem;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transform: translateY(-2px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    border-width: 2px;
    box-shadow: 
        0 12px 25px rgba(var(--primary-color-rgb), 0.15),
        0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
    transform: translateY(-3px);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    padding: 0 0.5rem;
    color: #666;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: #fff;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.5rem;
    left: 1rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

#contact-form button {
    width: 100%;
    height: 60px;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

#contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(var(--primary-color-rgb), 0.3);
}

#contact-form button::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: 0.5s;
}

#contact-form button:hover::before {
    left: 100%;
}

#contact-form button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

#contact-form button:hover i {
    transform: translateX(5px);
}

/* Modern Footer Styles */
footer {
    background: linear-gradient(165deg, var(--secondary-color) 0%, #1a1a1a 100%);
    padding: 6rem 2rem 2rem;
    position: relative;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 4rem;
}

/* Footer Logo Styles */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-img {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 4px;
    position: relative;
}

.footer-logo-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
}

.footer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-logo-text h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.footer-logo-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .footer-logo-img {
        width: 50px;
    height: 50px;
        padding: 10px;
    }
}

/* İletişim Bilgileri */
.footer-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-info-column h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-info-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-info-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-info-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-info-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-info-column p:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.footer-info-column p i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Footer Social Media Styles */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-social h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.social-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(5px);
    opacity: 0.5;
}

.social-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 1;
}

.social-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.social-platform {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.social-handle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

.social-link:hover .social-icon-wrapper {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .social-link {
        padding: 0.8rem 1.2rem;
    }

    .social-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .social-icon-wrapper i {
        font-size: 1.3rem;
    }

    .social-platform {
        font-size: 1rem;
    }

    .social-handle {
        font-size: 0.85rem;
    }
}

/* Alt Bilgi */
.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
    }
    
    .footer-social {
        grid-column: 1 / -1;
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-social h3::after {
        left: 0;
        right: auto;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-wrapper {
        margin-left: 0;
    }
    
    .nav-links .nav-cta {
        margin: 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: flex;
    }

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

    .company-name {
        font-size: 1.3rem;
    }


    .hero {
        padding: 6rem 2rem;
    }

    .hero::before {
        background-size: 20px 20px;
    }
    
    .hero::after {
        background-size: 30px 30px;
    }
}

/* About Section - Yeni Tasarım */
.about {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, var(--primary-color) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, var(--accent-color) 0%, transparent 40%);
    opacity: 0.05;
    filter: blur(60px);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.about-text {
    text-align: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1rem;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.about-text .subtitle {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 2rem 0;
    font-weight: 500;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-description {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    margin: 3rem 0 4rem;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-description::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.2;
}

.about-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

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

.stat-item i {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

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

@media (max-width: 768px) {
    .about {
        padding: 5rem 1.5rem;
    }

    .about-text h2 {
        font-size: 2.4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .about-description {
        padding: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 4rem 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 2rem;
    }

    .about-description {
        padding: 2rem;
    }

    .about-description p {
        font-size: 1.1rem;
    }
}

/* Logo Styles */
.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    text-transform: none;
    user-select: none;
    cursor: default;
}

.company-tagline {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .company-tagline {
        display: none;
    }
    
    .company-name {
        font-size: 1.6rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Sosyal medya ikonlarının renklerini geri ekle */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.twitter {
    background: #1DA1F2;
}

.social-icon.linkedin {
    background: #0077B5;
}

.social-icon.github {
    background: #333;
}

/* Sosyal Medya Styles */
.social-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 12px;
}

.social-icon-wrapper i {
    font-size: 1.5rem;
    color: white;
}

.social-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.social-platform {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-handle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

    .footer-logo .company-name {
        font-size: 1.5rem;
    }

    .social-link {
        padding: 1rem 1.5rem;
    }

    .social-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .social-icon-wrapper i {
        font-size: 1.3rem;
    }

    .social-platform {
        font-size: 1rem;
    }

    .social-handle {
        font-size: 0.85rem;
    }
}

/* 404 Error Page Styles */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, var(--accent-color) 0%, transparent 50%);
    opacity: 0.05;
    filter: blur(60px);
}

.error-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.8);
    position: relative;
}

.error-logo {
    margin-bottom: 2rem;
}

.error-logo img {
    height: 60px;
    object-fit: contain;
}

.error-content h1 {
    font-size: 8rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.error-message {
    margin: 2rem 0;
}

.error-message h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.error-message p {
    color: var(--text-dark);
    font-size: 1.1rem;
    opacity: 0.8;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.error-actions a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.2);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.error-actions a:hover {
    transform: translateY(-5px);
}

.error-help {
        margin-top: 2rem;
    color: var(--text-dark);
}

.error-help a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.error-help a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-content {
        padding: 2rem;
    }

    .error-content h1 {
        font-size: 6rem;
    }

    .error-message h2 {
        font-size: 1.8rem;
    }

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

    .error-actions a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-content h1 {
        font-size: 5rem;
    }

    .error-message h2 {
        font-size: 1.5rem;
    }

    .error-message p {
        font-size: 1rem;
    }
}

/* Policy Pages Styles */
.policy-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.policy-page::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, var(--primary-color) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, var(--accent-color) 0%, transparent 50%);
    opacity: 0.05;
    filter: blur(60px);
}

.policy-content {
    max-width: 900px;
    width: 100%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.8);
    position: relative;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-logo {
    margin-bottom: 2rem;
}

.policy-logo img {
    height: 60px;
    object-fit: contain;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.last-updated {
    color: var(--text-dark);
    opacity: 0.7;
    margin-top: 1rem;
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.policy-section {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.policy-section h2 {
    color: var(--secondary-color);
        font-size: 1.6rem;
    margin-bottom: 1rem;
}

.policy-section p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.policy-section ul li {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-section ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem;
}

.contact-info {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 2rem 1rem;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-header h1 {
        font-size: 2.4rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 1rem;
    }
}

/* Policy Home Button Styles */
.policy-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(var(--primary-color-rgb), 0.2),
        0 0 0 2px rgba(var(--primary-color-rgb), 0.1);
}

.policy-home-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.policy-home-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.policy-home-btn .btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.policy-home-btn:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(var(--primary-color-rgb), 0.3),
        0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.policy-home-btn:hover i {
    transform: translateX(-3px);
}

.policy-home-btn:hover .btn-shine {
    transform: translateX(100%);
}

@media (max-width: 768px) {
    .policy-home-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .policy-home-btn i {
        font-size: 1.1rem;
    }
}

/* Navbar active link styles */
.nav-links a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
    position: relative;
    background-color: var(--);
    
    background: rgba(0,102,204,0.12);
}

.nav-links a.active i {
    color: var(--primary-color);
}

/* Get Started butonu için özel stil */
.nav-links a.nav-cta.active {
    background: var(--primary-color);
    color: white;
}

.nav-links a.nav-cta.active i {
    color: white;
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    z-index: 1000;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 204, .2);
    border: 1px solid rgba(0, 102, 204, 1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.language-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.language-btn:hover {
    background: rgba(0, 102, 204, .4);
    border: 1px solid rgba(0, 102, 204, 1);
}

.language-btn:hover i {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 150px;
    overflow: hidden;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-option img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.language-option:hover {
    background: rgba(var(--primary-color-rgb), 0.1);
}

.language-option.active {
    background: rgba(var(--primary-color-rgb), 0.1);
    font-weight: 600;
}

html[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 1rem;
}

html[dir="rtl"] .language-dropdown {
    left: 0;
    right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-switcher {
        margin: 1rem 0;
        width: 100%;
        order: 1;
        position: relative;
        z-index: 1001; /* Navbar'ın üstünde görünmesi için z-index artırıldı */
    }
    
    .language-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
        background: rgba(0, 102, 204, .2);
        border: 1px solid rgba(0, 102, 204, 1);
        border-radius: 10px;
    }
    
    .language-dropdown {
        position: absolute;
        width: 100%;
        margin-top: 0.5rem;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        z-index: 1002; /* Dropdown'ın en üstte görünmesi için z-index artırıldı */
    }

    .language-option {
        padding: 1rem;
        justify-content: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text-color);
    }

    .language-option:last-child {
        border-bottom: none;
    }

    .language-option:hover {
        background: rgba(var(--primary-color-rgb), 0.15);
    }

    .nav-links .language-switcher {
        display: block;
        margin-top: 1rem;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.notification i {
    font-size: 1.2em;
}

.notification.success {
    background-color: #4CAF50;
}

.notification.error {
    background-color: #f44336;
}

html[dir="rtl"] .notification {
    right: auto;
    left: 20px;
}

@media (max-width: 768px) {
    .notification {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
        justify-content: center;
    }
}

html[lang="tr"] .nav-links a {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
}

html[lang="tr"] .nav-links .nav-cta {
    padding: 0.5rem 1rem;
}

html[lang="tr"] .nav-links a i {
    font-size: 0.9rem;
    margin-right: 0.3rem;
}

/* Contact Section - Responsive Düzenlemeler */
@media (max-width: 992px) {
    .contact {
        padding: 6rem 1.5rem;
    }

    .contact h2 {
        font-size: 2.8rem;
    }

    .contact-container {
        padding: 2.5rem;
        gap: 2rem;
    }

    .contact-info {
        padding-right: 2rem;
    }

    .contact-method {
        padding: 1.8rem;
        gap: 1.5rem;
    }

    .contact-method i {
        font-size: 1.6rem;
        padding: 1rem;
    }

    .contact-method h3 {
        font-size: 1.2rem;
    }

    .contact-method p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 1rem;
    }

    .contact h2 {
        font-size: 2.4rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contact-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
        padding-bottom: 2rem;
    }

    .contact-form-wrapper {
        padding-left: 0;
        padding-top: 2rem;
    }

    .contact-methods {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .contact-method {
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .contact-method i {
        font-size: 1.4rem;
        padding: 0.8rem;
    }

    .social-connect h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .form-group input {
        height: 55px;
    }

    .form-group textarea {
        height: 150px;
    }

    #contact-form button {
        height: 55px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 3rem 1rem;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact-container {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .contact-method {
        padding: 1.2rem;
        gap: 1rem;
    }

    .contact-method i {
        font-size: 1.2rem;
        padding: 0.7rem;
        border-radius: 15px;
    }

    .contact-method h3 {
        font-size: 1.1rem;
    }

    .contact-method p {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input:focus ~ label,
    .form-group textarea:focus ~ label,
    .form-group input:not(:placeholder-shown) ~ label,
    .form-group textarea:not(:placeholder-shown) ~ label {
        font-size: 0.8rem;
    }
} 