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

:root {
    --primary-color: #0f1629;
    --secondary-color: #1e293b;
    --accent-color: #3b82f6;
    --dark-color: #0f1629;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0f1629, #1e293b);
    --shadow: 0 8px 30px rgba(15, 22, 41, 0.15);
    --transition: all 0.3s ease;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(15, 22, 41, 0.08);
    box-shadow: 0 4px 30px rgba(15, 22, 41, 0.1);
}

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

.nav-logo h2 {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.8px;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    position: relative;
}

.nav-menu a:hover {
    color: var(--dark-color);
    background-color: rgba(15, 22, 41, 0.05);
}

.nav-menu .cta-btn {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
}

.nav-menu .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    background: #2563eb !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

/* Geometric Decorations */
.geometric-decoration {
    position: absolute;
    z-index: 0;
    opacity: 0.8;
}

.circle-1 {
    top: 12%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.12) 60%, rgba(59, 130, 246, 0.05) 80%, transparent 100%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    box-shadow: 0 0 100px rgba(59, 130, 246, 0.1);
}

.triangle-1 {
    top: 60%;
    left: 2%;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 180px solid rgba(59, 130, 246, 0.18);
    animation: float 8s ease-in-out infinite reverse;
    filter: drop-shadow(0 10px 20px rgba(59, 130, 246, 0.1));
}

.square-1 {
    top: 35%;
    right: 1%;
    width: 160px;
    height: 160px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.16) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(59, 130, 246, 0.16) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(59, 130, 246, 0.16) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(59, 130, 246, 0.16) 75%);
    background-size: 25px 25px;
    background-position: 0 0, 0 12.5px, 12.5px -12.5px, -12.5px 0px;
    border-radius: 25px;
    transform: rotate(45deg);
    animation: float 12s ease-in-out infinite;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.08);
}

.dots-pattern {
    top: 20%;
    left: 12%;
    width: 220px;
    height: 220px;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.3) 4px, transparent 4px);
    background-size: 30px 30px;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
    box-shadow: inset 0 0 50px rgba(59, 130, 246, 0.05);
}

.hexagon-1 {
    top: 75%;
    right: 15%;
    width: 140px;
    height: 140px;
    background: rgba(59, 130, 246, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: float 18s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(59, 130, 246, 0.15));
}

.wave-pattern {
    bottom: 10%;
    left: 40%;
    width: 200px;
    height: 60px;
    background: linear-gradient(90deg, 
                rgba(59, 130, 246, 0.2) 0%, 
                rgba(59, 130, 246, 0.1) 25%, 
                rgba(59, 130, 246, 0.2) 50%, 
                rgba(59, 130, 246, 0.1) 75%, 
                rgba(59, 130, 246, 0.2) 100%);
    border-radius: 50px;
    animation: float 14s ease-in-out infinite reverse;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

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

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

.btn.primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    background: #2563eb;
}

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

.btn.secondary:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Floating Cards */
.floating-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(15, 22, 41, 0.25);
}

.card:nth-child(2) {
    animation-delay: -2s;
    margin-left: 2rem;
}

.card:nth-child(3) {
    animation-delay: -4s;
    margin-left: 4rem;
}

.card i {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.card span {
    font-weight: 600;
    font-size: 1rem;
    opacity: 0.95;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

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

/* Section Base Styles */
section {
    position: relative;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
    padding: 8rem 0;
    position: relative;
    z-index: 2;
    margin-top: 0;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -8%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.15) 50%, rgba(59, 130, 246, 0.04) 100%);
    border-radius: 50%;
    z-index: 0;
    box-shadow: inset 0 0 100px rgba(59, 130, 246, 0.1);
}

.about::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -12%;
    width: 280px;
    height: 280px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.12) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(59, 130, 246, 0.12) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(59, 130, 246, 0.12) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(59, 130, 246, 0.12) 75%);
    background-size: 50px 50px;
    background-position: 0 0, 0 25px, 25px -25px, -25px 0px;
    border-radius: 20%;
    z-index: 0;
    filter: drop-shadow(0 10px 30px rgba(59, 130, 246, 0.08));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    position: relative;
}

.about-text h3:after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    display: block;
    margin: 1rem auto;
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(15, 22, 41, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    display: block;
}

.stat-label {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
}

.about-image {
    display: none;
}

/* Services Section */
.services {
    background: var(--light-color);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -8%;
    width: 350px;
    height: 500px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.06) 50%, rgba(59, 130, 246, 0.03) 100%);
    border-radius: 40% 60% 80% 20% / 30% 40% 70% 60%;
    transform: rotate(-20deg);
    z-index: 0;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.05);
}

.services::after {
    content: '';
    position: absolute;
    bottom: 2%;
    right: -10%;
    width: 280px;
    height: 280px;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.15) 3px, transparent 3px);
    background-size: 35px 35px;
    border-radius: 50%;
    z-index: 0;
    filter: drop-shadow(0 15px 30px rgba(59, 130, 246, 0.08));
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(15, 22, 41, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
    border-color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Team Section */
.team {
    background: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 2%;
    left: -10%;
    width: 250px;
    height: 380px;
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0.12) 50%, rgba(59, 130, 246, 0.04) 100%);
    border-radius: 60% 40% 80% 20% / 40% 60% 40% 80%;
    transform: rotate(25deg);
    z-index: 0;
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.06);
}

.team::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -6%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.12) 2px, transparent 2px);
    background-size: 25px 25px;
    border-radius: 50%;
    z-index: 0;
    filter: drop-shadow(0 20px 40px rgba(59, 130, 246, 0.08));
}

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

.team-member {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(15, 22, 41, 0.08);
    position: relative;
    overflow: hidden;
}

.team-member:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.team-member:hover:before {
    transform: scaleX(1);
}

.member-photo {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25);
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-description {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.member-social {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-social a::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;
}

.member-social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.member-social a:hover::before {
    left: 100%;
}

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

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--dark-color);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -6%;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 50%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 40%;
    transform: rotate(45deg);
    z-index: 0;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 8%;
    right: 2%;
    width: 240px;
    height: 240px;
    border: 4px solid rgba(59, 130, 246, 0.18);
    border-radius: 50%;
    border-style: dashed;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.testimonials .section-header h2 {
    color: var(--dark-color);
}

.testimonials .section-header p {
    color: var(--gray-color);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--gray-color);
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

.testimonial-content p:before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.author-info span {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(15, 22, 41, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--accent-color);
}

/* Partners Section */
.partners {
    background: var(--light-color);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 25%;
    left: -12%;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.04) 50%, rgba(59, 130, 246, 0.02) 100%);
    border-radius: 30% 70% 80% 20% / 20% 30% 80% 70%;
    z-index: 0;
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.06);
}

.partners::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -8%;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(59, 130, 246, 0.14);
    z-index: 0;
    filter: drop-shadow(0 20px 30px rgba(59, 130, 246, 0.08));
}

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

.partner-logo {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(15, 22, 41, 0.08);
    position: relative;
    overflow: hidden;
}

.partner-logo:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.partner-logo:hover:before {
    transform: scaleX(1);
}

.logo-placeholder {
    text-align: center;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -12%;
    width: 320px;
    height: 320px;
    background: conic-gradient(from 45deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.06), rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.04));
    border-radius: 50%;
    z-index: 0;
    animation: float 25s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(59, 130, 246, 0.08);
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 8%;
    left: -8%;
    width: 220px;
    height: 220px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(59, 130, 246, 0.1) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(59, 130, 246, 0.1) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(59, 130, 246, 0.1) 75%);
    background-size: 35px 35px;
    background-position: 0 0, 0 17.5px, 17.5px -17.5px, -17.5px 0px;
    border-radius: 30px;
    z-index: 0;
    filter: drop-shadow(0 15px 40px rgba(59, 130, 246, 0.1));
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

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

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

.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 22, 41, 0.08);
}

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

.form-group:last-of-type {
    grid-template-columns: 1fr;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Footer Geometric Decorations */
.footer::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 70%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: -8%;
    right: -12%;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.08) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.08) 75%);
    background-size: 45px 45px;
    background-position: 0 0, 0 22.5px, 22.5px -22.5px, -22.5px 0px;
    border-radius: 40%;
    z-index: 0;
    animation: float 25s ease-in-out infinite reverse;
}

/* Footer Decorative Elements */
.footer-decoration {
    position: absolute;
    z-index: 0;
}

.triangle-decoration {
    top: 20%;
    right: 5%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(255, 255, 255, 0.06);
    animation: float 18s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.dots-decoration {
    bottom: 30%;
    left: 8%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    border-radius: 50%;
    animation: float 22s ease-in-out infinite reverse;
}

.wave-decoration {
    top: 50%;
    right: 20%;
    width: 180px;
    height: 40px;
    background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0.08) 0%, 
                rgba(255, 255, 255, 0.04) 25%, 
                rgba(255, 255, 255, 0.08) 50%, 
                rgba(255, 255, 255, 0.04) 75%, 
                rgba(255, 255, 255, 0.08) 100%);
    border-radius: 20px;
    animation: float 16s ease-in-out infinite;
    transform: rotate(-15deg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    padding: 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    opacity: 0;
    transition: var(--transition);
}

.footer-section:hover::before {
    opacity: 1;
}

.footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.footer-section h3 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
}

.footer-section p,
.footer-section li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section li {
    position: relative;
    padding-left: 20px;
}

.footer-section li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
    transition: var(--transition);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-weight: 500;
}

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

.footer-section li:hover::before {
    color: var(--white);
    transform: translateX(5px);
}

.footer-section p i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.7);
    width: 16px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::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;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.social-links a:hover::before {
    left: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin: 0 -20px -2rem -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 2rem;
}

.footer-bottom p {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        height: 100vh;
        padding-top: 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about {
        padding: 6rem 0;
    }
    
    .services {
        padding: 6rem 0;
    }
    
    .team {
        padding: 6rem 0;
    }
    
    .testimonials {
        padding: 6rem 0;
    }
    
    .partners {
        padding: 6rem 0;
    }
    
    .contact {
        padding: 6rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .stat {
        padding: 2rem 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .floating-cards .card {
        margin-left: 0;
    }
    
    .footer {
        padding: 4rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-decoration {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
} 