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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

/* Top Contact Bar */
.top-bar {
    background: #2D9ADB;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-contact {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.top-contact:hover {
    opacity: 0.8;
}

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

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2D9ADB;
}

.btn-teklif {
    background: #2D9ADB;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2D9ADB;
}

.btn-teklif:hover {
    background: #004570;
    border-color: #004570;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, rgba(45, 154, 219, 0.85) 0%, rgba(0, 69, 112, 0.85) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 80px 0 80px 0;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge i {
    color: #ffffff;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-primary {
    background: #2D9ADB;
    color: white;
    text-decoration: none;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #2D9ADB;
}

.btn-primary:hover {
    background: #004570;
    border-color: #004570;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 154, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: white;
    color: #2D9ADB;
}

/* Hero Stats */
.hero-stats {
    padding: 10px 0;
    margin-top: 10px;
    margin-bottom: 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 100px;
}

.stat-item {
    color: white;
    text-align: center;
    flex: 1;
    padding: 10px 10px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon i {
    font-size: 18px;
    color: #F7F7F7;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
    line-height: 1;
}

.stat-label {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    opacity: 1;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(45, 154, 219, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 69, 112, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(45, 154, 219, 0.02) 50%, transparent 52%),
        repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(45, 154, 219, 0.01) 30px, rgba(45, 154, 219, 0.01) 31px, transparent 32px),
        repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(0, 69, 112, 0.01) 30px, rgba(0, 69, 112, 0.01) 31px, transparent 32px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px, 60px 60px;
    pointer-events: none;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(45, 154, 219, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 19px, rgba(45, 154, 219, 0.005) 20px, rgba(45, 154, 219, 0.005) 21px, transparent 22px);
    background-size: 100% 100%, 40px 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2D9ADB, #004570);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.service-features {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4b5563;
}

.service-features i {
    color: #10b981;
    font-size: 12px;
}

.btn-detail {
    background: #2D9ADB;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #2D9ADB;
}

.btn-detail:hover {
    background: #004570;
    border-color: #004570;
    gap: 12px;
}

.services-cta {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(45, 154, 219, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 29px, rgba(45, 154, 219, 0.004) 30px, rgba(45, 154, 219, 0.004) 31px, transparent 32px),
        repeating-linear-gradient(-45deg, transparent, transparent 29px, rgba(0, 69, 112, 0.004) 30px, rgba(0, 69, 112, 0.004) 31px, transparent 32px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

.services-cta h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.services-cta p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.btn-call {
    background: #004570;
    color: white;
    text-decoration: none;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-call:hover {
    background: #2D9ADB;
    transform: translateY(-1px);
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(45, 154, 219, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 69, 112, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 99px, rgba(45, 154, 219, 0.02) 100px, rgba(45, 154, 219, 0.02) 101px, transparent 102px);
    background-size: 100% 100%, 100% 100%, 200px 200px;
    pointer-events: none;
}

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

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

.partners-header h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.partners-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2D9ADB, #004570);
    border-radius: 2px;
}

.partners-header p {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.partners-scroll-container {
    overflow: hidden;
    margin-bottom: 50px;
    position: relative;
}

.partner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-arrow:hover {
    background: #2D9ADB;
    color: white;
    border-color: #2D9ADB;
    transform: translateY(-50%) scale(1.1);
}

.partner-arrow-left {
    left: 20px;
}

.partner-arrow-right {
    right: 20px;
}

.partner-arrow i {
    font-size: 16px;
}

.partners-scroll-container::before,
.partners-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 3;
    pointer-events: none;
}

.partners-scroll-container::before {
    left: 0;
    background: linear-gradient(90deg, #f1f5f9, transparent);
}

.partners-scroll-container::after {
    right: 0;
    background: linear-gradient(270deg, #f1f5f9, transparent);
}

.partners-track {
    display: flex;
    gap: 40px;
    align-items: center;
    transition: transform 0.5s ease;
}

.partner-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.partner-logo {
    max-width: 160px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partners-note {
    text-align: center;
}

.partners-note p {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 18px 35px;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(45, 154, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.partners-note p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 154, 219, 0.05), transparent);
    transition: left 0.8s ease;
}

.partners-note:hover p::before {
    left: 100%;
}

.partners-note i {
    color: #2D9ADB;
    font-size: 1.3rem;
}

/* Responsive Design for Partners */
@media (max-width: 1024px) {
    .partners {
        padding: 60px 0;
    }
    
    .partners-header h2 {
        font-size: 2.2rem;
    }
    
    .partner-item {
        width: 180px;
        height: 90px;
        padding: 15px;
    }
    
    .partner-logo {
        max-width: 140px;
        max-height: 50px;
    }
    
    .partners-track {
        gap: 30px;
    }
    
    .partner-arrow {
        width: 45px;
        height: 45px;
    }
    
    .partner-arrow-left {
        left: 15px;
    }
    
    .partner-arrow-right {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 50px 0;
    }
    
    .partners-header {
        margin-bottom: 40px;
    }
    
    .partners-header h2 {
        font-size: 1.9rem;
    }
    
    .partners-header p {
        font-size: 1.1rem;
    }
    
    .partner-item {
        width: 160px;
        height: 80px;
        padding: 12px;
    }
    
    .partner-logo {
        max-width: 120px;
        max-height: 45px;
    }
    
    .partners-track {
        gap: 25px;
    }
    
    .partners-note p {
        font-size: 1rem;
        padding: 15px 25px;
        flex-direction: column;
        gap: 8px;
    }
    
    .partners-scroll-container::before,
    .partners-scroll-container::after {
        width: 50px;
    }
    
    .partner-arrow {
        width: 40px;
        height: 40px;
    }
    
    .partner-arrow-left {
        left: 10px;
    }
    
    .partner-arrow-right {
        right: 10px;
    }
    
    .partner-arrow i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .partners-header h2 {
        font-size: 1.6rem;
    }
    
    .partner-item {
        width: 140px;
        height: 70px;
        padding: 10px;
    }
    
    .partner-logo {
        max-width: 100px;
        max-height: 40px;
    }
    
    .partners-track {
        gap: 20px;
        animation-duration: 20s;
    }
    
    .partners-note p {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(45, 154, 219, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(0, 69, 112, 0.04) 0%, transparent 40%),
        repeating-linear-gradient(45deg, transparent, transparent 39px, rgba(45, 154, 219, 0.015) 40px, rgba(45, 154, 219, 0.015) 41px, transparent 42px),
        repeating-linear-gradient(-45deg, transparent, transparent 39px, rgba(0, 69, 112, 0.015) 40px, rgba(0, 69, 112, 0.015) 41px, transparent 42px);
    background-size: 100% 100%, 100% 100%, 80px 80px, 80px 80px;
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-story h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-story p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 19px, rgba(45, 154, 219, 0.008) 20px, rgba(45, 154, 219, 0.008) 21px, transparent 22px),
        repeating-linear-gradient(-45deg, transparent, transparent 19px, rgba(0, 69, 112, 0.008) 20px, rgba(0, 69, 112, 0.008) 21px, transparent 22px);
    background-size: 40px 40px, 40px 40px;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.about-stat {
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D9ADB;
    margin-bottom: 10px;
}

.stat-text {
    color: #6b7280;
    font-weight: 500;
}

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

.mv-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #2D9ADB;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(45, 154, 219, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(60deg, transparent, transparent 24px, rgba(45, 154, 219, 0.006) 25px, rgba(45, 154, 219, 0.006) 26px, transparent 27px);
    background-size: 100% 100%, 50px 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.mv-icon {
    width: 60px;
    height: 60px;
    background: #2D9ADB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
    color: white;
}

.mv-item h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.mv-item p {
    color: #4b5563;
    line-height: 1.6;
}

.values {
    text-align: center;
}

.values h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.values > p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(45, 154, 219, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(30deg, transparent, transparent 19px, rgba(45, 154, 219, 0.004) 20px, rgba(45, 154, 219, 0.004) 21px, transparent 22px);
    background-size: 100% 100%, 40px 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: #2D9ADB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 32px;
    color: white;
}

.value-item h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #4b5563;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(45, 154, 219, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 69, 112, 0.05) 0%, transparent 50%),
        linear-gradient(90deg, transparent 49%, rgba(45, 154, 219, 0.02) 50%, transparent 51%),
        repeating-linear-gradient(60deg, transparent, transparent 49px, rgba(45, 154, 219, 0.008) 50px, rgba(45, 154, 219, 0.008) 51px, transparent 52px),
        repeating-linear-gradient(-60deg, transparent, transparent 49px, rgba(0, 69, 112, 0.008) 50px, rgba(0, 69, 112, 0.008) 51px, transparent 52px);
    background-size: 100% 100%, 100% 100%, 80px 80px, 100px 100px, 100px 100px;
    pointer-events: none;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(45, 154, 219, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(90deg, transparent, transparent 14px, rgba(45, 154, 219, 0.008) 15px, rgba(45, 154, 219, 0.008) 16px, transparent 17px);
    background-size: 100% 100%, 30px 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: #2D9ADB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: #1f2937;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: #2D9ADB;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details span {
    color: #6b7280;
    font-size: 14px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(45, 154, 219, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 24px, rgba(45, 154, 219, 0.003) 25px, rgba(45, 154, 219, 0.003) 26px, transparent 27px),
        repeating-linear-gradient(-45deg, transparent, transparent 24px, rgba(0, 69, 112, 0.003) 25px, rgba(0, 69, 112, 0.003) 26px, transparent 27px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 30px;
    font-weight: 600;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2D9ADB;
    box-shadow: 0 0 0 3px rgba(45, 154, 219, 0.1);
    background: white;
}

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

.btn-submit {
    width: 100%;
    background: #2D9ADB;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.btn-submit:hover {
    background: #004570;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px 0;
}

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

.footer-main {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-svg {
    height: 50px;
    width: auto;
    max-width: 180px;
    filter: brightness(0) invert(1);
}

.footer-main p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a,
.footer-contact span {
    color: #9ca3af;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #2D9ADB;
}

.footer-contact i {
    color: #2D9ADB;
    width: 16px;
}

/* Address alignment fix */
.footer-contact span {
    display: block;
    padding-left: 26px;
    position: relative;
}

.footer-contact span i {
    position: absolute;
    left: 0;
    top: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

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

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

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left p {
    color: #9ca3af;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-right a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-left {
        gap: 20px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-svg {
        height: 50px;
        max-width: 150px;
    }
    
    .nav-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        padding: 60px 0 70px 0;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 12px;
        font-weight: 400;
        padding: 5px 10px;
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        font-weight: 600;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        padding: 8px 0;
        margin-top: 8px;
        margin-bottom: 0;
    }
    
    .stat-icon {
        width: 30px;
        height: 30px;
    }
    
    .stat-icon i {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 1.4rem;
        font-weight: 600;
    }
    
    .stat-label {
        font-size: 0.7rem;
        font-weight: 400;
    }
    
    .stats-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
    .stat-item {
        flex: 0 0 45%;
        max-width: 45%;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        bottom: 15px;
    }
    
    .scroll-text {
        font-size: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo-svg {
        height: 40px;
        max-width: 140px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        font-weight: 600;
    }
    
    .hero-content {
        padding: 50px 0 60px 0;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 11px;
        font-weight: 400;
        padding: 4px 8px;
        gap: 5px;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        margin-bottom: 15px;
    }
    
    .hero-stats {
        padding: 6px 0;
        margin-top: 6px;
        margin-bottom: 0;
    }
    
    .stat-icon {
        width: 25px;
        height: 25px;
        margin-bottom: 5px;
    }
    
    .stat-icon i {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .stat-label {
        font-size: 0.6rem;
        font-weight: 400;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        flex: none;
        max-width: 100%;
        padding: 5px;
    }
    
    .scroll-indicator {
        bottom: -6rem;
    }
    
    .mouse {
        width: 20px;
        height: 32px;
    }
    
    .scroll-text {
        font-size: 9px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-cta {
        padding: 30px 20px;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

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

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

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

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

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

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

.scroll-indicator:hover .mouse {
    border-color: white;
}

.scroll-indicator:hover .wheel {
    background: white;
}

.scroll-indicator:hover .scroll-text {
    color: white;
} 

/* WhatsApp Icon Styling */
.btn-teklif .fab.fa-whatsapp,
.btn-primary .fab.fa-whatsapp,
.footer-contact .fab.fa-whatsapp {
    font-size: 1.2em;
}

/* Make WhatsApp icons in buttons slightly bigger than other icons */
.btn-teklif i,
.btn-primary i {
    font-size: 1.1em;
}

/* Specific styling for WhatsApp icons */
.btn-teklif .fab.fa-whatsapp,
.btn-primary .fab.fa-whatsapp {
    font-size: 1.3em;
}

/* Heart Animation */
.heart-animation {
    color: #e74c3c;
    animation: heartbeat 2s ease-in-out infinite;
    margin-right: 5px;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

/* Footer WhatsApp icon */
.footer-contact .fab.fa-whatsapp {
    font-size: 1.2em;
} 