/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color1: #121422;
    --color2: #123a4e;
    --color3: #146985;
    --color4: #1da1c5;
    --color5: #20dad8;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 20, 34, 0.7);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

.header.scrolled {
    background: rgba(18, 20, 34, 0.85);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

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

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

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color5);
    transition: var(--transition);
}

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

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown > a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
    border: 1px solid rgba(0,0,0,0.1);
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--color1);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    color: var(--white);
    transform: translateX(5px);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 25%, var(--color3) 50%, var(--color4) 75%, var(--color5) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 1;
    opacity: 1;
    transition: opacity 1s ease;
}

.hero-video.loaded {
    opacity: 1;
}

.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, var(--color1) 0%, var(--color2) 25%, var(--color3) 50%, var(--color4) 75%, var(--color5) 100%),
        radial-gradient(circle at 20% 80%, rgba(32, 218, 216, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29, 161, 197, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(20, 218, 216, 0.2) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(32, 218, 216, 0.1) 10px, rgba(32, 218, 216, 0.1) 20px);
    background-size: 200% 200%, 100% 100%, 100% 100%, 100% 100%, 40px 40px;
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(18, 20, 34, 0.3) 0%, rgba(18, 58, 78, 0.2) 25%, rgba(20, 105, 133, 0.15) 50%, rgba(29, 161, 197, 0.1) 75%, rgba(32, 218, 216, 0.05) 100%),
        radial-gradient(circle at 20% 80%, rgba(32, 218, 216, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29, 161, 197, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(32, 218, 216, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.particle:nth-child(5) {
    top: 70%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 40px;
    background: rgba(18, 20, 34, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color5) 0%, var(--color4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    opacity: 1;
    line-height: 1.4;
    text-align: center;
    color: var(--white);
    letter-spacing: 0.02em;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}



.btn-primary {
    background: linear-gradient(135deg, var(--color5) 0%, var(--color4) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(32, 218, 216, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(32, 218, 216, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--color1);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 50%, var(--color3) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(29, 161, 197, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(32, 218, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(20, 58, 78, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services::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="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color4), var(--color5));
    border-radius: 2px;
}

.services-intro {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.01em;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    text-align: left;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--color4), var(--color5));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    background: rgba(255, 255, 255, 0.98);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--color4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(29, 161, 197, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--color5);
}

.service-card:hover .service-icon::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 900;
    color: rgba(32, 218, 216, 0.1);
    font-family: 'Orbitron', monospace;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color1);
    font-weight: 800;
    margin-top: 1rem;
    letter-spacing: -0.01em;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color4), var(--color5));
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card p {
    color: var(--color2);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    font-weight: 400;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color4);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(29, 161, 197, 0.1), rgba(32, 218, 216, 0.1));
    border-radius: 25px;
    border: 1px solid rgba(29, 161, 197, 0.2);
    position: relative;
    overflow: hidden;
}

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

.service-link:hover {
    color: var(--color5);
    gap: 1rem;
    background: linear-gradient(135deg, rgba(29, 161, 197, 0.2), rgba(32, 218, 216, 0.2));
    border-color: rgba(29, 161, 197, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 161, 197, 0.2);
}

.service-link:hover::before {
    left: 100%;
}

.service-link i {
    transition: var(--transition);
}

.services-more {
    text-align: center;
    margin-top: 3rem;
}

.services-more .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(135deg, var(--color3), var(--color4));
    color: white;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(29, 161, 197, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.services-more .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(29, 161, 197, 0.4);
    background: linear-gradient(135deg, var(--color4), var(--color5));
}

.services-more .btn:hover::before {
    left: 100%;
}

.services-more .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 161, 197, 0.3);
}

.services-more .btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    z-index: 1;
}

.services-more .btn:hover i {
    transform: rotate(45deg) scale(1.1);
    color: white;
}

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

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(29, 161, 197, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(32, 218, 216, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color1);
    font-weight: 800;
}

.about-text p {
    font-size: 1.3rem;
    color: var(--color2);
    line-height: 1.7;
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(29, 161, 197, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 0.95);
}

.stat h3 {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color4), var(--color5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(29, 161, 197, 0.2);
}

.stat p {
    color: var(--color1);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Quicksand', sans-serif;
    margin-top: 0.5rem;
}

/* Corporate Page Styles */
.corporate-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 50%, var(--color3) 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.corporate-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(29, 161, 197, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(32, 218, 216, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.corporate-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 20, 34, 0.7);
}

.corporate-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.corporate-hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.corporate-hero-content p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.6;
    font-weight: 300;
}

.corporate-about {
    padding: 100px 0;
    background: var(--white);
}

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

.corporate-about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color1);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.corporate-about-text p {
    font-size: 1.1rem;
    color: var(--color2);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.corporate-about-image {
    text-align: center;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--color3), var(--color4));
    padding: 3rem;
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(29, 161, 197, 0.2);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.image-placeholder h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color2) 0%, var(--color3) 100%);
    color: white;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.vision-card, .mission-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.vision-icon, .mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color5);
}

.vision-card h3, .mission-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.vision-card p, .mission-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.corporate-stats {
    padding: 80px 0;
    background: var(--white);
}

.corporate-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.corporate-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(29, 161, 197, 0.1);
    transition: all 0.3s ease;
}

.corporate-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    background: rgba(255, 255, 255, 0.95);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color4), var(--color5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(29, 161, 197, 0.2);
}

.stat-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color1);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Quicksand', sans-serif;
}

.stat-desc {
    color: var(--color2);
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    margin-top: 0.3rem;
}

.corporate-values {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    color: white;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color5);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* Service Pages Styles */
.service-hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, var(--color2) 0%, var(--color3) 100%);
    color: var(--white);
}

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

.service-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.service-hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

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

.service-hero-image {
    text-align: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
}

.service-details {
    padding: 6rem 0;
    background: var(--white);
}

.service-section {
    margin-bottom: 5rem;
}

.service-section h2 {
    font-size: 2.5rem;
    color: var(--color1);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
}

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

.service-detail-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.detail-icon {
    font-size: 3rem;
    color: var(--color4);
    margin-bottom: 1.5rem;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    color: var(--color1);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detail-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.service-detail-card li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-detail-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color5);
    font-weight: bold;
}

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

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    font-size: 3rem;
    color: var(--color4);
    margin-bottom: 1.5rem;
}

.advantage-item h3 {
    font-size: 1.3rem;
    color: var(--color1);
    margin-bottom: 1rem;
    font-weight: 700;
}

.advantage-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

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

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color5), var(--color4));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--color1);
    margin-bottom: 1rem;
    font-weight: 700;
}

.step p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Section */
/* Contact Section - Modern Design */
.contact {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 50%, var(--color3) 100%);
    color: var(--white);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contact-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color5);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.contact-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.contact-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.contact-particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.contact-particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.contact-particle:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: 3s;
    animation-duration: 6s;
}

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

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

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Contact Info Section */
.contact-info-header {
    margin-bottom: 3rem;
}

.contact-info-header h3 {
    color: var(--color5);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--color5);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.contact-card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color5) 0%, var(--color4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .contact-card-icon::after {
    opacity: 1;
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.contact-card-content h4 {
    color: var(--color5);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-card-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color5);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(32, 218, 216, 0.1);
    border: 1px solid rgba(32, 218, 216, 0.3);
}

.contact-link:hover {
    background: var(--color5);
    color: var(--white);
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    color: var(--color5);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Contact Form Section */
.contact-form-container {
    position: relative;
    margin-top: 9rem;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 218, 216, 0.1) 0%, rgba(29, 161, 197, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-header h3 {
    color: var(--color5);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.modern-form {
    position: relative;
    z-index: 1;
}

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

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.input-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.input-wrapper:focus-within::before {
    opacity: 0.1;
}

.input-wrapper:focus-within {
    border-color: var(--color5);
    box-shadow: 0 0 20px rgba(32, 218, 216, 0.3);
    transform: translateY(-2px);
}

.input-wrapper input,
.input-wrapper textarea,
.input-wrapper select {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 3rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    position: relative;
    z-index: 1;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.input-wrapper label {
    position: absolute;
    top: 1.2rem;
    left: 3rem;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.input-wrapper input:focus + label,
.input-wrapper input:valid + label,
.input-wrapper textarea:focus + label,
.input-wrapper textarea:valid + label,
.input-wrapper select:focus + label,
.input-wrapper select:valid + label {
    top: 0.5rem;
    left: 1rem;
    font-size: 0.8rem;
    color: var(--color5);
    font-weight: 600;
}

.input-wrapper i {
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.input-wrapper:focus-within i {
    color: var(--color5);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1.5rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.submit-btn {
    position: relative;
    overflow: hidden;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

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

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

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(32, 218, 216, 0.4);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateY(-50%) translateX(5px);
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    opacity: 1;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Contact Map */
.contact-map {
    margin-top: 4rem;
}

.map-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(32, 218, 216, 0.1) 0%, rgba(29, 161, 197, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover::before {
    opacity: 1;
}

.map-placeholder {
    position: relative;
    z-index: 1;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--color5);
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    color: var(--color5);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.map-btn {
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    border: none;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(32, 218, 216, 0.4);
}

/* Modern Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
    color: var(--white);
    padding: 4rem 0 1rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.footer-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color5);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.footer-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.footer-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    animation-duration: 12s;
}

.footer-particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 6s;
    animation-duration: 9s;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Company Info Section */
.company-info {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.company-info h3 {
    color: var(--color5);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-info p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.footer-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.footer-stat:hover {
    background: rgba(32, 218, 216, 0.1);
    border-color: var(--color5);
    transform: translateY(-3px);
}

.footer-stat .stat-number {
    display: block;
    color: var(--color5);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.footer-stat .stat-label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer Sections */
.footer-section h4 {
    color: var(--color5);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color5);
    border-radius: 1px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 5px;
}

.footer-links a i {
    color: var(--color5);
    font-size: 0.9rem;
    width: 16px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--color5);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: scale(1.2);
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.footer-contact-item i {
    color: var(--color5);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.4;
}

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

.footer-contact-item a:hover {
    color: var(--color5);
}

/* Footer Middle Section */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.footer-social h4,
.footer-newsletter h4 {
    color: var(--color5);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Newsletter */
.footer-newsletter p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    position: relative;
}

.newsletter-input {
    display: flex;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-input:focus-within {
    border-color: var(--color5);
    box-shadow: 0 0 20px rgba(32, 218, 216, 0.3);
}

.newsletter-input input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--color4) 0%, var(--color5) 100%);
    border: none;
    color: var(--white);
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(32, 218, 216, 0.4);
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 0.9rem;
}

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

.legal-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--color5);
}

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



@keyframes backgroundShift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        background-position: 0% 50%;
    }
    25% {
        transform: scale(1.05) rotate(0.5deg);
        background-position: 25% 50%;
    }
    50% {
        transform: scale(1.1) rotate(1deg);
        background-position: 50% 50%;
    }
    75% {
        transform: scale(1.05) rotate(0.5deg);
        background-position: 75% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.9;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Styles */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #121422 0%, #123a4e 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        z-index: 1000;
        padding: 90px 0 30px 0;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        left: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        font-size: 17px;
        padding: 20px 30px;
        color: white;
        text-decoration: none;
        display: block;
        width: 100%;
        text-align: left;
        transition: all 0.3s ease;
        font-weight: 500;
        position: relative;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: #20dad8;
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .nav-links a:hover::before {
        transform: scaleY(1);
    }
    
    .nav-links a:hover {
        background: rgba(32, 218, 216, 0.1);
        color: #20dad8;
        padding-left: 35px;
    }
    
    .dropdown {
        position: static;
        width: 100%;
    }
    
    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown > a i {
        transition: transform 0.3s ease;
        font-size: 14px;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .dropdown.active > a i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        padding: 0;
        margin: 0;
        border: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 400px;
    }
    
    .dropdown-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        color: rgba(255,255,255,0.8);
        padding: 18px 30px 18px 45px;
        font-size: 15px;
        border-bottom: none;
        background: transparent;
        margin: 0;
        border-radius: 0;
        display: block;
        text-align: left;
        transition: all 0.3s ease;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .dropdown-menu a:hover {
        background: rgba(32, 218, 216, 0.1);
        color: #20dad8;
        padding-left: 50px;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    .mobile-menu-btn.active {
        position: fixed;
        top: 20px;
        right: 20px;
    }
    
    .logo-image {
        height: 90px;
    }
    
    /* Hero Section Mobile */
    .hero-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        line-height: 1.5;
        font-weight: 400;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .services-intro {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* About Section Mobile */
    .about {
        padding: 3rem 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem 0.5rem;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.8rem;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 4rem 0;
    }
    
    .contact-header {
        margin-bottom: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-cards {
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-card-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-card-content p {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        margin-top: 4.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .input-wrapper input,
    .input-wrapper textarea,
    .input-wrapper select {
        padding: 1rem 1rem 1rem 2.5rem;
        font-size: 0.95rem;
    }
    
    .input-wrapper label {
        font-size: 0.9rem;
    }
    
    .input-wrapper i {
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
    
    /* Footer Mobile Styles */
    .footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-info {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo-image {
        height: 60px;
    }
    
    .company-info h3 {
        font-size: 1.3rem;
    }
    
    .company-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .footer-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .footer-stat {
        padding: 0.8rem 0.5rem;
    }
    
    .footer-stat .stat-number {
        font-size: 1.2rem;
    }
    
    .footer-stat .stat-label {
        font-size: 0.7rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .footer-contact-item {
        margin-bottom: 0.8rem;
    }
    
    .footer-contact-item p {
        font-size: 0.9rem;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 1rem;
    }
    
    .footer-newsletter p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .newsletter-input {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input input {
        border-radius: 15px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .newsletter-btn {
        border-radius: 15px;
        width: 100%;
        padding: 0.8rem 1.2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .legal-link {
        font-size: 0.8rem;
    }
    
    /* Video optimizasyonu */
    .hero-video {
        object-position: center center;
    }
    
    .hero-overlay {
        background: 
            linear-gradient(135deg, rgba(18, 20, 34, 0.8) 0%, rgba(18, 58, 78, 0.7) 25%, rgba(20, 105, 133, 0.6) 50%, rgba(29, 161, 197, 0.5) 75%, rgba(32, 218, 216, 0.4) 100%);
    }
    
    /* Service Pages Mobile */
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .service-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-hero-image {
        font-size: 5rem;
    }
    
    .service-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Corporate Page Mobile */
    .corporate-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .corporate-hero-content p {
        font-size: 1.1rem;
    }
    
    .corporate-about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .corporate-about-text h2 {
        font-size: 2rem;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .corporate-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Menu Small Screen */
    .nav-links {
        width: 270px;
        padding: 75px 0 20px 0;
    }
    
    .nav-links a {
        font-size: 15px;
        padding: 16px 20px;
        line-height: 1.3;
    }
    
    .dropdown-menu a {
        padding: 14px 20px 14px 35px;
        font-size: 13px;
        line-height: 1.3;
    }
    
    .nav-links a:hover {
        padding-left: 25px;
    }
    
    .dropdown-menu a:hover {
        padding-left: 40px;
    }
    
    .dropdown > a i {
        font-size: 12px;
        margin-right: 10px;
    }
    
    .mobile-menu-btn.active {
        top: 15px;
        right: 15px;
    }
    
    .hero-content {
        padding: 20px 15px;
        margin: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .footer-stat {
        padding: 1rem;
    }
    
    .footer-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .footer-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .newsletter-input input,
    .newsletter-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
} 