* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B35;
    --primary-purple: #6B46C1;
    --dark-purple: #553C9A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-gray: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Status Page (Ödeme Bekliyor) */
.status-page {
    background: #f6f7fb;
}

.status-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}

.status-card {
    width: min(520px, 100%);
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.status-image {
    width: 100%;
    height: auto;
    display: block;
    background: #ffffff;
}

.status-meta {
    padding: 18px 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #eef0f5;
}

.status-tracking {
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #0f85a5; /* yumuşak mavi */
    font-size: 14px;
}

.status-back {
    text-decoration: none;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 14px;
}

.status-back:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 25px 0;
    display: flex;
    align-items: center;
    min-height: 80px;
}

.header .logo {
    position: absolute;
    left: 0;
    top: 0;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    z-index: 1001;
    height: 100%;
}

.header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding-top: 5px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-purple);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.navbar {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
}

.nav-menu a:hover {
    color: var(--primary-purple);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: var(--light-gray);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Hero Left - Image Section */
.hero-left {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-image.active {
    display: block;
}

.hero-image-wrapper {
    cursor: pointer;
}

/* Image Slider */
.image-slider {
    display: none;
    position: relative;
    width: 100%;
    height: 500px;
}

.image-slider.active {
    display: block;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: block;
}

.slide-image.active {
    opacity: 1;
    z-index: 1;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

.slider-nav i {
    color: var(--primary-purple);
    font-size: 18px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Hero Right - Text and Form */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    font-size: 36px;
    color: var(--primary-purple);
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Delivery Path Animation */
.delivery-path {
    position: relative;
    height: 80px;
    margin: 20px 0;
}

.path-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        to right,
        var(--primary-orange) 0,
        var(--primary-orange) 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateY(-50%);
    animation: pathMove 3s linear infinite;
}

@keyframes pathMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 0;
    }
}

.path-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.package-icon {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: bounce 2s ease-in-out infinite;
}

.truck-icon {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: bounce 2s ease-in-out infinite 0.5s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-10px);
    }
}

/* Tracking Form Card */
.tracking-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.tracking-tab {
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 8px 8px 0 0;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.tracking-form {
    padding-top: 20px;
}

.tracking-form label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.tracking-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.tracking-input:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.track-button {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.track-button:hover {
    background: #E55A2B;
}

/* Content Blocks */
.content-blocks {
    padding: 80px 0;
    background: var(--white);
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.content-block {
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.block-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.block-title.orange {
    color: var(--primary-orange);
}

.block-title.purple {
    color: var(--primary-purple);
}

.block-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.block-text.purple-large {
    font-size: 20px;
    color: var(--primary-purple);
    font-weight: 600;
}

.cta-button {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-top: 10px;
}

.cta-button:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image,
    .image-slider {
        height: 400px;
    }
    
    .blocks-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
        min-height: 70px;
    }
    
    .header .logo {
        padding: 15px 15px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .header-content {
        justify-content: flex-end;
        padding-right: 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
    }
    
    .navbar.active {
        max-height: 500px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        width: 100%;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 20px 0;
        min-height: auto;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-left {
        order: 1;
        width: 100%;
    }
    
    .hero-right {
        order: 2;
        width: 100%;
        padding: 0;
    }
    
    .hero-image,
    .image-slider {
        height: 280px;
        border-radius: 10px;
    }
    
    .hero-title {
        font-size: 22px;
        text-align: left;
        margin-bottom: 15px;
    }
    
    .hero-description {
        text-align: left;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .delivery-path {
        margin: 20px 0;
        display: none;
    }
    
    .tracking-card {
        margin-top: 20px;
        padding: 20px;
        border-radius: 10px;
    }
    
    .tracking-tab {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .tracking-form label {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .tracking-input {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .track-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav i {
        font-size: 14px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .content-blocks {
        padding: 40px 0;
    }
    
    .content-block {
        padding: 20px;
        text-align: center;
    }
    
    .block-title {
        font-size: 20px;
    }
    
    .block-text {
        font-size: 14px;
    }
    
}

