:root {
    --primary-color: #850001;
    --primary-light: #cb4343;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --bg-light: #F9FAFB;
    --border-color: #E5E7EB;
    --star-color: #FBBF24;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.reviews-wrap {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 24px;
}

.section-header {
    flex: 1;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.reviews-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.reviews-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Navigation */
.reviews-nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-primary);
}

.nav-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.nav-btn:active {
    transform: scale(0.95);
}

/* Slider */
.reviews-slider {
    position: relative;
    overflow: hidden;
    margin: 0 -12px;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px;
}

/* Card */
.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: white;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-light);
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--primary-color);
    opacity: 0.6;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    color: var(--star-color);
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    font-style: italic;
}

/* Reviewer */
.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
    min-width: 0;
}

.name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.verified {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified svg {
    color: #10B981;
}

/* Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .reviews-wrap {
        padding: 60px 0;
    }

    .reviews-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .reviews-nav {
        align-self: flex-end;
    }

    .review-card {
        flex: 0 0 calc(100% - 24px);
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .reviews-container {
        padding: 0 16px;
    }

    .review-card {
        padding: 24px;
    }

    .section-badge {
        font-size: 11px;
        padding: 4px 12px;
    }
}


/* Modern About Section Styles */
.about-modern {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #ffffff 100%);
    overflow: hidden;
}

.about-container,
.tracking-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
}

.about-grid,
.tracking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image Wrapper */
.about-image-wrapper,
.tracking-image-wrapper {
    position: relative;
}

.image-frame,
.map-frame-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.image-frame img,
.map-frame-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-frame:hover img,
.map-frame-img:hover img {
    transform: scale(1.05);
}

.image-overlay,
.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0) 100%);
    pointer-events: none;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0.95;
}

/* Content Styles */
.about-content,
.tracking-content {
    padding: 20px 0;
}

.content-inner {
    max-width: 560px;
}

.tracking-content .content-inner {
    margin-left: auto;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    color: #DC2626;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #DC2626, #EF4444);
    border-radius: 2px;
    margin-bottom: 24px;
}

.content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 32px;
}

.content-text p {
    margin-bottom: 16px;
}

/* Modern Button */
.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    color: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-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;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.4);
    color: white;
    text-decoration: none;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn svg {
    transition: transform 0.3s;
}

.modern-btn:hover svg {
    transform: translateX(4px);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #DC2626;
}

.tracking-description {
    font-size: 17px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 32px;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid #F3F4F6;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #10B981;
    background: #F0FDF4;
    transform: translateX(8px);
}

.feature-item span {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

/* Pulse Markers */
.pulse-markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pulse-marker {
    position: absolute;
    transform: translate(-50%, -50%);
}

.pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.4);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #DC2626;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {

    .about-grid,
    .tracking-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {

    .about-container,
    .tracking-container {
        padding: 60px 20px;
    }

    .about-grid,
    .tracking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tracking-grid {
        direction: ltr;
    }

    .tracking-grid .tracking-content {
        order: 2;
    }

    .tracking-grid .tracking-image-wrapper {
        order: 1;
    }

    .content-inner {
        max-width: 100%;
    }

    .tracking-content .content-inner {
        margin-left: 0;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }

    .badge-number {
        font-size: 36px;
    }

    .badge-text {
        font-size: 12px;
    }

    .feature-list {
        margin-top: 24px;
    }
}

/* AOS Animation Support */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

.hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Image - LCP Optimized */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}



@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Content Container */
.slide-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 1200px;
    padding: 0 40px;
    width: 100%;
}

.swiper-slide-active .slide-content h1 {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.swiper-slide-active .slide-content p {
    animation: slideUp 0.8s ease-out 0.4s both;
}

.swiper-slide-active .slide-content .slide-buttons {
    animation: slideUp 0.8s ease-out 0.6s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 8px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.slide-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #fca5a5, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.slide-content p {
    font-size: clamp(1.1rem, 2vw, 21.6rem);
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    max-width: 700px;
    line-height: 1.7;
    font-weight: 300;
}

/* Buttons */
.slide-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.slider-btn:hover::before {
    width: 400px;
    height: 400px;
}

.slider-btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Decorative Shapes */
.decorative-shape {
    position: absolute;
    z-index: 3;
    opacity: 0.08;
    pointer-events: none;
}

.shape-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 60px solid white;
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: white;
    bottom: -100px;
    left: -100px;
    animation: morph 10s ease-in-out infinite;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: white;
    top: 50%;
    right: 15%;
    transform: translateY(-50%) rotate(45deg);
    animation: rotate360 12s linear infinite;
    opacity: 0.05;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(10deg);
    }
}

@keyframes morph {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

@keyframes rotate360 {
    from {
        transform: translateY(-50%) rotate(45deg);
    }

    to {
        transform: translateY(-50%) rotate(405deg);
    }
}

/* Navigation - Red Theme */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(220, 38, 38, 0.3);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(220, 38, 38, 0.6);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.5);
    border-color: rgba(255, 255, 255, 0.7);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

/* Pagination - Red Theme */
.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
    width: 50px;
    border-radius: 7px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content {
        padding: 0 25px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .slider-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        opacity: 0.03;
    }
}

/* Loading Prevention for CLS */
.swiper-wrapper {
    min-height: 100vh;
}

/* Loading Placeholder - Red Theme */
.slide-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

/* Overlay için slide-bg'yi referans yap */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Mavi overlay */
.slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #232951;
    opacity: 0.15;
    /* koyuluk: 0.35-0.75 arası deneyebilirsin */
    z-index: 2;
    pointer-events: none;
}

/* Görsel overlay'in altında kalsın */
.slide-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
}

/* Yazılar overlay'in üstünde kalsın */
.slide-content {
    position: relative;
    z-index: 10;
}

.contact-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 0;
}

/* Sol Taraf - İletişim Bilgileri */
.contact-info {
    padding: 60px 0px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #c41e3a;
    border-radius: 2px;
}

.contact-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-box:hover {
    border-color: #c41e3a;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.1);
}

.box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid #f1f3f5;
}

.box-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-box:hover .box-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.box-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.box-content {
    padding: 24px;
    padding-top: 20px;
}

.box-content p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 15px;
}

.box-content p:last-child {
    margin-bottom: 0;
}

.box-content a {
    color: #495057;
    text-decoration: none;
    display: block;
    line-height: 1.8;
    transition: all 0.2s ease;
    font-size: 15px;
    margin-bottom: 8px;
}

.box-content a:hover {
    color: #c41e3a;
    padding-left: 8px;
}

.box-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Harita Bölümü */
.map-section {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.map-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.map-tab {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.map-tab.active {
    color: #c41e3a;
    background: #ffffff;
}

.map-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #c41e3a;
}

.map-tab:hover:not(.active) {
    background: #ffffff;
    color: #495057;
}

.map-container {
    position: relative;
    width: 100%;
    height: 250px;
}

.map-frame {
    display: none;
    width: 100%;
    height: 100%;
}

.map-frame.active {
    display: block;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Sağ Taraf - Form */
.contact-grid {
    padding: 60px 50px;
    background: #fafbfc;
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #c41e3a;
    border-radius: 2px;
}

form {
    margin-top: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #495057;
}

.form-control::placeholder {
    color: #adb5bd;
}

.form-control:focus {
    outline: none;
    border-color: #c41e3a;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.08);
}

textarea.form-control {
    resize: vertical;
    min-height: 160px;
    font-family: inherit;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.submit-btn {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.25);
    position: relative;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Validasyon Stilleri */
.form-control.error {
    border-color: #dc3545;
    background: #fff5f5;
}

.form-control.success {
    border-color: #28a745;
    background: #f0fff4;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.form-control.error~.error-message {
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-section {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {

    .section-title,
    .form-title {
        font-size: 26px;
    }

    .contact-info,
    .contact-form-section {
        padding: 30px 20px;
    }

    .box-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .map-container {
        height: 200px;
    }
}

/* Yükleme Animasyonu */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
}

.header-container {
    padding-left: 70px;
    padding-right: 70px
}


/* Müşteri Hizmetleri butonu daha sıkı */
.extra-menu-item.customer-service-item .fh-btn{
  padding: 10px 14px;        /* iç boşluğu azalt */
  line-height: 1.05;         /* satır aralığını düşür */
  height: auto;
}

/* Üst satır (Müşteri Hizmetleri) */
.extra-menu-item.customer-service-item .fh-btn span{
  display: block;
  font-size: 12px !important;
  margin-bottom: -8px;        
  line-height: 1.05;
}

/* Alt satır (numara) */
.extra-menu-item.customer-service-item .fh-btn{
  font-size: 18px;           /* numara boyutu istersen */
}

/* Eğer tema extra boşluk veriyorsa */
.extra-menu-item.customer-service-item .customer-service-wrapper{
  margin: 0;
  padding: 0;
}

.text-end {
    text-align: end;
}