:root {
    --bg: #ffffff;
    --accent: #dcdcdc;
    --text: #253843;
    --accent-2: #f7f7f7;
    --primary: #0e6aed;
    --secondary: #1a75ff;
    --success: #10b981;
    --warning: #f59e0b;
    --arrow-size: 18px;
    --arrow-weight: 700;
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--bg);
    padding-top: 140px;
    line-height: 1.6;
}

/* ---------------- HAMBURGER ---------------- */
.hamburger {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 10px;
    z-index: 6000;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger active state */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ---------------- MODERN HERO SECTION - RESPONSIVE DÜZENLEMELER ---------------- */
.highlight-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2f4ff 50%, #f1f8ff 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

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

/* Hero içerik container */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 100%;
}

/* Ana içerik bölümü */
.hero-main {
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(14, 106, 237, 0.1), rgba(26, 117, 255, 0.05));
    border: 1px solid rgba(14, 106, 237, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--warning);
}

/* Ana başlık stili */
.hero-main h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.hero-main h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-main h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-main p {
    font-size: 17px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Butonlar */
.buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-service {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: 2px solid transparent;
    box-shadow: var(--shadow-medium);
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14, 106, 237, 0.3);
}

.btn-contact {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: var(--shadow-light);
}

.btn-contact:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14, 106, 237, 0.2);
}

/* Metrikler */
.metrics {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
    min-width: 120px;
}

.metric-item strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.metric-item span {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hizmet kartları */
.hero-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 24px;
    color: #fff;
}

.service-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.info-left-modern .btn-contact:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Modern Metrics */
.metrics {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
    position: relative;
}

.metric-item strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-item span {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Icon Cards */
.info-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(14, 106, 237, 0.1);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-light);
    min-width: 280px;
}

.icon-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
    border-color: rgba(14, 106, 237, 0.2);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(14, 106, 237, 0.3);
}

.icon-content h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.icon-content p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    font-weight: 400;
}

/* Modern CTA Box */
.info-box {
    width: 480px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(14, 106, 237, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(14, 106, 237, 0.15);
}

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

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

.cta-header h2 {
    font-size: 24px;
    margin: 0;
    color: var(--text);
    font-weight: 700;
}

.info-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.cta-feature i {
    color: var(--success);
    font-size: 12px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: var(--shadow-light);
}

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

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}



/* Sol taraf butonlar */
.info-left-modern .buttons a {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hizmetler butonu */
.info-left-modern .btn-service {
    background: #0e6aed;
    color: #fff;
    border: 2px solid #0e6aed;
}

.info-left-modern .btn-service:hover {
    background: #fff;
    color: #0e6aed;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(14, 106, 237, 0.3);
}

/* İletişim butonu */
.info-left-modern .btn-contact {
    background: #fff;
    border: 2px solid #0e6aed;
    color: #0e6aed;
}

.info-left-modern .btn-contact:hover {
    background: #0e6aed;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(14, 106, 237, 0.3);
}

.features {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(14, 106, 237, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(14, 106, 237, 0.1), rgba(26, 117, 255, 0.05));
    border: 1px solid rgba(14, 106, 237, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-badge i {
    color: var(--warning);
}

.features h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.features h2 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-desc {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature {
    background: #ffffff;
    border: 1px solid rgba(14, 106, 237, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(14, 106, 237, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(14, 106, 237, 0.3);
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-content h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: var(--text);
    font-weight: 700;
}

.feature-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: var(--success);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.advantages-modern {
    background: #fff;
    padding: 80px 120px;
}

.advantages-modern h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #253843;
    margin-bottom: 50px;
}

/* Grid düzeni */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 64px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Her madde */
.adv-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.adv-item i {
    font-size: 22px;
    color: #0e6aed;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Başlıklar */
.adv-text h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: #253843;
}

/* Açıklamalar */
.adv-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    opacity: 0.9;
}

/* Hover efekti */
.adv-item:hover i {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

.materials-section {
    background: #f9fbff;
    padding: 100px 60px;
    /* sağ-sol boşluk eklendi */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.materials-section h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #253843;
    margin-bottom: 14px;
}

.materials-desc {
    text-align: center;
    max-width: 850px;
    /* biraz daha geniş */
    margin: 0 auto 60px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Liste görünümü */
.materials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 120px;
    /* aralıklar genişletildi */
    align-items: start;
    justify-content: center;
    max-width: 1100px;
    /* daha ferah */
    margin: 0 auto;
}

/* Her satır */
.material-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    /* ikon ve yazı arası boşluk */
}

/* İkon */
.material-item i {
    font-size: 26px;
    flex-shrink: 0;
}

/* Başlık */
.material-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #253843;
}

/* Açıklama */
.material-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .materials-section {
        padding: 60px 24px;
    }

    .materials-list {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 95%;
    }
}

/* ---------------- STICKY NAVBAR SCROLL EFFECT ---------------- */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 5000;
    background: transparent;
    backdrop-filter: blur(0px);
    transition: all 0.4s ease;
}

/* Scroll sonrası görünüm */
header.site-header.scrolled {
    background: linear-gradient(135deg,
            rgba(14, 106, 237, 0.22) 0%,
            /* 🔹 önceki 0.12 idi, biraz koyulaştırıldı */
            rgba(255, 255, 255, 0.94) 100%
            /* 🔹 beyaz kısmı da biraz daha dolgun */
        );
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(14, 106, 237, 0.18);
}

/* Scroll sonrası nav link renkleri */
header.site-header.scrolled nav.main-nav a {
    color: #1f2b36;
}

header.site-header.scrolled nav.main-nav a:hover {
    color: #0b57c1;
    /* biraz daha doygun mavi */
}


header.site-header.scrolled {
    border-bottom: 1px solid rgba(14, 106, 237, 0.15);
}

footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    color: #b8c1d0;
    padding: 60px 100px 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Dekoratif arka plan deseni */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 106, 237, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Logo alanı */
.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-logo p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
}

/* Link kolonları */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0e6aed;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    width: 0;
    height: 1px;
    background: #0e6aed;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #0e6aed;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 10px;
}

/* Sosyal medya */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #94a3b8;
}

.footer-social a:hover {
    background: #0e6aed;
    border-color: #0e6aed;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(14, 106, 237, 0.3);
}

/* Alt kısım */
.footer-bottom {
    grid-column: span 5;
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    font-size: 13px;
}

.footer-bottom p {
    margin: 8px 0;
    color: #64748b;
}

.footer-bottom a {
    color: #0e6aed;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(14, 106, 237, 0.1), rgba(26, 117, 255, 0.05));
    border: 1px solid rgba(14, 106, 237, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-bottom a::before {
    content: '💻';
    margin-right: 2px;
    font-size: 10px;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.footer-bottom a:hover {
    color: #fff;
    background: linear-gradient(135deg, #0e6aed, #1a75ff);
    border-color: #0e6aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 106, 237, 0.4);
}

.footer-bottom a:hover::after {
    left: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    footer {
        grid-template-columns: 1fr 1fr;
        padding: 50px 30px 20px;
        gap: 30px;
        text-align: left;
    }
    
    footer::before {
        display: none;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        margin: 0 auto 16px;
        display: block;
    }
    
    .footer-logo p {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        transform: translateY(-2px);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        grid-column: 1 / -1;
        text-align: center;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
    }
}

@media (max-width: 600px) {
    footer {
        grid-template-columns: 1fr;
        padding: 40px 20px 15px;
        gap: 25px;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-logo p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .footer-links h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .footer-links a {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .footer-bottom {
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    footer {
        padding: 30px 15px 10px;
        gap: 20px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-logo p {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .footer-links h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .footer-links a {
        padding: 6px 0;
        font-size: 13px;
    }
    
    .footer-social {
        gap: 12px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .footer-bottom {
        margin-top: 10px;
        padding-top: 10px;
        gap: 8px;
    }
    
    .footer-bottom p {
        font-size: 11px;
        margin: 0;
    }
}


/* Mobil görünüm */
@media (max-width: 800px) {
    body {
        padding-top: 100px;
    }

    .highlight-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-main h1 {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        margin-bottom: 15px;
    }
    
    .hero-main p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .buttons a {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .metrics {
        gap: 20px;
    }
    
    .metric-item {
        min-width: 100px;
    }
    
    .metric-item strong {
        font-size: 1.8rem;
    }
    
    .hero-services {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-card h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 13px;
    }

    .features {
        padding: 60px 20px;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantages-modern {
        padding: 60px 20px;
    }

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

    .materials-section {
        padding: 60px 20px;
    }

    .materials-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .highlight-section {
        padding: 30px 0;
    }
    
    .hero-main h4 {
        font-size: 16px;
    }
    
    .hero-main h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .hero-main p {
        font-size: 15px;
    }
    
    .buttons a {
        padding: 10px 20px;
        max-width: 200px;
    }
    
    .metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .metric-item {
        min-width: auto;
    }
    
    .hero-services {
        max-width: 300px;
    }
    
    .service-card {
        padding: 15px 10px;
    }
}



/* Services Page Styles */

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

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #0a0f23 0%, #1a1f3a 40%, #0e6aed 100%);
    padding: 180px 0 120px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(14, 106, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 117, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 32px;
    opacity: 0;
    animation: slideInFromLeft 1s ease 0.3s forwards;
    background: linear-gradient(135deg, #ffffff 0%, #e2f4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(14, 106, 237, 0.3);
}

.services-hero p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    opacity: 0;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: slideInFromRight 1s ease 0.6s forwards;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0e6aed;
    display: block;
    text-shadow: 0 0 20px rgba(14, 106, 237, 0.5);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatShape 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.floating-shape:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

/* Service Category Sections */
.service-category {
    padding: 100px 0;
    position: relative;
}

.service-category.alt-bg {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

/* Category Title */
.category-title {
    font-size: 42px;
    color: #1a1f2e;
    margin-bottom: 70px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.category-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.category-title i {
    color: #0e6aed;
    font-size: 36px;
}

/* Service Items */
.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

/* Service Content */
.service-content h3 {
    font-size: 32px;
    color: #1a1f2e;
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0e6aed, #1a75ff);
    border-radius: 2px;
}

.service-content p {
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content li {
    padding: 12px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-content li:hover {
    transform: translateX(5px);
}

.service-content li i {
    color: #0e6aed;
    font-size: 14px;
    min-width: 20px;
}

/* Service Image */
.service-image {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    min-height: 350px;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 106, 237, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Service Grid for Formatif İmalat */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0e6aed, #1a75ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(14, 106, 237, 0.15);
    border-color: rgba(14, 106, 237, 0.2);
}

.service-card i {
    font-size: 52px;
    background: linear-gradient(135deg, #0e6aed, #1a75ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: inline-block;
}

.service-card h3 {
    font-size: 24px;
    color: #1a1f2e;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

/* Other Services Section */
.other-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.other-service-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #0e6aed;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-20px);
    position: relative;
    overflow: hidden;
}

.other-service-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(14, 106, 237, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.other-service-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.other-service-item:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 45px rgba(14, 106, 237, 0.12);
    border-left-width: 8px;
}

.other-service-item h3 {
    font-size: 22px;
    color: #1a1f2e;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.other-service-item h3 i {
    color: #0e6aed;
    font-size: 24px;
}

.other-service-item p {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 106, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.services-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.services-cta p {
    font-size: 20px;
    opacity: 0;
    margin-bottom: 40px;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.cta-buttons .btn {
    padding: 18px 45px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #0e6aed 0%, #1a75ff 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(14, 106, 237, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 106, 237, 0.4);
}

.cta-buttons .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #1a1f2e;
    border-color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
    }
    50% {
        transform: translateY(-40px) translateX(-5px) scale(0.9);
    }
    75% {
        transform: translateY(-10px) translateX(-15px) scale(1.05);
    }
}

/* Stagger animations */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }

.other-service-item:nth-child(1) { transition-delay: 0.1s; }
.other-service-item:nth-child(2) { transition-delay: 0.2s; }
.other-service-item:nth-child(3) { transition-delay: 0.3s; }
.other-service-item:nth-child(4) { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .services-hero {
        padding: 140px 0 80px;
        min-height: 70vh;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .services-hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .hero-stat-number {
        font-size: 2.2rem;
    }
    
    .floating-shape {
        display: none;
    }
    
    .service-category {
        padding: 60px 0;
    }
    
    .category-title {
        font-size: 32px;
        flex-direction: column;
        gap: 10px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .service-item.reverse {
        direction: ltr;
    }
    
    .service-content h3 {
        font-size: 26px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
        justify-content: center;
    }
}

/* Additional Animations for Index Page */
@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-15px, -60px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(-30px, -20px) rotate(270deg) scale(1.05);
    }
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease 0.3s forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s ease 0.6s forwards;
}

.fade-in-zoom {
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInZoom 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }
.delay-5 { animation-delay: 0.9s; }
.delay-6 { animation-delay: 1.1s; }

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================ ABOUT PAGE STYLES ================ */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0a0f23 0%, #1a1f3a 40%, #0e6aed 100%);
    padding: 180px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(14, 106, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 117, 255, 0.2) 0%, transparent 50%);
    animation: float 8s ease-in-out infinite;
}

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

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e2f4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.about-hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero h2 span {
    color: #0e6aed;
}

.about-hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0e6aed;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-card {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(14, 106, 237, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(14, 106, 237, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(14, 106, 237, 0.3);
}

.card-icon i {
    font-size: 28px;
    color: white;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.about-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 24px;
}

.about-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.about-card li i {
    color: var(--success);
    font-size: 14px;
}

/* Vision Mission Section */
.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0f23 0%, #1a1f3a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 106, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.vm-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.vm-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(14, 106, 237, 0.2);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(14, 106, 237, 0.4);
}

.vm-icon i {
    font-size: 32px;
    color: white;
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.vm-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.vm-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.highlight-item {
    background: rgba(14, 106, 237, 0.2);
    color: #0e6aed;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(14, 106, 237, 0.3);
}

/* Company Values Section */
.company-values {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(14, 106, 237, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(14, 106, 237, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(14, 106, 237, 0.3);
}

.value-icon i {
    font-size: 24px;
    color: white;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Team Section */
.our-team {
    padding: 100px 0;
    background: #ffffff;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.team-stat {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(14, 106, 237, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.team-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.team-stat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(14, 106, 237, 0.2);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(14, 106, 237, 0.3);
}

.stat-icon i {
    font-size: 28px;
    color: white;
}

.team-stat h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.team-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.team-stat p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2f4ff 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(14, 106, 237, 0.1);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.advantage-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(14, 106, 237, 0.2);
}

.advantage-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    box-shadow: 0 6px 20px rgba(14, 106, 237, 0.3);
    flex-shrink: 0;
}

.advantage-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.advantage-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 106, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 25px rgba(14, 106, 237, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 106, 237, 0.4);
}

.cta-buttons .btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--text);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-content-grid,
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================ PROJECTS PAGE STYLES ================ */

/* Projects Hero Section */
.projects-hero {
    background: linear-gradient(135deg, #0a0f23 0%, #1a1f3a 40%, #0e6aed 100%);
    padding: 180px 0 120px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(14, 106, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(26, 117, 255, 0.2) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.projects-hero .container {
    position: relative;
    z-index: 2;
}

.projects-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.projects-hero h1 {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e2f4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.projects-hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.projects-hero h2 span {
    color: #0e6aed;
}

.projects-hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Project Categories */
.project-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.category-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(14, 106, 237, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-item:hover::before {
    transform: scaleX(1);
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(14, 106, 237, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(14, 106, 237, 0.3);
}

.category-icon i {
    font-size: 32px;
    color: white;
}

.category-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.category-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 20px;
}

.category-stats {
    background: rgba(14, 106, 237, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

/* Featured Projects */
.featured-projects {
    padding: 100px 0;
    background: #ffffff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(14, 106, 237, 0.1);
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(14, 106, 237, 0.2);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-category,
.project-tech {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-category {
    color: var(--primary);
    border: 1px solid rgba(14, 106, 237, 0.2);
}

.project-tech {
    color: #059669;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.project-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 24px;
}

.project-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

.spec-item i {
    color: var(--primary);
    font-size: 12px;
}

.project-result {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(14, 106, 237, 0.1), rgba(26, 117, 255, 0.1));
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(14, 106, 237, 0.2);
}

.project-result i {
    font-size: 16px;
}

/* Project Process */
.project-process {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2f4ff 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(14, 106, 237, 0.1);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(14, 106, 237, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 25px rgba(14, 106, 237, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(14, 106, 237, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(14, 106, 237, 0.2);
}

.step-icon i {
    font-size: 28px;
    color: var(--primary);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Project Technologies */
.project-technologies {
    padding: 100px 0;
    background: #ffffff;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-item {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(14, 106, 237, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-item:hover::before {
    transform: scaleX(1);
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(14, 106, 237, 0.2);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(14, 106, 237, 0.3);
}

.tech-icon i {
    font-size: 32px;
    color: white;
}

.tech-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.tech-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Projects CTA Section */
.projects-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.projects-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 106, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.projects-cta .cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-text h2 span {
    color: #0e6aed;
}

.cta-text p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.projects-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.projects-cta .cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.projects-cta .cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 25px rgba(14, 106, 237, 0.3);
}

.projects-cta .cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 106, 237, 0.4);
}

.projects-cta .cta-buttons .btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.projects-cta .cta-buttons .btn-outline:hover {
    background: white;
    color: var(--text);
    border-color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Projects Page */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .project-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Projects Hero */
    .projects-hero {
        padding: 140px 0 80px;
        min-height: 70vh;
    }
    
    .projects-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .projects-hero h2 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .projects-hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Project Categories */
    .project-categories {
        padding: 60px 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-item {
        padding: 30px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .category-icon i {
        font-size: 24px;
    }
    
    .category-item h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .category-item p {
        font-size: 14px;
    }
    
    /* Featured Projects */
    .featured-projects {
        padding: 60px 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-overlay {
        top: 15px;
        left: 15px;
        right: 15px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .project-category,
    .project-tech {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .project-content {
        padding: 25px 20px;
    }
    
    .project-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .project-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .project-specs {
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .spec-item {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .spec-item i {
        font-size: 10px;
    }
    
    .project-result {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .project-result i {
        font-size: 14px;
    }
    
    /* Project Process */
    .project-process {
        padding: 60px 0;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: -15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
    
    .process-step h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .process-step p {
        font-size: 14px;
    }
    
    /* Project Technologies */
    .project-technologies {
        padding: 60px 0;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-item {
        padding: 30px 20px;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .tech-icon i {
        font-size: 24px;
    }
    
    .tech-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .tech-item p {
        font-size: 14px;
    }
    
    /* Projects CTA */
    .projects-cta {
        padding: 60px 0;
    }
    
    .projects-cta .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
    
    .projects-cta .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .projects-cta .cta-buttons .btn {
        padding: 14px 24px;
        font-size: 14px;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .projects-hero {
        padding: 120px 0 60px;
    }
    
    .projects-hero h1 {
        font-size: 2rem;
    }
    
    .projects-hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* All sections padding */
    .project-categories,
    .featured-projects,
    .project-process,
    .project-technologies,
    .projects-cta {
        padding: 40px 0;
    }
    
    /* Category items */
    .category-item {
        padding: 25px 15px;
    }
    
    .category-item h3 {
        font-size: 18px;
    }
    
    .category-item p {
        font-size: 13px;
    }
    
    /* Project cards */
    .project-content {
        padding: 20px 15px;
    }
    
    .project-content h3 {
        font-size: 16px;
    }
    
    .project-content p {
        font-size: 13px;
    }
    
    .project-specs {
        gap: 6px;
    }
    
    .spec-item {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .project-result {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    /* Process and tech items */
    .process-step,
    .tech-item {
        padding: 25px 15px;
    }
    
    .process-step h3,
    .tech-item h3 {
        font-size: 16px;
    }
    
    .process-step p,
    .tech-item p {
        font-size: 13px;
    }
    
    /* CTA section */
    .cta-text h2 {
        font-size: 1.5rem;
    }
    
    .cta-text p {
        font-size: 14px;
    }
    
    .projects-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .projects-cta .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* ================ CONTACT PAGE STYLES ================ */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #0a0f23 0%, #1a1f3a 40%, #0e6aed 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(14, 106, 237, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(26, 117, 255, 0.2) 0%, transparent 50%);
    animation: float 12s ease-in-out infinite;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.contact-hero .hero-badge i {
    color: #fbbf24;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e2f4ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    line-height: 1.2;
}

.contact-hero h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero h2 span {
    color: #60a5fa;
}

.contact-hero p {
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Methods */
.contact-methods {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(14, 106, 237, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(14, 106, 237, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(14, 106, 237, 0.3);
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.contact-card > p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info a,
.contact-info span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--secondary);
}

.contact-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(14, 106, 237, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.contact-hours i {
    font-size: 12px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.form-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.form-intro h2 span {
    color: var(--primary);
}

.form-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

.benefit-item i {
    color: var(--success);
    font-size: 14px;
    width: 16px;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(14, 106, 237, 0.1);
    box-shadow: var(--shadow-light);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.form-header p {
    font-size: 14px;
    color: #64748b;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 12px;
    width: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 106, 237, 0.1);
}

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

.form-group small {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    justify-content: center;
}

.form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.form-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 25px rgba(14, 106, 237, 0.3);
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(14, 106, 237, 0.4);
}

.form-actions .btn-outline {
    background: transparent;
    border-color: #e2e8f0;
    color: var(--text);
}

.form-actions .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2f4ff 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 60px;
}

.location-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(14, 106, 237, 0.1);
    box-shadow: var(--shadow-light);
    height: fit-content;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.location-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.location-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.location-status i {
    font-size: 8px;
    animation: pulse 2s infinite;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.detail-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.location-actions {
    display: flex;
    gap: 12px;
}

.location-actions .btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.location-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 6px 20px rgba(14, 106, 237, 0.3);
}

.location-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 106, 237, 0.4);
}

.location-actions .btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.location-actions .btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.map-container {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(14, 106, 237, 0.1);
    box-shadow: var(--shadow-light);
    height: 450px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2f4ff 100%);
    color: #64748b;
    text-align: center;
    padding: 40px;
}

.map-placeholder i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
}

.map-placeholder h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

.map-placeholder p {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 300px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(14, 106, 237, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
    border-color: rgba(14, 106, 237, 0.2);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(14, 106, 237, 0.05);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3548 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 106, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-cta .cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-cta .cta-text h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.contact-cta .cta-text h2 span {
    color: #0e6aed;
}

.contact-cta .cta-text p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-cta .cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-cta .cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 25px rgba(14, 106, 237, 0.3);
}

.contact-cta .cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 106, 237, 0.4);
}

.contact-cta .cta-buttons .btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
}

.contact-cta .cta-buttons .btn-outline:hover {
    background: white;
    color: var(--text);
    border-color: white;
    transform: translateY(-3px);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .contact-hero h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    
    .contact-hero h2 {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
    }
    
    .hero-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-cta .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .form-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .location-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .location-actions .btn {
        width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .form-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero-content {
        text-align: center;
    }
    
    .contact-hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
        margin-bottom: 15px;
    }
    
    .contact-hero h2 {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
        margin-bottom: 15px;
    }
    
    .contact-hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .location-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .location-details {
        text-align: left;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.3;
    }
    
    .contact-hero h2 {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .contact-hero p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .location-card {
        padding: 25px 15px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .detail-item i {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h4 {
        font-size: 16px;
        margin-right: 20px;
    }
    
    .faq-answer p {
        padding: 0 15px 15px;
        font-size: 14px;
    }
    
    .contact-cta .cta-text h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-cta .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
}

/* ============= SCROLL ANIMATIONS ============= */

/* Ana animasyon sınıfları */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Delay sınıfları - daha kısa süreler */
.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.2s; }
.delay-5 { transition-delay: 0.25s; }
.delay-6 { transition-delay: 0.3s; }

/* Projects sayfası için özel animasyon kuralları */
.project-card,
.category-item,
.process-step,
.tech-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Daha hızlı transition */
}

.project-card.visible,
.category-item.visible,
.process-step.visible,
.tech-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Farklı yönlerden gelen animasyonlar için delay'leri kaldır veya azalt */
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Görünür hale gelme */
.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-zoom.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Hero section'da alt elemanlar için animasyon */
.highlight-section > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Features section animasyonları */
.features {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.features.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Advantages section animasyonları */
.advantages-modern {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.advantages-modern.visible {
    opacity: 1;
    transform: translateY(0);
}

.adv-item {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.adv-item:nth-child(even) {
    transform: translateX(50px);
}

.adv-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Materials section animasyonları */
.materials-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.materials-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.material-item {
    opacity: 0;
    transform: scale(0.8) rotateY(15deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.material-item.visible {
    opacity: 1;
    transform: scale(1) rotateY(0);
}

/* Icon animasyonları için özel */
.dynamic-icons .icon-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dynamic-icons.visible .icon-item {
    opacity: 1;
    transform: translateY(0);
}

.dynamic-icons .icon-item:nth-child(1) { transition-delay: 0.1s; }
.dynamic-icons .icon-item:nth-child(2) { transition-delay: 0.2s; }
.dynamic-icons .icon-item:nth-child(3) { transition-delay: 0.3s; }

/* Info box animasyonu */
.info-box {
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-box.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Dinamik metin geçişleri */
.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.6s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-in;
}

/* Scroll ilerleme çubuğu */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Hover efektleri geliştirilmiş */
.feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.adv-item:hover {
    transform: translateY(-5px) scale(1.02);
}

.material-item:hover {
    transform: scale(1.05) rotateY(-5deg);
}

/* Mobil cihazlarda animasyonları hafiflet */
@media (max-width: 768px) {
    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .fade-in-zoom {
        transform: translateY(20px);
    }
    
    .feature,
    .adv-item,
    .material-item {
        transform: translateY(20px);
    }
    
    .feature:hover,
    .adv-item:hover,
    .material-item:hover {
        transform: translateY(-3px) scale(1.01);
    }
}

/* Reduced motion için */
@media (prefers-reduced-motion: reduce) {
    .fade-in-up,
    .fade-in-left,
    .fade-in-right,
    .fade-in-zoom,
    .feature,
    .adv-item,
    .material-item {
        transition: opacity 0.3s ease;
        transform: none;
    }
}

/* ============= TEAM MEMBERS STYLES ============= */

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid #f1f1f1;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.member-photo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.member-info h4 {
    color: var(--text);
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 600;
}

.member-position {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 15px;
}

.member-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.member-expertise span {
    background: rgba(14, 106, 237, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Team stats güncelleme */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .member-photo {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .member-expertise {
        flex-direction: column;
        align-items: center;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

/* ===================== GOOGLE MAPS STYLES ===================== */

/* Map Container Styles */
.map-container {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(14, 106, 237, 0.1);
    box-shadow: var(--shadow-light);
    height: 450px;
    position: relative;
}

#google-map {
    height: 100%;
    width: 100%;
    border-radius: 24px;
}

/* Map Loading State */
.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2f4ff 100%);
    color: #64748b;
    text-align: center;
    padding: 40px;
    z-index: 1;
    border-radius: 24px;
}

.map-loading.hidden {
    display: none;
}

.map-loading i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
    animation: spin 2s linear infinite;
}

.map-loading h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.map-loading p {
    font-size: 14px;
    margin: 0;
    max-width: 250px;
}

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

/* Custom Google Maps Controls */
.gm-style .gm-style-iw-c {
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg, transparent 50%, white 50%) !important;
}

/* Custom Info Window Styles */
.custom-info-window {
    max-width: 300px;
    padding: 20px;
    font-family: 'Inter', sans-serif;
}

.custom-info-window h3 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-info-window h3 i {
    font-size: 20px;
}

.custom-info-window p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 16px;
}

.custom-info-window .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.custom-info-window .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
}

.custom-info-window .contact-info i {
    color: var(--primary);
    width: 16px;
    flex-shrink: 0;
}

.custom-info-window .directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.custom-info-window .directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 106, 237, 0.3);
    color: white;
}

/* Map Error State */
.map-error {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2f4ff 100%);
    color: #64748b;
    text-align: center;
    padding: 40px;
    border-radius: 24px;
}

.map-error i {
    font-size: 48px;
    color: #f59e0b;
    margin-bottom: 16px;
}

.map-error h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.map-error p {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 300px;
}

.map-error button {
    background: #0e6aed;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.map-error button:hover {
    background: #0c5bc7;
    transform: translateY(-2px);
}

/* Mobile Responsive for Maps */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
        border-radius: 16px;
    }
    
    #google-map {
        border-radius: 16px;
    }
    
    .map-loading {
        border-radius: 16px;
        padding: 30px 20px;
    }
    
    .map-loading i {
        font-size: 36px;
    }
    
    .map-loading h4 {
        font-size: 16px;
    }
    
    .map-loading p {
        font-size: 13px;
    }
    
    .custom-info-window {
        max-width: 250px;
        padding: 15px;
    }
    
    .custom-info-window h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 250px;
    }
    
    .custom-info-window {
        max-width: 220px;
        padding: 12px;
    }
    
    .custom-info-window h3 {
        font-size: 14px;
    }
    
    .custom-info-window p {
        font-size: 12px;
    }
    
    .custom-info-window .contact-info span {
        font-size: 11px;
    }
    
    .custom-info-window .directions-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}