/* CSS Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #e52714;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: #c41e0b;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #e52714;
}

.btn-primary:hover {
    background-color: #c41e0b;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #20b158;
}

.btn-outline {
    background-color: transparent;
    color: #e52714;
    border: 2px solid #e52714;
}

.btn-outline:hover {
    background-color: #e52714;
    color: #fff;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 16px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background-color: #333;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: #fff;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #e52714;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: #fff;
    margin-left: 10px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e52714;
}

.main-header {
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.main-nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
    position: relative;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-menu a:hover,
.nav-menu li.active > a {
    color: #e52714;
}

.dropdown-toggle i {
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

.mega-menu {
    min-width: 600px;
    display: flex;
    padding: 20px;
}

.mega-menu-column {
    flex: 1;
    padding: 0 15px;
}

.mega-menu-column a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-text {
    color: #fff;
    max-width: 600px;
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(229, 39, 20, 0.9);
    padding: 8px 15px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.slide-badge i {
    margin-right: 8px;
}

.slide-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.slide-feature {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.slide-feature i {
    margin-right: 8px;
    color: #ffd700;
}

.slide-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-prev,
.slider-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background: #fff;
}

/* Quick Stats */
.quick-stats {
    padding: 60px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.stat-icon i {
    font-size: 24px;
    color: #fff;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e52714;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Quick Quote Section */
.quick-quote {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
}

.quote-header {
    text-align: center;
    margin-bottom: 50px;
}

.quote-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.quote-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-feature {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.quote-feature i {
    margin-right: 15px;
    color: #28a745;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.quote-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e52714;
}

.form-note {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #28a745;
}

/* Sections */
.services-section,
.service-regions,
.why-choose-us,
.testimonials-section,
.cta-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: #e52714;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-badge i {
    margin-right: 8px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(229, 39, 20, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-link {
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-content h3 a {
    color: #333;
    transition: color 0.3s ease;
}

.service-content h3 a:hover {
    color: #e52714;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-more {
    color: #e52714;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.service-more:hover {
    color: #c41e0b;
}

.service-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-more:hover i {
    transform: translateX(5px);
}

.service-price {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #28a745;
}

/* Why Choose Us */
.why-choose-us {
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: #fff;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Regions Grid */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.region-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.region-card:hover {
    transform: translateY(-3px);
}

.region-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.region-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.region-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(229, 39, 20, 0.9);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.region-card:hover .region-image img {
    transform: scale(1.05);
}

.region-content {
    padding: 20px;
}

.region-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.region-content h3 a {
    color: #333;
    transition: color 0.3s ease;
}

.region-content h3 a:hover {
    color: #e52714;
}

.region-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.region-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.region-link {
    color: #e52714;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.region-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.region-link:hover i {
    transform: translateX(3px);
}

.region-quote {
    background: #e52714;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease;
}

.region-quote:hover {
    background: #c41e0b;
}

.region-quote i {
    margin-right: 5px;
}

/* Testimonials */
.testimonials-section {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 16px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.author-info h4 {
    margin-bottom: 3px;
    color: #333;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.cta-feature i {
    color: #ffd700;
    font-size: 20px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-logo img {
    height: 54px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social h4 {
    margin-bottom: 15px;
}

.footer-social .social-links {
    display: flex;
    gap: 10px;
}

.footer-social .social-links a {
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-social .social-links a:hover {
    background: #e52714;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e52714;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-item i {
    margin-right: 10px;
    color: #e52714;
    width: 20px;
}

.contact-item a {
    color: #ccc;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e52714;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    background: #222;
    padding: 20px 0;
    border-top: 1px solid #555;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-menu a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #e52714;
}

/* Floating Elements */
.whatsapp-float,
.quote-float {
    position: fixed;
    bottom: 20px;
    z-index: 1000;
}

.whatsapp-float {
    right: 20px;
}

.quote-float {
    right: 80px;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.btn-quote {
    background: #e52714;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(229, 39, 20, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(229, 39, 20, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px 20px 0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    color: #333;
}

.modal-body {
    padding: 20px 40px 40px;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
}

.close:hover {
    color: #000;
}

/* Form Messages */
.form-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    padding: 15px 0;
    color: #fff;
    font-weight: 600;
}

.form-message.success {
    background: #28a745;
}

.form-message.error {
    background: #dc3545;
}

.message-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin-left: 15px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: #f8f9fa;
    font-size: 14px;
}

.breadcrumb a {
    color: #e52714;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #666;
}

/* Page Content */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.page-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin: 30px 0 20px;
    color: #333;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #333;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #666;
}

/* Error Page */
.error-page {
    padding: 100px 0;
    text-align: center;
}

.error-page h1 {
    font-size: 3rem;
    color: #e52714;
    margin-bottom: 20px;
}

.error-page p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header content - logo ve menü yan yana kalacak */
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Logo boyutunu mobilde küçült */
    .logo img {
        height: 50px;
        width: auto;
    }
    
    /* Mobil menü toggle butonu animasyonu */
 /* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    transform-origin: center;
    margin: 2px 0;
    display: block;
}

/* Active state animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

/* Responsive Design - Mobile Menu */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header content - logo ve menü yan yana kalacak */
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Logo boyutunu mobilde küçült */
    .logo img {
        height: 50px;
        width: auto;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    /* Hide desktop navigation and show mobile version */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 80px 0 20px;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 999;
        margin: 0;
        list-style: none;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu > li > a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        color: #333;
        text-decoration: none;
    }
    
    .nav-menu > li > a:hover {
        background-color: #f8f9fa;
        color: #e52714;
    }
    
    .nav-menu > li > a i:first-child {
        margin-right: 10px;
    }
    
    /* Dropdown menus in mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 0;
        padding: 0;
    }
    
    .dropdown-menu.active {
        max-height: 400px;
    }
    
    .dropdown-menu li {
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 12px 40px;
        font-size: 14px;
        border-bottom: 1px solid #e9ecef;
        display: block;
        color: #666;
    }
    
    .dropdown-menu a:hover {
        background-color: #e9ecef;
        color: #e52714;
    }
    
    /* Mega menu adjustments */
    .mega-menu {
        flex-direction: column;
        min-width: auto;
        padding: 0;
        display: block;
    }
    
    .mega-menu-column {
        padding: 0;
    }
    
    .mega-menu-column a {
        padding: 10px 40px;
        border-bottom: 1px solid #e9ecef;
        display: block;
    }
    
    /* CTA button in mobile menu */
    .cta-btn {
        margin-top: 20px;
        padding: 0 20px;
    }
    
    .cta-btn .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    /* Top bar responsive */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-info a {
        margin-right: 0;
        font-size: 13px;
    }
    
    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    /* Scrolled header adjustments */
    .header.scrolled .logo img {
        height: 40px;
    }
    
    .header.scrolled .main-header {
        padding: 8px 0;
    }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .header.scrolled .logo img {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
    }
}

/* Touch and interaction improvements */
@media (hover: none) and (pointer: coarse) {
    .mobile-menu-toggle {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .dropdown-menu a {
        min-height: 40px;
    }
}

/* Focus states for accessibility */
.mobile-menu-toggle:focus {
    outline: 2px solid #e52714;
    outline-offset: 2px;
}

.nav-menu a:focus {
    outline: 2px solid #e52714;
    outline-offset: -2px;
    background-color: #f8f9fa;
}

/* Animation improvements */
.nav-menu {
    will-change: transform;
}

.mobile-menu-overlay {
    will-change: opacity;
}

.hamburger-line {
    will-change: transform;
}
    
    
 

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 2px 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    /* Aktif durumda hamburger -> X animasyonu */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 999;
        display: flex;
    }
    
    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        padding: 20px 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .mega-menu {
        flex-direction: column;
        min-width: auto;
        padding: 0;
    }
    
    .mega-menu-column {
        padding: 0;
    }
    
    .mega-menu-column a {
        padding: 10px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .slide-features {
        justify-content: center;
    }
    
    .slide-actions {
        justify-content: center;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .quote-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stat-item {
        flex-direction: column;
        padding: 20px 15px;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-menu ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .quote-float {
        right: 20px;
        bottom: 90px;
    }
    
    .btn-quote span {
        display: none;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .slide-text h1 {
        font-size: 2rem;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .quote-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-header h2 {
        font-size: 1.8rem;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .whatsapp-float a,
    .btn-quote {
        width: 50px;
        height: 50px;
        font-size: 20px;
        
    }
    
    .quote-float {
        bottom: 80px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.btn:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(229, 39, 20, 0.3);
}

.nav-menu a:focus {
    outline: 2px solid #e52714;
    outline-offset: 2px;
}