/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Color - Tok Kırmızı */
    --primary-red: #C41E3A;
    --primary-red-dark: #A01529;
    --primary-red-light: #D63851;
    
    /* Secondary Color - Tok Mavi */
    --secondary-blue: #1B4B7D;
    --secondary-blue-dark: #123558;
    --secondary-blue-light: #2564A3;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
/* Typography */
--font-primary: 'Stack Sans Text', sans-serif;
--font-secondary: 'Ubuntu', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== HEADER ===== */
.header-main {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-main.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-blue);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
	margin-bottom: 0px;
}
/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

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

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary-red);
    padding-left: 25px;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--gray-700);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary-red);
    padding-left: 25px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(27, 75, 125, 0.95), rgba(196, 30, 58, 0.9)), 
                url('../images/hero-bg.webp') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
	
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgb(27 75 125 / 23%), rgb(196 30 58 / 14%));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.gradient-text {
    display: block;
    background: linear-gradient(90deg, #ffffff, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    font-size: 20px;
    color: #FFD700;
}

.feature-badge span {
    font-weight: 600;
    font-size: 14px;
}

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

.btn-primary-custom {
    background: var(--primary-red);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-primary-custom:hover {
    background: var(--primary-red-dark);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

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

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ===== SECTION COMMON STYLES ===== */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.rounded-custom {
    border-radius: var(--radius-xl);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #c41e3a78, #1b4b7d52);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.about-content {
    padding-left: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-item:hover {
    box-shadow: var(--shadow-md);
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-red);
}

.stat-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 0;
}

.stat-content p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: 2px solid var(--secondary-blue);
    color: var(--secondary-blue);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-outline-custom:hover {
    background: var(--secondary-blue);
    color: white;
    transform: translateX(5px);
}

/* ===== CTA SECTION 1 ===== */
.cta-section-1 {
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-blue-dark));
    padding: 60px 0;
}

.cta-content {
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: white;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--primary-red-dark);
    color: white;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: var(--section-padding);
    background: white;
}

.service-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 25px;
	padding:0px;
}


.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray-700);
    font-size: 14px;
}

.service-features i {
    color: #10B981;
    font-size: 14px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    gap: 15px;
    color: var(--secondary-blue);
}

.service-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* ===== WORK PROCESS SECTION ===== */
.work-process-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    position: relative;
    text-align: center;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-lg);
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 14px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background: white;
    overflow: hidden;
}

.testimonials-carousel {
    margin-top: 50px;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 50s linear infinite;
}

.testimonial-item {
    max-width: 400px;
    background: var(--gray-50);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.testimonial-content {
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.stars i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 3px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray-600);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-carousel:hover .testimonial-track {
    animation-play-state: paused;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

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

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

/* ===== CTA SECTION 2 ===== */
.cta-section-2 {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(27, 75, 125, 0.95), rgba(196, 30, 58, 0.9));
}

.cta-box {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
}

.cta-icon i {
    font-size: 3rem;
    color: white;
}

.cta-box h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

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

.btn-cta-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-red);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-cta-light:hover {
    box-shadow: var(--shadow-xl);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border: 2px solid white;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--secondary-blue);
}

/* ===== FOOTER ===== */
.footer-main {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-red);
    color: white;
}

.footer-column ul {
    list-style: none;
	padding: 0px;
}

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

.footer-column ul li a {
    color: var(--gray-300);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-red);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 30px 0;
}

.footer-disclaimer {
    background: var(--gray-800);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
}

/* ===== STICKY CALL BAR ===== */
.sticky-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.sticky-call-bar:hover {
    background: linear-gradient(135deg, var(--primary-red-dark), var(--primary-red));
    color: white;
}

.sticky-call-bar i {
    font-size: 18px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-link {
        display: block;
        padding: 15px 10px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        background: var(--gray-50);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
		display: none;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        min-width: 350px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
	
    
    /* DROPDOWN MOBİL DÜZELTME - EKLE */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        background: var(--gray-50);
        border-radius: 0;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding-left: 30px;
        font-size: 13px;
    }
    
    .dropdown-menu a:hover {
        padding-left: 35px;
    }

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom,
    .btn-cta-primary,
    .btn-cta-light,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial-item {
        min-width: 300px;
    }
    
    .sticky-call-bar {
        font-size: 14px;
        padding: 14px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== HAKKIMIZDA SAYFASI - EK CSS ===== */

/* Hero Page Style (Centered Title) */
.hero-page {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: white;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.page-description {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin: 0;
}

/* About Detail Section */
.about-detail-section {
    padding: 80px 0;
    background: white;
}

.about-block {
    margin-bottom: 80px;
}

.about-image-wrapper {
    position: relative;
}

.about-badge-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.badge-box {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.badge-box i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.badge-box span {
    font-size: 14px;
    font-weight: 600;
    display: block;
}

.about-text {
    padding-left: 30px;
}

.text-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    margin-bottom: 80px;
}

.mv-card {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-xl);
    height: 100%;
    transition: all 0.3s ease;
}

.mv-card:hover {
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin: 0;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--secondary-blue);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section {
    margin-bottom: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-blue-dark));
    border-radius: var(--radius-2xl);
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--primary-red);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Why Us Section */
.why-us-section {
    margin-bottom: 80px;
}

.reasons-list {
    margin-top: 30px;
}

.reason-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.reason-icon {
    flex-shrink: 0;
}

.reason-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

.reason-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.reason-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.why-us-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Responsive for About Page */
@media (max-width: 991px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .about-text {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-block {
        margin-bottom: 60px;
    }
    
    .mission-vision-section,
    .values-section,
    .why-us-section {
        margin-bottom: 60px;
    }
    
    .stats-section {
        margin-bottom: 60px;
        padding: 40px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mv-card {
        padding: 30px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .about-detail-section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .value-card {
        padding: 25px;
    }
}

/* ===== İLETİŞİM SAYFASI CSS ===== */

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--gray-50);
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

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

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 15px;
}

.contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-blue);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.form-description {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 30px;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.form-control.error {
    border-color: var(--danger);
}

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

/* Submit Button */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

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

.btn-submit i {
    font-size: 1.2rem;
}

/* Contact Info Side */
.contact-info-side {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-side h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.contact-info-side h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Working Hours */
.working-hours {
    margin-bottom: 30px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.hour-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--gray-700);
}

.time {
    color: var(--gray-600);
}

/* Info Box */
.info-box {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-red);
}

.info-box h4 {
    color: var(--primary-red);
    font-size: 1rem;
}

.info-box p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Quick Contact */
.quick-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gray-50);
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.quick-btn:hover {
    background: var(--primary-red);
    color: white;
}

.quick-btn i {
    font-size: 1.1rem;
}

/* Form Success Message */
.form-success {
    background: var(--success);
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: none;
}

.form-success.show {
    display: block;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-wrapper,
    .contact-info-side {
        padding: 30px;
    }
    
    .form-title {
        font-size: 1.75rem;
    }
    
    .contact-info-side {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .contact-form-wrapper,
    .contact-info-side {
        padding: 25px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .btn-submit {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* ===== GİZLİLİK POLİTİKASI SAYFASI CSS ===== */

/* Privacy Section */
.privacy-section {
    padding: 80px 0;
    background: var(--gray-50);
}

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

/* Company Info Box */
.company-info-box {
    background: linear-gradient(135deg, var(--secondary-blue), var(--secondary-blue-dark));
    color: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.company-info-box h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item strong {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

.info-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* Privacy Article */
.privacy-article {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.privacy-article h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-red);
}

.privacy-article h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-article p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 15px;
}

.privacy-article ul {
    margin: 15px 0 15px 20px;
    padding: 0;
}

.privacy-article ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.privacy-article ul li strong {
    color: var(--gray-900);
    font-weight: 600;
}

/* Contact Details in Privacy */
.contact-details {
    background: var(--gray-50);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-red);
    margin-top: 20px;
	margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details p:first-child {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-900);
}

.contact-details i {
    color: var(--primary-red);
    width: 20px;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(to right, rgba(196, 30, 58, 0.05), rgba(27, 75, 125, 0.05));
    border-left: 4px solid var(--primary-red);
}

.highlight-box h3 {
    color: var(--primary-red);
}

/* Table of Contents (Optional) */
.privacy-toc {
    background: white;
    padding: 30px;
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.privacy-toc h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.privacy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-toc ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.privacy-toc ul li:last-child {
    border-bottom: none;
}

.privacy-toc ul li a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-toc ul li a:hover {
    color: var(--primary-red);
}

/* Responsive */
@media (max-width: 991px) {
    .privacy-section {
        padding: 60px 0;
    }
    
    .company-info-box {
        padding: 30px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .privacy-article {
        padding: 30px;
    }
    
    .privacy-article h2 {
        font-size: 1.5rem;
    }
    
    .privacy-article h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .privacy-section {
        padding: 40px 0;
    }
    
    .company-info-box {
        padding: 25px;
    }
    
    .company-info-box h3 {
        font-size: 1.3rem;
    }
    
    .privacy-article {
        padding: 25px;
    }
    
    .privacy-article h2 {
        font-size: 1.3rem;
    }
    
    .privacy-article p,
    .privacy-article ul li {
        font-size: 0.95rem;
    }
    
    .contact-details {
        padding: 20px;
    }
}

/* ===== SERVİS DETAY SAYFASI CSS ===== */

/* Service Details Section */
.service-details-section {
    padding: 80px 0;
    background: var(--gray-50);
}

/* Service Detail Card */
.service-detail-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-xl);
}

/* Service Detail Image */
.service-detail-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.service-badge i {
    font-size: 1.8rem;
    color: white;
}

/* Service Detail Content */
.service-detail-content {
    padding: 30px;
}

.service-detail-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.service-detail-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* Service Detail List */
.service-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
    padding: 8px 0;
}

.service-detail-list i {
    color: var(--primary-red);
    font-size: 14px;
    flex-shrink: 0;
}

/* Responsive for Service Detail */
@media (max-width: 991px) {
    .service-details-section {
        padding: 60px 0;
    }
    
    .service-detail-image {
        height: 250px;
    }
    
    .service-detail-content {
        padding: 25px;
    }
    
    .service-detail-content h3 {
        font-size: 1.5rem;
    }
    
    .service-detail-list {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .service-detail-image {
        height: 200px;
    }
    
    .service-detail-content {
        padding: 20px;
    }
    
    .service-detail-content h3 {
        font-size: 1.3rem;
    }
    
    .service-detail-content p {
        font-size: 0.95rem;
    }
    
    .service-detail-list li {
        font-size: 0.9rem;
    }
    
    .service-badge {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }
    
    .service-badge i {
        font-size: 1.5rem;
    }
}