* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Pages */
.page {
    display: none;
    min-height: calc(100vh - 80px);
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3748;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
}

/* Countries Info */
.countries-info {
    padding: 80px 0;
    background: #f7fafc;
}

.countries-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3748;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.country-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.country-item:hover {
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-header p {
    font-size: 1.1rem;
    color: #718096;
}

/* Steps Navigation */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
}

.steps-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.steps-nav::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 120px;
    cursor: pointer;
    transition: transform 0.2s;
}

.step:hover {
    transform: translateY(-2px);
}

.step:hover .step-number {
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #a0aec0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.step.active .step-number {
    background: #667eea;
    color: white;
}

.step.completed .step-number {
    background: #48bb78;
    color: white;
}

.step.completed .step-number::after {
    content: '✓';
    position: absolute;
    font-size: 0.8rem;
    font-weight: bold;
}

.step.available {
    opacity: 1;
}

.step.unavailable {
    opacity: 0.5;
    cursor: not-allowed;
}

.step.unavailable:hover {
    transform: none;
}

.step.unavailable:hover .step-number {
    box-shadow: none;
    transform: none;
}

.step span {
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
}

.step.active span {
    color: #2d3748;
    font-weight: 500;
}

/* Step Panels */
.step-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}

.step-panel h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 20px;
}

/* Country Selector */
.country-selector {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.country-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.country-option:hover {
    border-color: #667eea;
    background: #f7fafc;
}

.country-option.selected {
    border-color: #667eea;
    background: #edf2f7;
}

.country-option img {
    width: 40px;
    height: 30px;
    margin-right: 15px;
    border-radius: 3px;
}

.country-option div {
    flex: 1;
}

.country-option h4 {
    font-size: 1.2rem;
    color: #2d3748;
    margin-bottom: 5px;
}

.country-option p {
    color: #718096;
    font-size: 0.9rem;
}

.country-option i.fa-check {
    color: #667eea;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.country-option.selected i.fa-check {
    opacity: 1;
}

/* Selection Feedback Styles */
.selection-feedback {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-weight: 500;
    animation: slideInFade 0.5s ease-out;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selection-feedback i {
    font-size: 1.2rem;
}

/* Vehicle Type Selector Styles */
.vehicle-type-selector {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

/* Force default selection for car */
.vehicle-type-option[data-vehicle="car"] {
    border-color: #667eea !important;
    background: linear-gradient(135deg, #edf2f7 0%, #e6f3ff 100%) !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25) !important;
}

.vehicle-type-option[data-vehicle="car"] .vehicle-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4) !important;
}

.vehicle-type-option[data-vehicle="car"] .vehicle-check {
    opacity: 1 !important;
    transform: scale(1.2) !important;
    color: #4facfe !important;
}

.vehicle-type-option[data-vehicle="car"] .vehicle-info h4 {
    color: #2b6cb0 !important;
    font-weight: 700 !important;
}

.vehicle-type-option[data-vehicle="car"] .vehicle-info p {
    color: #4a5568 !important;
    font-weight: 500 !important;
}

.vehicle-type-option[data-vehicle="car"] .vehicle-info small {
    color: #667eea !important;
    font-weight: 500 !important;
}

.vehicle-type-option {
    display: flex;
    align-items: center;
    padding: 25px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    transform: scale(1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
}

.vehicle-type-option:hover {
    border-color: #667eea;
    background: #f7fafc;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.vehicle-type-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #edf2f7 0%, #e6f3ff 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
    animation: vehicleSelected 0.4s ease-out;
}

@keyframes vehicleSelected {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 0 rgba(102, 126, 234, 0);
        border-color: #e2e8f0;
    }
    50% {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        border-color: #4facfe;
        border-width: 3px;
    }
    100% {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
        border-color: #667eea;
        border-width: 2px;
    }
}

.vehicle-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin-right: 20px;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    transform: scale(1);
    pointer-events: none;
}

.vehicle-type-option.selected .vehicle-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.vehicle-info {
    flex: 1;
    pointer-events: none;
}

.vehicle-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2d3748;
    transition: color 0.3s ease;
    pointer-events: none;
}

.vehicle-info p {
    color: #718096;
    margin-bottom: 5px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    pointer-events: none;
}

.vehicle-info small {
    color: #a0aec0;
    font-size: 0.85rem;
    font-style: italic;
    transition: color 0.3s ease;
    pointer-events: none;
}

.vehicle-type-option.selected .vehicle-info h4 {
    color: #2b6cb0;
    font-weight: 700;
}

.vehicle-type-option.selected .vehicle-info p {
    color: #4a5568;
    font-weight: 500;
}

.vehicle-type-option.selected .vehicle-info small {
    color: #667eea;
    font-weight: 500;
}

.vehicle-check {
    color: #667eea;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0.8);
    pointer-events: none;
}

.vehicle-type-option.selected .vehicle-check {
    opacity: 1;
    transform: scale(1.2);
    color: #4facfe;
    animation: checkPulse 0.6s ease-out;
}

@keyframes checkPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Duration Warning Styles */
.duration-warning {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border: 1px solid #e17055;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d63031;
    font-size: 0.9rem;
    line-height: 1.4;
}

.duration-warning i {
    margin-top: 2px;
    font-size: 1.1rem;
}

/* Country Cards Styles */
.country-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.country-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    min-height: 80px;
}

.country-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.country-card.selected {
    border-color: #48bb78;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
}

.country-flag {
    font-size: 2.5rem;
    line-height: 1;
}

.country-info {
    flex: 1;
}

.country-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2d3748;
}

.country-card.selected .country-info h4 {
    color: white;
}

.country-info p {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

.country-card.selected .country-info p {
    color: rgba(255, 255, 255, 0.8);
}

.country-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    background: #edf2f7;
    padding: 8px 12px;
    border-radius: 20px;
}

.country-card.selected .country-price {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.check-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #48bb78;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-card.selected .check-icon {
    opacity: 1;
    color: white;
}

/* Route Cards Styles */
.route-options h4 {
    color: #2d3748;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.route-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.route-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.route-card.selected {
    border-color: #48bb78;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.route-header h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-card.selected .route-header h5 {
    color: white;
}

.route-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.route-countries {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    background: #f7fafc;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
}

.route-card.selected .route-countries {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.route-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.route-distance, .route-price {
    background: #edf2f7;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
}

.route-card.selected .route-distance,
.route-card.selected .route-price {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.route-desc {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.route-card.selected .route-desc {
    color: rgba(255, 255, 255, 0.9);
}

.custom-route-section {
    text-align: center;
    margin: 40px 0;
}

.divider {
    position: relative;
    margin: 30px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    background: #f8fafc;
    padding: 0 20px;
    color: #718096;
    font-weight: 500;
}

.custom-route-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.custom-route-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.custom-route {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.custom-route h4 {
    color: #2d3748;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.no-routes {
    text-align: center;
    padding: 40px 20px;
    background: #f7fafc;
    border-radius: 12px;
    color: #718096;
    margin: 20px 0;
}

.no-routes p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.selected-countries {
    margin-top: 20px;
}

.selected-countries h4 {
    color: #2d3748;
    margin-bottom: 15px;
}

#country-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.country-tag {
    background: #667eea;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-tag .remove {
    cursor: pointer;
    opacity: 0.8;
}

.country-tag .remove:hover {
    opacity: 1;
}

/* Form Styles */
.vehicle-form {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

/* Duration Options */
.duration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.duration-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.duration-card:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.duration-card.selected {
    border-color: #667eea;
    background: #edf2f7;
}

.duration-card.popular {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    color: white;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4757;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.duration-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.duration-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.duration-desc {
    opacity: 0.8;
    margin-bottom: 15px;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

.duration-card.popular .price {
    color: white;
}

/* Order Summary */
.order-summary {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.summary-section h4 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.total-price {
    background: #f7fafc;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    text-align: right;
    font-size: 1.3rem;
}

.payment-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

/* Payment Methods Selector */
.payment-methods-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0 30px 0;
}

.payment-method-option {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    background: white;
}

.payment-method-option:hover {
    border-color: #667eea;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.payment-method-option.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.payment-method-option i {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #667eea;
}

.payment-method-option.active i {
    color: white;
}

.payment-method-option span {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.payment-method-option small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.payment-icons i {
    font-size: 1.2rem !important;
    margin-bottom: 0 !important;
}

/* Payment Forms */
.payment-form {
    display: none;
    background: #f7fafc;
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.payment-form.active {
    display: block;
}

.payment-form h4 {
    color: #2d3748;
    margin: 0 0 20px 0;
}

/* Payment Method Containers */
.paypal-container, .iyzico-container, .klarna-container, .sepa-container, .neteller-container {
    text-align: center;
    padding: 20px;
}

.paypal-info, .iyzico-info, .klarna-container, .sepa-container, .neteller-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.paypal-info i, .iyzico-info i, .klarna-container i, .sepa-container i, .neteller-container i {
    font-size: 2rem;
    color: #667eea;
}

.iyzico-info div h5 {
    margin: 0 0 5px 0;
    color: #2d3748;
}

.iyzico-info div p {
    margin: 0;
    color: #718096;
    font-size: 0.9rem;
}

.supported-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
}

.supported-cards span {
    color: #718096;
    font-size: 0.9rem;
    margin-right: 10px;
}

.supported-cards i {
    font-size: 1.5rem;
    color: #667eea;
}

/* Step Buttons */
.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.prev-btn, .next-btn, .pay-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.prev-btn {
    background: #e2e8f0;
    color: #2d3748;
}

.prev-btn:hover {
    background: #cbd5e0;
}

.next-btn, .pay-btn {
    background: #667eea;
    color: white;
    flex: 1;
    max-width: 200px;
    margin-left: auto;
}

.next-btn:hover, .pay-btn:hover {
    background: #5a6fd8;
}

.next-btn:disabled, .pay-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

.pay-btn {
    background: #48bb78;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pay-btn:hover {
    background: #38a169;
}

/* Track Page */
.track-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.track-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.track-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.track-btn:hover {
    background: #5a6fd8;
}

.track-results {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.result-card {
    padding: 40px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.status-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge.completed {
    background: #c6f6d5;
    color: #22543d;
}

.status-badge.processing {
    background: #fed7d7;
    color: #742a2a;
}

.status-badge.preparing {
    background: #feebc8;
    color: #7b341e;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section i {
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .steps-nav {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .step {
        min-width: 80px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .duration-options {
        grid-template-columns: 1fr;
    }
    
    .step-buttons {
        flex-direction: column;
    }
    
    .next-btn, .pay-btn {
        max-width: none;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .countries-grid {
        grid-template-columns: 1fr;
    }
}