/* 
 * Trakya Yazılım - Ana Stil Dosyası
 */

/* =============== GENEL STILLER =============== */
:root {
    --primary: #0056b3;
    --primary-dark: #004494;
    --primary-light: #4d8fd3;
    --secondary: #8B5CF6;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --dark: #111827;
    --gray: #6B7280;
    --light: #F9FAFB;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --section-padding: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #444;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.1px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
}

.btn {
    padding: 0.7rem 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.15);
}

.btn-light {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    background-color: var(--light);
    border-color: var(--light);
    color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* =============== SECTION STYLES =============== */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-pre-title {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    max-width: 800px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

/* =============== NAVBAR =============== */
.navbar {
    padding: 0.8rem 2rem;
    transition: all 0.4s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 2rem;
}

.navbar-brand {
    font-weight: 700;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    padding: 1.2rem 1rem !important;
    color: var(--dark) !important;
    position: relative;
}

.navbar-dark .nav-link {
    color: var(--white) !important;
}

.navbar.scrolled .nav-link {
    color: var(--dark) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* =============== HERO SECTION =============== */
.hero-section {
    background: linear-gradient(135deg, #0a0f1e 0%, #111827 50%, #0d1b2a 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-shape-1,
.hero-shape-2 {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: pulse 10s infinite;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -200px;
    animation: pulse 15s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    display: block;
    background-color: rgba(255, 255, 255, 0.5);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(100%) translateX(0) rotate(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100%) translateX(100%) rotate(360deg);
        opacity: 0;
    }
}

/* =============== COUNTER SECTION =============== */
.counter-section {
    padding: 80px 0;
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
    z-index: 2;
}

.counter-row {
    background: transparent;
    border-radius: 15px;
    padding: 20px;
}

.counter-box {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4F46E5, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.counter-title {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

/* =============== SERVICES SECTION =============== */
.services-section {
    background-color: var(--light);
    padding: var(--section-padding) 0;
}

.service-box {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover .service-title,
.service-box:hover .service-desc,
.service-box:hover .service-features li,
.service-box:hover .service-link {
    color: var(--white);
}

.service-box:hover .service-icon {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-box:hover .service-features li i {
    background-color: rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.service-desc {
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

.service-features li i {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    background-color: rgba(0, 86, 179, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.4s ease;
}

.service-link {
    font-weight: 500;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =============== TECH SECTION =============== */
.tech-section {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.tech-logo {
    width: 130px;
    height: 130px;
    background-color: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tech-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tech-logo span {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

/* =============== GLOBAL PRESENCE =============== */
.global-presence {
    background-color: var(--light);
    padding: var(--section-padding) 0;
}

.office-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.office-card:hover {
    transform: translateY(-10px);
}

.office-flag {
    font-size: 3rem;
    margin-bottom: 20px;
}

.office-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.office-card h4 {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 25px;
    font-weight: 500;
}

.office-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-details li {
    display: flex;
    margin-bottom: 20px;
}

.office-details i {
    margin-top: 5px;
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.global-advantages {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--card-shadow);
}

.global-advantages h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.advantage-item {
    display: flex;
    margin-bottom: 25px;
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-right: 20px;
}

.advantage-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.advantage-content p {
    color: var(--gray);
    margin: 0;
}

/* =============== TESTIMONIALS SECTION =============== */
.testimonials-section {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.testimonial-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 30px;
    color: rgba(0, 86, 179, 0.1);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.testimonial-info p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

/* =============== CSR SECTION =============== */
.csr-section {
    background-color: var(--light);
    padding: var(--section-padding) 0;
}

.csr-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.csr-card:hover {
    transform: translateY(-10px);
}

.csr-image {
    height: 250px;
    overflow: hidden;
}

.csr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.csr-card:hover .csr-image img {
    transform: scale(1.1);
}

.csr-content {
    padding: 30px;
}

.csr-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.csr-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.csr-stat-item {
    text-align: center;
}

.csr-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.csr-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* =============== CONTACT OPTIONS =============== */
.contact-options {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.contact-option-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.contact-option-card:hover {
    transform: translateY(-10px);
}

.contact-option-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--primary);
    margin: 0 auto 25px;
}

.contact-option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-option-card p {
    margin-bottom: 25px;
    color: var(--gray);
}

/* =============== PROJECTS SECTION =============== */
.projects-section {
    background-color: var(--light);
    padding: var(--section-padding) 0;
}

.project-card.modern {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.4s ease;
}

.project-card.modern:hover {
    transform: translateY(-10px);
}

.project-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-content {
    padding: 25px;
    background-color: var(--white);
}

.project-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-content p {
    color: var(--gray);
    margin: 0;
}

/* =============== CTA SECTION =============== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    color: var(--white);
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--white);
}

.cta-box p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* =============== FOOTER =============== */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 80px 0 0;
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 180px;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* =============== YARDIMCI BUTONLAR =============== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

/* =============== BİLDİRİM STILLER =============== */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 350px;
    max-width: 90vw;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left: 4px solid var(--success);
}

.notification-error {
    border-left: 4px solid var(--danger);
}

.notification-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.notification-success .notification-icon {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.notification-error .notification-icon {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.notification-message {
    flex: 1;
    font-size: 14px;
}

.notification-close {
    cursor: pointer;
    color: var(--gray);
    transition: all 0.3s;
}

.notification-close:hover {
    color: var(--dark);
}

/* =============== NEWSLETTER SECTION =============== */
.newsletter-section {
    padding: 80px 0;
    position: relative;
    background-color: #0F172A;
    background-image: linear-gradient(to bottom, #0F172A, #1E293B);
    color: #fff;
}

.newsletter-box {
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.newsletter-shape-1,
.newsletter-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #4F46E5, #8B5CF6);
    opacity: 0.15;
    z-index: 0;
    filter: blur(30px);
}

.newsletter-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.newsletter-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: -50px;
}

.newsletter-form .form-control {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    height: 56px;
    background: linear-gradient(45deg, #4F46E5, #8B5CF6);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* =============== RESPONSIVE STILLER =============== */
@media (max-width: 1199.98px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 70px;
    }
    
    .navbar-nav {
        padding: 15px 0;
    }
    
    .nav-link.active:after {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .service-box {
        padding: 30px 20px;
    }
    
    .tech-logo {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content .d-flex {
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .counter-section {
        padding: 50px 0;
    }
    
    .counter-row {
        padding: 30px 15px;
    }
    
    .counter-box {
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
    
    .csr-card {
        margin-bottom: 30px;
    }
    
    .contact-option-card {
        margin-bottom: 30px;
    }
    
    .office-card, .global-advantages {
        margin-bottom: 30px;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .footer-title {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --section-padding: 50px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    .office-flag {
        font-size: 2.5rem;
    }
    
    .office-card h3 {
        font-size: 1.5rem;
    }
}

/* =============== ANIMASYONLAR =============== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}