/**
 * Kids Safe Browser - Modern Landing Page Styles
 * SEO optimized, mobile responsive, Google index ready
 * Modern, professional design with smooth animations
 */
.about-company-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.about-company-info-list {
    width: 100%;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    width: 100%; /* Adjust the width as per your layout */
}

.info-item dt {
    font-weight: bold;
    margin-right: 10px;
}

.info-item dd {
    margin: 0;
    flex-grow: 1;
}

.info-item a {
    color: inherit;
    text-decoration: none;
}
.about-cta-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0 0 1rem;
    opacity: 0.95;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

/* About page - Our Company Information block */
.about-company-info {
    max-width: 850px;
    margin: 0 auto;
}
.about-company-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.about-company-info-list dt {
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0.25rem;
    color: var(--text-color, #333);
	width: 250px;
}
.about-company-info-list dt:first-child {
    margin-top: 0;
}
.about-company-info-list dd {
    margin: 0 0 0 1rem;
    padding: 0;
    line-height: 1.5;
    color: var(--text-muted, #555);
}
.about-company-info-list dd a {
    color: var(--primary-color, #2563eb);
    text-decoration: none;
}
.about-company-info-list dd a:hover {
    text-decoration: underline;
}
[dir="rtl"] .about-company-info-list dd {
    margin: 0 1rem 0 0;
}

.buy-cta-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.buy-cta-block {
    margin-top: -40px !important;
}

.login-subtitle {
    font-size: 12px !important;
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .container {
    direction: rtl;
}

[dir="rtl"] .navbar {
    direction: rtl;
}

[dir="rtl"] .hero-content {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .hero-text {
    text-align: right;
}

[dir="rtl"] .hero-image {
    direction: rtl;
}

[dir="rtl"] .feature-card,
[dir="rtl"] .testimonial-card,
[dir="rtl"] .cta-section {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .language-selector-wrapper {
    direction: rtl;
}

[dir="rtl"] .language-selector {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .btn {
    direction: rtl;
}

[dir="rtl"] .footer {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .footer-section {
    text-align: right;
}

[dir="rtl"] .footer-links {
    direction: rtl;
}

[dir="rtl"] .footer-links li {
    text-align: right;
}

/* RTL - Flexbox and Layout Adjustments */
[dir="rtl"] .navbar {
    flex-direction: row-reverse;
}

[dir="rtl"] .navbar-brand {
    margin-right: 0;
    margin-left: auto;
}

[dir="rtl"] .navbar-menu {
    margin-right: auto;
    margin-left: 0;
}

[dir="rtl"] .hero-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-slider .slide-in-left {
    animation: slideInRight 0.8s ease-out;
}

[dir="rtl"] .hero-slider .slide-in-right {
    animation: slideInLeft 0.8s ease-out;
}

[dir="rtl"] .features-grid,
[dir="rtl"] .how-it-works-grid,
[dir="rtl"] .testimonials-grid {
    direction: rtl;
}

[dir="rtl"] .feature-card,
[dir="rtl"] .testimonial-card {
    text-align: right;
}

[dir="rtl"] .btn {
    text-align: center;
}

[dir="rtl"] .language-selector-wrapper {
    margin-left: 0;
    margin-right: 1rem;
}

[dir="rtl"] .hero-illustration {
    direction: ltr; /* Images should stay LTR */
}

[dir="rtl"] .hero-image {
    direction: ltr; /* Image containers should stay LTR */
}

/* RTL - Text Alignment Overrides */
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
    text-align: right;
}

[dir="rtl"] p {
    text-align: right;
}

[dir="rtl"] ul,
[dir="rtl"] ol {
    padding-right: 1.5rem;
    padding-left: 0;
}

[dir="rtl"] li {
    text-align: right;
}

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    gap: 2rem;
}

.navbar-brand {
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
    padding-right: 10px; /* Toggle ve dil seçimi sağdan 10px içeride başlasın */
}

@media (max-width: 767px) {
    .navbar {
        align-items: flex-start;
    }
	.navbar-brand {
    margin-left: -10px;
    }
    .navbar-menu {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.75rem;
    }

    .language-selector-wrapper {
        order: -1; /* Toggle menüsünün üstünde dursun */
    }
}

.nav-links {
    display: none;
    list-style: none;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

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

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
    margin-top: 0.5rem;
}

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

@media (max-width: 767px) {
    /* Mobilde alt menüleri her zaman görünür ve dikey gösterelim */
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding-top: 0;
        background: transparent;
    }

    .nav-dropdown .nav-link {
        padding-left: 0;
    }
}

.nav-dropdown li {
    margin: 0;
}

.nav-dropdown .nav-link {
    display: block;
    padding: 0.3rem 1.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-dropdown .nav-link:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.nav-dropdown .nav-link::after {
    display: none;
}

[dir="rtl"] .nav-dropdown {
    left: auto;
    right: 0;
}

/* Icon link styles */
.nav-link.nav-icon {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    min-width: 40px;
    min-height: 40px;
}

.nav-link.nav-icon::after {
    display: none;
}

.nav-link.nav-icon:hover,
.nav-link.nav-icon:focus {
    background: var(--bg-secondary);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link.nav-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Language Selector */
.language-selector-wrapper {
    margin-left: 1rem;
    position: relative;
}

.language-selector {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%231e293b" d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.language-selector:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.language-selector:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

@media (max-width: 768px) {
    .language-selector-wrapper {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .language-selector {
        width: 100%;
    }
}

.language-selector {
    position: relative;
}

.lang-select {
    padding: 0.625rem 2.5rem 0.625rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236366f1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    transition: all 0.3s ease;
}

.lang-select:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-header {
    display: none;
}

@media (min-width: 768px) {
    .btn-header {
        display: inline-block;
    }
}

/* Hero Section - Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    padding: 0;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    padding: 4rem 0;
    color: white;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
}

/* Slide 1: Purple Gradient */
.hero-slide[data-slide="1"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slide[data-slide="1"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
}

/* Slide 2: Orange Gradient */
.hero-slide[data-slide="2"] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hero-slide[data-slide="2"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
}

/* Slide 3: Green Gradient */
.hero-slide[data-slide="3"] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hero-slide[data-slide="3"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.8; }
}

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

.hero-content-reverse {
    direction: rtl;
}

.hero-content-reverse > * {
    direction: ltr;
}

@media (min-width: 968px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 5rem;
    }
    
    .hero-content-reverse {
        grid-template-columns: 1fr 1.2fr;
    }
}

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

@media (min-width: 968px) {
    .hero-text {
        text-align: left;
    }
}

/* Slide In Animations */
.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Grow Up Animation */
.grow-up {
    animation: growUp 1s ease-out forwards;
}

@keyframes growUp {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(40px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 968px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.illustration-placeholder {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: var(--shadow-2xl);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0;
    outline: none;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.slider-arrow-prev {
    left: 2rem;
}

.slider-arrow-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-arrow-prev {
        left: 1rem;
    }
    
    .slider-arrow-next {
        right: 1rem;
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Safety Features Section */
.safety-features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.safety-features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.safety-features-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 35%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.safety-features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.safety-features-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.safety-features-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #475569;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.7;
}

.safety-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .safety-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.safety-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.safety-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.safety-feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.safety-feature-icon svg {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease;
}

.safety-feature-card:hover .safety-feature-icon svg {
    transform: scale(1.1);
}

.safety-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.safety-feature-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.features-section {
    background: var(--bg-secondary);
    padding: 7rem 0;
}

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

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works-section {
    background: var(--bg-primary);
    padding: 7rem 0;
}

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

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: -1;
    animation: ripple 2s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-secondary);
    padding: 7rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

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

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.0625rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-content .btn-primary:hover {
    background: var(--bg-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* Footer */
.main-footer {
    background: var(--text-primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.footer-contact-company {
    margin-bottom: 0.5rem;
}

.footer-contact-detail {
    font-size: 12px;
    margin-bottom: 0.5rem;
}

.footer-contact-detail a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-detail a:hover {
    color: rgba(255, 255, 255, 0.95);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Smooth Scroll */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    * {
        scroll-margin-top: 100px;
    }
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .btn {
        display: none;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Responsive Improvements */
@media (max-width: 767px) {
    .hero {
        padding: 4rem 0 5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .features-section,
    .how-it-works-section,
    .testimonials-section {
        padding: 5rem 0;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

/* Service Page Styles */
.service-hero-section {
    background: var(--gradient-primary);
    padding: 30px;
    text-align: center;
    color: white;
}

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

.service-hero-icon {
    margin-bottom: 2rem;
}

.service-icon-large {
    font-size: 5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

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

.service-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
}

.service-hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.service-content-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.service-content-area {
    margin-top: 3rem;
}

.service-content-block {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.service-content-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.service-content-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
    margin: 0;
}

/* RTL Support for Service Pages */
[dir="rtl"] .service-content-block {
    text-align: right;
}

[dir="rtl"] .service-content-title,
[dir="rtl"] .service-content-text {
    text-align: right;
}

/* Service About Section */
.service-about-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.service-about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (min-width: 968px) {
    .service-about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.service-about-text {
    order: 1;
}

.service-about-image {
    order: 2;
}

.service-about-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.service-about-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.service-about-description:last-child {
    margin-bottom: 0;
}
.service-image-placeholder {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 50px;
}
.service-image-placeholder-2 {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding-left: 160px;
    padding-right: 160px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 50px;
}

.service-image-icon {
    font-size: 8rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

/* Service Features Section */
.service-features-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

/* Service How Section */
.service-how-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

/* Service Benefits Section */
.service-benefits-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.service-benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (min-width: 968px) {
    .service-benefits-content {
        grid-template-columns: 1fr 1fr;
    }
}

.service-benefits-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-weight: 700;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* RTL Support for Service Pages */
[dir="rtl"] .service-about-content,
[dir="rtl"] .service-benefits-content {
    direction: rtl;
}

[dir="rtl"] .service-about-text,
[dir="rtl"] .service-benefits-title,
[dir="rtl"] .benefit-title,
[dir="rtl"] .benefit-text {
    text-align: right;
}

[dir="rtl"] .benefit-item {
    flex-direction: row-reverse;
}


.education-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.education-gallery-image {
    border-radius: 15px;
    width: 30%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-gallery-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .education-gallery-image {
        width: calc((100% - 30px) / 3);
    }
}

@media (max-width: 767px) {
    .education-gallery {
        flex-wrap: wrap;
    }

    .education-gallery-image {
        max-width: 100%;
		width: 100%;
    }
}

/* Lightbox styles for education gallery */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1050;
}

.lightbox-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 767px) {
    .service-hero-section {
        padding: 20px;
    }
    
    .service-content-section {
        padding: 3rem 0;
    }
    
    .service-content-block {
        padding: 2rem;
    }
    
    .service-icon-large {
        font-size: 4rem;
    }
    
    .service-about-section,
    .service-features-section,
    .service-how-section,
    .service-benefits-section {
        padding: 3rem 0;
    }
    
    .service-about-content,
    .service-benefits-content {
        grid-template-columns: 1fr;
    }
    
    .service-about-image,
    .service-benefits-image {
        order: 1;
    }
    
    .service-about-text,
    .service-benefits-content > div:first-child {
        order: 2;
    }
    
    .service-image-placeholder {
        min-height: 250px;
        padding: 1rem;
    }
    
    .service-image-icon {
        font-size: 6rem;
		width: 100%;
        height: auto;
    }
}

/* Scroll Top - sağ alt, footer üstü */
.scroll-top-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color, #6366f1);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(99, 102, 241, 0.5);
}
.scroll-top-btn:focus {
    outline: 2px solid var(--primary-color, #6366f1);
    outline-offset: 2px;
}
.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}
