* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #162336;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #162336;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Navigation Styles */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #f9f9f9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.nav-link:hover {
    color: #d66f1a;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: #f9f9f9;
    margin: 2px 0;
    transition: none;
    border-radius: 1px;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1),
.mobile-menu-toggle.active span:nth-child(2),
.mobile-menu-toggle.active span:nth-child(3) {
    display: none;
}

.mobile-menu-toggle.active::after {
    content: "";
    background-image: url('../images/x.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #162336;
    padding: 2rem 0;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem 2rem 2rem;
    border-bottom: 1px solid #333;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #f9f9f9;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #d66f1a;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    border-bottom: 1px solid #333;
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 2rem;
    color: #f9f9f9;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #333;
}

.mobile-nav-link:hover {
    background-color: #d66f1a;
    color: #f9f9f9;
}

.mobile-nav-buttons {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-btn {
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.mobile-nav-btn.btn-primary {
    background-color: #d66f1a;
    color: #f9f9f9;
}

.mobile-nav-btn.btn-primary:hover {
    background-color: #b55a15;
}

.mobile-nav-btn.btn-secondary {
    background-color: transparent;
    color: #f9f9f9;
    border: 1px solid #f9f9f9;
}

.mobile-nav-btn.btn-secondary:hover {
    background-color: #f9f9f9;
    color: #162336;
}

.mobile-nav-btn.btn-outline {
    background-color: transparent;
    color: #f9f9f9;
    border: 1px solid #d66f1a;
}

.mobile-nav-btn.btn-outline:hover {
    background-color: #d66f1a;
    color: #f9f9f9;
}

.mobile-nav-btn.btn-warning {
    background-color: #ffc107;
    color: #212529;
}

.mobile-nav-btn.btn-warning:hover {
    background-color: #e0a800;
    color: #212529;
}

.mobile-nav-btn.btn-info {
    background-color: #17a2b8;
    color: #f9f9f9;
}

.mobile-nav-btn.btn-info:hover {
    background-color: #138496;
    color: #f9f9f9;
}

.nav-btn {
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #d66f1a;
    color: #f9f9f9;
}

.btn-primary:hover {
    background-color: #b55a15;
}

.btn-secondary {
    background-color: transparent;
    color: #f9f9f9;
    border: 1px solid #f9f9f9;
}

.btn-secondary:hover {
    background-color: #f9f9f9;
    color: #162336;
}

.btn-outline {
    background-color: transparent;
    color: #f9f9f9;
    border: 1px solid #d66f1a;
}

.btn-outline:hover {
    background-color: #d66f1a;
    color: #f9f9f9;
}

/* User Menu Styles */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-name {
    color: #f9f9f9;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border: 1px solid #f9f9f9;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.user-name:hover {
    background-color: #f9f9f9;
    color: #162336;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 150px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.user-menu:hover .user-dropdown {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: #162336;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: #d66f1a;
}

.dropdown-item:first-child {
    border-radius: 4px 4px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 4px 4px;
}

/* Account Section Styles */
.account-section {
    min-height: calc(100vh - 140px);
    padding: 2rem 0;
    background-color: #f9f9f9;
}

.account-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.account-header {
    background-color: #162336;
    color: #f9f9f9;
    padding: 2rem;
    text-align: center;
}

.account-header h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.account-subtitle {
    color: #ccc;
    font-size: 1rem;
}

.account-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 500px;
}

.account-sidebar {
    background-color: #f5f5f5;
    border-right: 1px solid #eee;
}

.account-menu {
    padding: 1rem 0;
}

.account-menu-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    color: #162336;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.account-menu-item:hover {
    background-color: #e9e9e9;
    color: #d66f1a;
}

.account-menu-item.active {
    background-color: #d66f1a;
    color: #f9f9f9;
    border-left-color: #b55a15;
}

.account-menu-item i {
    width: 20px;
    text-align: center;
}

.account-main {
    padding: 2rem;
}

.account-tab {
    display: none;
}

.account-tab.active {
    display: block;
}

.account-tab h3 {
    color: #162336;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.account-form {
    max-width: 500px;
}

.no-orders,
.no-addresses {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.no-orders i,
.no-addresses i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-orders p,
.no-addresses p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.settings-section {
    max-width: 500px;
}

.settings-section h4 {
    color: #162336;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Main Content */
.main {
    min-height: calc(100vh - 140px);
    padding: 0;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background-color: #e6f0ff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #162336;
    line-height: 1.2;
}

.hero .highlight {
    color: #d66f1a;
    font-weight: bold;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d66f1a;
    color: #f9f9f9;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #b55a15;
}

/* Footer */
.footer {
    background-color: #162336;
    color: #f9f9f9;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #f9f9f9;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d66f1a;
}

.footer-title {
    color: #f9f9f9;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d66f1a;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f9f9f9;
    text-decoration: underline;
}

.footer-phone {
    color: #d66f1a !important;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 0.5rem;
    display: block;
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.services h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #162336;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-gif {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h4 {
    color: #162336;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background-color: #162336;
    padding: 4rem 0;
    color: #f9f9f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d66f1a;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #f9f9f9;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #162336;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #162336;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #d66f1a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #b55a15;
}

.working-hours {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-areas {
    margin-top: 0.5rem;
}

.area-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    gap: 0.5rem;
}

.area-item:last-child {
    border-bottom: none;
}

.area-name {
    color: #162336;
    font-weight: 500;
}

.area-status {
    display: flex;
    align-items: center;
}

.tick-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #162336;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #d66f1a;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    border: none;
    outline: none;
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Address Input Groups */
.address-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.address-input-group .form-input {
    flex: 1;
}

.address-input-group .btn {
    flex-shrink: 0;
    padding: 0.75rem 1rem;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-map {
    width: 100%;
    height: 200px;
    margin-top: 0.5rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.distance-info {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    border: 2px solid #e6f0ff;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(22, 35, 54, 0.08);
    position: relative;
    overflow: hidden;
}

.distance-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d66f1a, #162336);
}

.distance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #162336;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(214, 111, 26, 0.15);
    transition: all 0.3s ease;
    min-width: 120px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.distance-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #d66f1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 111, 26, 0.15);
}

.distance-item i {
    color: #d66f1a;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.distance-item strong {
    color: #162336;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-top: 0.25rem;
}

.distance-item .label {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Vehicle Type Buttons */
.vehicle-type-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.vehicle-option {
    position: relative;
}

.vehicle-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.vehicle-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 120px;
    width: 120px;
    min-width: 120px;
    position: relative;
}

.vehicle-button:hover {
    border-color: #d66f1a;
    background-color: #fef7f0;
}

.vehicle-radio:checked + .vehicle-button {
    border-color: #d66f1a;
    background-color: #fef7f0;
    box-shadow: 0 2px 8px rgba(214, 111, 26, 0.2);
}

.vehicle-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

        .vehicle-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 0.5rem;
        }
        
        .vehicle-text strong {
            font-size: 0.9rem;
            color: #162336;
            margin-bottom: 0.2rem;
        }
        
        .vehicle-text small {
            font-size: 0.8rem;
            color: #d66f1a;
            font-weight: bold;
        }

        .vehicle-button.disabled {
            opacity: 0.4;
            cursor: not-allowed;
            position: relative;
            background-color: #f5f5f5;
            border-color: #ccc;
        }

        .vehicle-button.disabled:hover {
            border-color: #ccc;
            background-color: #f5f5f5;
            transform: none;
        }
        
        .vehicle-button.disabled .vehicle-text strong {
            color: #999;
        }
        
        .vehicle-button.disabled .vehicle-text small {
            color: #999;
        }

        .vehicle-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 500;
            z-index: 10;
        }

/* Package Type Buttons */
.package-type-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.package-option {
    position: relative;
}

.package-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.package-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    color: #162336;
    min-height: 50px;
}

.package-button:hover {
    border-color: #d66f1a;
    background-color: #fef7f0;
}

.package-radio:checked + .package-button {
    border-color: #d66f1a;
    background-color: #fef7f0;
    box-shadow: 0 2px 8px rgba(214, 111, 26, 0.2);
}

/* Delivery Type Buttons */
.delivery-type-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.delivery-option {
    position: relative;
}

.delivery-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.delivery-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    height: 100px; /* Fixed height for equal size */
    width: 100%; /* Full width */
}

.delivery-button:hover {
    border-color: #d66f1a;
    background-color: #fef7f0;
}

.delivery-radio:checked + .delivery-button {
    border-color: #d66f1a;
    background-color: #fef7f0;
    box-shadow: 0 2px 8px rgba(214, 111, 26, 0.2);
}

.delivery-title {
    font-weight: 600;
    color: #162336;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.delivery-time {
    font-size: 0.9rem;
    color: #666;
}

/* Payment Type Buttons */
.payment-type-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.payment-option {
    position: relative;
}

.payment-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    color: #162336;
    min-height: 50px;
}

.payment-button:hover {
    border-color: #d66f1a;
    background-color: #fef7f0;
}

.payment-radio:checked + .payment-button {
    border-color: #d66f1a;
    background-color: #fef7f0;
    box-shadow: 0 2px 8px rgba(214, 111, 26, 0.2);
}

.payment-button.disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #ccc;
}

.payment-button.disabled:hover {
    border-color: #ccc;
    background-color: #f5f5f5;
}

/* Discount Input Group */
.discount-input-group {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.discount-input-group .form-input {
    flex: 1;
}

.discount-input-group .btn {
    padding: 12px 20px;
    white-space: nowrap;
}

/* Order Summary */
.order-summary {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.summary-item:first-child {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.summary-item:last-child {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d66f1a;
}

/* Auth Section Styles */
.auth-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background-color: #f9f9f9;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    background-color: #162336;
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    color: #f9f9f9;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tab:hover {
    background-color: #d66f1a;
}

.auth-tab.active {
    background-color: #d66f1a;
}

.auth-form {
    padding: 2rem;
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    text-align: center;
    color: #162336;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.auth-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-checkbox {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-input {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
}

.checkbox-text {
    line-height: 1.4;
}

.checkbox-text a {
    color: #d66f1a;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.auth-link {
    color: #d66f1a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #b55a15;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .area-item {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .auth-container {
        margin: 0 1rem;
    }
    
    .auth-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-tab {
        font-size: 1rem;
        padding: 0.8rem;
    }
    
    .account-content {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .account-menu {
        display: flex;
        overflow-x: auto;
        padding: 0;
    }
    
    .account-menu-item {
        flex-shrink: 0;
        padding: 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
        min-width: 120px;
    }
    
    .account-menu-item.active {
        border-left-color: transparent;
        border-bottom-color: #b55a15;
    }
    
         .account-main {
         padding: 1.5rem;
     }
     
     .vehicle-type-buttons {
         grid-template-columns: 1fr;
         gap: 0.8rem;
     }
     
                       .vehicle-button {
           padding: 1.5rem;
           height: 140px;
       }
      
                           .vehicle-icon {
            width: 100%;
            height: 100%;
            padding: 0.8rem;
        }
        
        .package-type-buttons {
            grid-template-columns: 1fr;
        }
        
        .delivery-type-buttons {
            grid-template-columns: 1fr;
        }
        
        .payment-type-buttons {
            grid-template-columns: 1fr;
        }
        
        .discount-input-group {
            flex-direction: column;
        }
        
        .discount-input-group .btn {
            width: 100%;
        }
        
        .weight-buttons {
            grid-template-columns: repeat(3, 1fr);
            gap: 0.5rem;
        }
        
        .weight-button {
            padding: 0.8rem 0.3rem;
            min-height: 50px;
            font-size: 0.9rem;
        }
    }
}

/* Weight Buttons */
.weight-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.weight-option {
    position: relative;
}

.weight-radio {
    display: none;
}

.weight-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    min-height: 60px;
}

.weight-radio:checked + .weight-button {
    border-color: #d66f1a;
    background-color: #d66f1a;
    color: #fff;
}

.weight-button:hover {
    border-color: #d66f1a;
    background-color: #f9f9f9;
}

.weight-radio:checked + .weight-button:hover {
    background-color: #d66f1a;
}

/* Orders section styles */
.orders-list {
    margin-top: 20px;
}

.loading {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.loading i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d66f1a;
}

.error {
    text-align: center;
    padding: 40px 20px;
    color: #e74c3c;
}

.error i {
    font-size: 24px;
    margin-bottom: 10px;
}

.no-orders {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.no-orders i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ccc;
}

.order-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.order-id {
    font-weight: bold;
    color: #162336;
    font-size: 14px;
}

.order-status {
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.order-status.onay_bekleniyor {
    background: #fff3cd;
    color: #856404;
}

.order-status.kurye_siparis_almaya_gidiyor {
    background: #d1ecf1;
    color: #0c5460;
}

.order-status.kurye_teslimat_adresine_gidiyor {
    background: #d4edda;
    color: #155724;
}

.order-status.kurye_siparis_teslim_etti {
    background: #c3e6cb;
    color: #155724;
}

.order-status.siparis_iptal_edildi {
    background: #f8d7da;
    color: #721c24;
}

.order-details {
    padding: 0.75rem;
}

.order-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #fafbfc;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.875rem;
}

.info-row .label {
    font-weight: 500;
    color: #666;
}

.info-row .value {
    font-weight: 600;
    color: #162336;
}

.info-row .value.price {
    color: #d66f1a;
    font-size: 1rem;
}

.order-addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #fafbfc;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.address-section h5 {
    margin: 0 0 0.5rem 0;
    color: #162336;
    font-size: 0.875rem;
    font-weight: 600;
}

.address-section p {
    margin: 0 0 0.25rem 0;
    color: #333;
    line-height: 1.4;
    font-size: 0.875rem;
}

.address-section small {
    color: #666;
    font-size: 0.75rem;
}

.order-description {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #fafbfc;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.order-description h5 {
    margin: 0 0 0.5rem 0;
    color: #162336;
    font-size: 0.875rem;
    font-weight: 600;
}

.order-description p {
    margin: 0;
    color: #333;
    line-height: 1.4;
    font-size: 0.875rem;
}

.order-timestamps {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem;
    background: #fafbfc;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.timestamp {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.timestamp .label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

.timestamp .value {
    font-size: 0.875rem;
    color: #333;
    font-weight: 600;
}

/* Responsive design for orders */
@media (max-width: 768px) {
    .order-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .order-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .order-addresses {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .order-timestamps {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Order Item Styles - Updated */
.order-item {
    background: white;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    background: #fafbfc;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    min-height: 48px;
}

.order-header:hover {
    background: #f5f7fa;
}

.order-summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    margin-left: 0.5rem;
}

.order-summary span {
    color: #6c757d;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.2;
}

.toggle-icon {
    color: #6c757d;
    transition: transform 0.2s ease;
    font-size: 0.875rem;
}

/* Pagination Styles */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    color: #162336;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
    background: #162336;
    color: white;
    border-color: #162336;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

.page-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    background: white;
    color: #162336;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
}

.page-btn:hover {
    background: #f8f9fa;
}

.page-btn.active {
    background: #162336;
    color: white;
    border-color: #162336;
}

@media (max-width: 768px) {
    .pagination {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-numbers {
        order: -1;
    }
    
    .order-summary {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .distance-info {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        margin-top: 1rem;
    }
    
    .distance-item {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .distance-item i {
        font-size: 1.2rem;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
    
    .distance-item strong {
        font-size: 1rem;
        margin-top: 0;
    }
    
    .distance-item .label {
        font-size: 0.75rem;
    }
}

/* Admin Panel Stilleri */
.admin-item {
    background: linear-gradient(135deg, #d66f1a 0%, #e67e22 100%) !important;
    color: white !important;
    font-weight: bold !important;
}

.admin-item:hover {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%) !important;
    color: white !important;
}

.admin-item i {
    margin-right: 0.5rem;
}

.courier-item {
    color: #d66f1a !important;
}

.courier-item:hover {
    background-color: rgba(214, 111, 26, 0.1) !important;
}

.courier-item i {
    margin-right: 0.5rem;
} 