/* ============================
   Global Styles & Reset
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary-red: #dc143c;
    --dark-red: #b91030;
    --light-red: #ff4560;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --dark-gray: #333333;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* ============================
   Header Styles
   ============================ */
.top-bar {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
    position: relative;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.logo h1 {
    color: var(--primary-red);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
}

.logo p {
    color: var(--gray);
    font-size: 12px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 10px;
    position: relative;
}

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

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

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

.phone-number {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 18px;
}

.phone-number i {
    font-size: 20px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.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 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;
    background-color: var(--primary-red);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Her slide için özel arka plan resimleri - 5 Slide */
/* Slide 1: Kaliteli Hizmet, Uygun Fiyat */
.slider-container .slide:nth-child(1) {
    background-image: linear-gradient(rgba(220, 20, 60, 0.10), rgba(185, 16, 48, 0.10)), 
                      url('images/ankara-temizlik-97.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Slide 2: Petek Temizliği */
.slider-container .slide:nth-child(2) {
    background-image: linear-gradient(rgba(220, 20, 60, 0.10), rgba(185, 16, 48, 0.10)), 
                      url('images/daire-temizlik.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Slide 3: İnşaat Sonrası Ev Temizliği */
.slider-container .slide:nth-child(3) {
    background-image: linear-gradient(rgba(220, 20, 60, 0.10), rgba(185, 16, 48, 0.10)), 
                      url('images/temizlik99.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Slide 4: Okul Temizliği */
.slider-container .slide:nth-child(4) {
    background-image: linear-gradient(rgba(220, 20, 60, 0.10), rgba(185, 16, 48, 0.10)), 
                      url('images/nazli-temizlik-ankara.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Slide 5: Hastane Temizliği */
.slider-container .slide:nth-child(5) {
    background-image: linear-gradient(rgba(220, 20, 60, 0.10), rgba(185, 16, 48, 0.10)), 
                      url('images/temizlik-1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.slide-text {
    color: var(--white);
    max-width: 800px;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.9), 1px 1px 3px rgba(0,0,0,0.8);
}

.slide-subtitle {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
    word-wrap: break-word;
}

.slide-title {
    font-size: 48px;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    word-wrap: break-word;
    line-height: 1.2;
}

.slide-brand {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: var(--white);
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    border: 2px solid var(--primary-red);
}

.btn-call:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

.btn-call i {
    font-size: 16px;
}

.btn-contact {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 14px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid var(--white);
}

.btn-contact:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

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

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* ============================
   Frequency Section
   ============================ */
.frequency-section {
    padding: 60px 0;
    background: var(--white);
}

.frequency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.frequency-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    border: 3px solid transparent;
}

.frequency-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.frequency-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.frequency-card h3 {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 15px;
}

.frequency-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* ============================
   About Section
   ============================ */
.about-section {
    padding: 80px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary-red);
    font-size: 18px;
    font-weight: 600;
}

.about-content h3 {
    font-size: 28px;
    color: var(--primary-red);
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    text-align: justify;
}

/* ============================
   Services Section
   ============================ */
.services-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.section-header h3 {
    font-size: 28px;
    color: var(--primary-red);
    margin-top: 10px;
}

.services-nav {
    margin-top: 20px;
    color: var(--gray);
}

.services-nav span {
    color: var(--primary-red);
    font-weight: bold;
    margin-left: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
    transform: translateY(-5px);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: var(--transition);
}

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

.service-card h4 {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

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

.service-divider {
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================
   Testimonials Section
   ============================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    border-left: 4px solid var(--primary-red);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--primary-red);
    font-size: 18px;
    font-weight: 600;
}

/* ============================
   Blog Section
   ============================ */
.blog-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.blog-intro {
    font-size: 18px;
    color: var(--gray);
    margin-top: 15px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.blog-date span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.blog-date small {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px;
}

.blog-content h4 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-category {
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--dark-red);
}

.blog-cta {
    margin-top: 60px;
    text-align: center;
    background: var(--white);
    padding: 50px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.blog-cta h3 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.blog-cta p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-call,
.cta-buttons .btn-contact {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.cta-buttons .btn-call:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.cta-buttons .btn-contact {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cta-buttons .btn-contact:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================
   Blog Post Pages
   ============================ */
.blog-post-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-post-header {
    margin-bottom: 50px;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-category {
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    color: var(--gray);
    font-size: 16px;
    font-weight: 500;
}

.blog-post-header h1 {
    font-size: 32px;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.3;
}

.blog-featured-image {
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.blog-post-content h2 {
    font-size: 28px;
    color: var(--dark-gray);
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-red);
}

.blog-post-content h3 {
    font-size: 24px;
    color: var(--dark-gray);
    margin: 30px 0 15px 0;
}

.blog-post-content h4 {
    font-size: 20px;
    color: var(--dark-gray);
    margin: 25px 0 10px 0;
}

.blog-post-content p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 16px;
}

.blog-post-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 8px;
    color: var(--gray);
}

.blog-post-content li strong {
    color: var(--dark-gray);
}

.services-list, .office-cleaning-features, .construction-cleaning-tips, .company-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.service-item, .tip-item, .feature-item, .service-block {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.service-item h4, .tip-item h4, .feature-item h4, .service-block h4 {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 18px;
}

.service-item ul, .service-block ul {
    margin-top: 15px;
    padding-left: 20px;
}

.service-item li, .service-block li {
    margin-bottom: 5px;
    font-size: 14px;
}

.company-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.feature-card h4 {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 18px;
}

.feature-card p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.service-overview-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition);
}

.service-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-overview-card h3 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 22px;
}

.service-overview-card p {
    color: var(--gray);
    margin: 0;
}

.cleaning-methods, .customer-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.method-item, .review-item {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.method-item h4, .review-item .review-stars {
    color: var(--primary-red);
    margin-bottom: 10px;
    font-size: 18px;
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars i {
    color: #ffc107;
    margin-right: 2px;
}

.method-item p, .review-item p {
    color: var(--gray);
    margin: 0 0 10px 0;
    font-style: italic;
}

.review-item cite {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 14px;
    font-style: normal;
}

.blog-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    text-align: center;
}

.back-to-blog {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.back-to-blog:hover {
    color: var(--dark-red);
}

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

.contact-form-wrapper {
    max-width: 700px;
    margin: 50px auto 0;
}

.contact-form {
    background: var(--light-gray);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 17px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc143c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.btn-submit {
    width: 100%;
    padding: 18px 30px;
    background: #25d366;
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 19px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 10px;
}

.btn-submit i {
    font-size: 24px;
}

.btn-submit:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ============================
   Footer
   ============================ */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #222 100%);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    color: var(--primary-red);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-col p {
    line-height: 1.8;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-col 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: 5px;
}

.social-links h4 {
    color: var(--white);
    font-size: 16px;
    margin: 20px 0 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--light-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* ============================
   Floating Buttons
   ============================ */
.whatsapp-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.call-btn:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .slide-title {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Orta boy mobil cihazlar için özel ayarlar (iPhone 12/13, etc) */
@media (min-width: 390px) and (max-width: 430px) {
    .logo h1 {
        font-size: 18px;
    }
    
    .logo p {
        font-size: 9px;
    }
    
    .phone-number {
        font-size: 13px;
    }
    
    .hero-slider {
        height: 420px;
    }
    
    .slider-container .slide {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .slide-title {
        font-size: 26px;
    }
    
    .slide-brand {
        font-size: 22px;
    }
    
    .slide-buttons {
        gap: 10px;
        margin-top: 18px;
    }
    
    .btn-call,
    .btn-contact {
        padding: 11px 22px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .nav-wrapper {
        flex-wrap: nowrap;
        position: relative;
        align-items: center;
        gap: 10px;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
    }
    
    .logo h1 {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 2px;
    }
    
    .logo p {
        font-size: 9px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        gap: 0;
        z-index: 1001;
        margin-top: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        font-size: 15px;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .phone-number {
        font-size: 13px;
        gap: 5px;
        white-space: nowrap;
    }
    
    .phone-number i {
        font-size: 14px;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    /* Mobilde slider resimlerini düzelt */
    .slider-container .slide {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .slider-container .slide:nth-child(1),
    .slider-container .slide:nth-child(2),
    .slider-container .slide:nth-child(3),
    .slider-container .slide:nth-child(4),
    .slider-container .slide:nth-child(5) {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .slide-text {
        padding: 20px 15px;
    }
    
    .slide-buttons {
        gap: 10px;
        margin-top: 20px;
    }
    
    .btn-call,
    .btn-contact {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .btn-call i {
        font-size: 14px;
    }
    
    .slide-title {
        font-size: 28px;
        line-height: 1.2;
        margin: 15px 0;
    }
    
    .slide-brand {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .slide-subtitle {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .btn-contact {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .slide-buttons {
        gap: 12px;
        margin-top: 25px;
        flex-wrap: wrap;
    }
    
    .btn-call,
    .btn-contact {
        padding: 13px 28px;
        font-size: 14px;
    }
    
    .btn-call i {
        font-size: 15px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .frequency-section,
    .about-section,
    .services-section,
    .testimonials-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .frequency-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .frequency-card,
    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .frequency-icon,
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .section-header h2 {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .section-header h3 {
        font-size: 22px;
    }
    
    .about-content h3 {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .about-content p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 85px;
        right: 15px;
    }
    
    .call-btn {
        right: 15px;
        bottom: 20px;
        padding: 10px 18px;
        font-size: 13px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .top-bar {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo h1 {
        font-size: 17px;
        line-height: 1.1;
    }
    
    .logo p {
        font-size: 8px;
    }
    
    .phone-number {
        font-size: 12px;
        gap: 4px;
    }
    
    .phone-number span {
        display: none;
    }
    
    .phone-number i {
        font-size: 20px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .hero-slider {
        height: 380px;
    }
    
    /* Küçük mobilde slider resimlerini optimize et */
    .slider-container .slide {
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .slide-text {
        padding: 15px 12px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .btn-call,
    .btn-contact {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .slide-title {
        font-size: 24px;
        line-height: 1.2;
        margin: 12px 0;
    }
    
    .slide-brand {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .slide-subtitle {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .btn-contact {
        padding: 9px 22px;
        font-size: 13px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .slider-btn.prev {
        left: 8px;
    }
    
    .slider-btn.next {
        right: 8px;
    }
    
    .frequency-section,
    .about-section,
    .services-section,
    .testimonials-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .section-header h3 {
        font-size: 19px;
    }
    
    .frequency-card,
    .service-card,
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .frequency-card h3,
    .service-card h4 {
        font-size: 19px;
    }
    
    .frequency-card p,
    .service-card p,
    .testimonial-card p {
        font-size: 14px;
    }
    
    .service-icon,
    .frequency-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
        margin: 0 auto 15px;
    }
    
    .about-content h3 {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .about-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .btn-submit {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .btn-submit i {
        font-size: 20px;
    }
    
    .footer {
        padding: 35px 0 15px;
    }
    
    .footer-col h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .footer-col p,
    .footer-col ul li {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }
    
    .whatsapp-btn {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 78px;
        right: 12px;
    }
    
    .call-btn {
        right: 12px;
        bottom: 18px;
        padding: 9px 16px;
        font-size: 12px;
        gap: 6px;
    }
    
    .call-btn i {
        font-size: 14px;
    }
}

/* Çok küçük mobil cihazlar (Galaxy Fold, iPhone SE gibi) */
@media (max-width: 375px) {
    .logo h1 {
        font-size: 15px;
    }
    
    .logo p {
        font-size: 7px;
    }
    
    .phone-number span {
        display: none;
    }
    
    .phone-number i {
        font-size: 18px;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .slider-container .slide {
        background-size: cover !important;
        background-position: center !important;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .slide-brand {
        font-size: 18px;
    }
    
    .slide-subtitle {
        font-size: 10px;
    }
    
    .btn-contact {
        padding: 8px 20px;
        font-size: 12px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .frequency-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .whatsapp-btn,
    .call-btn {
        display: none;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 8px;
        margin-top: 12px;
    }
    
    .btn-call,
    .btn-contact {
        padding: 10px 18px;
        font-size: 11px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .btn-call i {
        font-size: 13px;
    }
}

/* Landscape mode için */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 22px;
    }
    
    .slide-brand {
        font-size: 18px;
    }
    
    .slide-subtitle {
        display: none;
    }
    
    .slide-buttons {
        flex-direction: row;
        gap: 8px;
        margin-top: 15px;
    }
    
    .btn-call,
    .btn-contact {
        padding: 8px 18px;
        font-size: 11px;
    }
}

/* ============================
   Animations
   ============================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.frequency-card,
.service-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
a[href^="#"] {
    scroll-behavior: smooth;
}

