:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary: #6366f1;
    --accent: #ec4899;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6b7280;
    --dark-gray: #374151;
    --border: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-light: linear-gradient(135deg, #f3e8ff 0%, #e0e7ff 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #fafafa 0%, #f3f4f6 100%);
    color: var(--dark-gray);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #ffffff 0%, #f3e8ff 50%, #e0e7ff 100%);
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    color: var(--dark-gray);
    letter-spacing: -1px;
}

.header .subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.features-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.badge i {
    font-size: 1rem;
}

/* Form Container */
.form-container {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

/* Steps Progress */
.steps-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: -1;
}

.step:last-child::before {
    display: none;
}

.step.active::before {
    background: var(--gradient-primary);
}

.step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background: var(--light-gray);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.step.completed .step-number {
    background: var(--success);
    border-color: transparent;
    color: var(--white);
}

.step-title {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
}

.step.active .step-title {
    color: var(--primary);
    font-weight: 600;
}

/* Contact Section Top - Horizontal Layout */
.contact-section-top {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid #e0e7ff;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-title h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1e293b;
    font-weight: 700;
}

.contact-title p {
    margin: 4px 0 0 0;
    font-size: 0.9rem;
    color: #64748b;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.compact {
    margin-bottom: 0;
}

.form-group.compact label {
    font-size: 0.875rem;
    margin-bottom: 6px;
}

.form-group.compact .form-input {
    padding: 12px 12px 12px 45px;
    font-size: 0.9rem;
}

.form-group.compact .input-wrapper i {
    font-size: 1rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

/* Card Styles */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(139, 92, 246, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.card-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-gray);
    font-family: 'Poppins', sans-serif;
}

.card-title p {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Package Cards */
.package-grid {
    display: grid;
    gap: 20px;
}

.package-card {
    background: var(--light-gray);
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    padding: 25px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.selected {
    border-color: var(--primary);
    background: var(--gradient-light);
}

.package-card.selected::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--success);
    font-size: 1.25rem;
}

.package-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.package-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.package-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-info p {
    font-size: 0.875rem;
    color: var(--gray);
    display: none; /* MİNİMALİST: Açıklamayı gizle, sadece tooltip'te göster */
}

/* ============================================================
   PACKAGE TOOLTIP - MİNİMALİST & MOBİL OPTİMİZE
   ============================================================ */

/* Package Tooltip Icon - MİNİMALİST & MOBİL-FRIENDLY */
.package-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    font-size: 0.875rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 4px;
    border-radius: 50%;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.package-tooltip-icon:hover {
    color: var(--primary-dark);
    background: rgba(139, 92, 246, 0.15);
    transform: scale(1.1);
}

/* DESKTOP: Hover Tooltip */
@media (min-width: 769px) {
    .package-tooltip-icon::before,
    .package-tooltip-icon::after {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 1000;
    }
    
    .package-tooltip-icon::before {
        content: '';
        bottom: 100%;
        margin-bottom: 5px;
        border: 6px solid transparent;
        border-top-color: #1f2937;
    }
    
    .package-tooltip-icon::after {
        content: attr(data-tooltip);
        bottom: 100%;
        margin-bottom: 11px;
        padding: 12px 16px;
        background: #1f2937;
        color: #ffffff;
        font-size: 0.875rem;
        line-height: 1.5;
        border-radius: 8px;
        white-space: normal;
        max-width: 320px;
        min-width: 220px;
        width: max-content;
        text-align: left;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        font-weight: 400;
    }
    
    .package-tooltip-icon:hover::before,
    .package-tooltip-icon:hover::after {
        opacity: 1;
        transform: translateX(-50%) translateY(-5px);
    }
}

/* MOBİLE: Tap to Show Alert + Optimizations */
@media (max-width: 768px) {
    .package-info h4 {
        font-size: 1rem;
        gap: 6px;
    }
    
    .package-tooltip-icon {
        font-size: 0.875rem;
        width: 28px;
        height: 28px;
        -webkit-tap-highlight-color: rgba(139, 92, 246, 0.2);
    }
    
    .package-tooltip-icon:active {
        background: rgba(139, 92, 246, 0.25);
        transform: scale(0.9);
    }
    
    /* Tooltip'leri mobilde gösterme (alert kullan) */
    .package-tooltip-icon::before,
    .package-tooltip-icon::after {
        display: none !important;
    }
}

/* Platform Selection */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.platform-card {
    background: var(--light-gray);
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.platform-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.platform-card.selected {
    border-color: var(--primary);
    background: var(--gradient-light);
}

.platform-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
}

.platform-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

/* Services */
.services-container {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.services-container::-webkit-scrollbar {
    width: 8px;
}

.services-container::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.services-container::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.service-category {
    margin-bottom: 30px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding: 10px;
    background: var(--gradient-light);
    border-radius: 8px;
}

.category-title i {
    color: var(--primary);
}

.category-title h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    margin-bottom: 12px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.service-item:hover {
    background: var(--gradient-light);
    border-color: var(--primary-light);
    transform: translateX(5px);
}

.service-item.selected {
    background: var(--gradient-light);
    border-color: var(--primary);
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    cursor: pointer;
    user-select: none;
}

.checkbox-wrapper {
    position: relative;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    z-index: 2;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.checkbox-wrapper input[type="checkbox"]:checked~.checkbox-custom {
    background: var(--gradient-primary);
    border-color: transparent;
}

.checkbox-wrapper input[type="checkbox"]:checked~.checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 0.75rem;
}

.service-name {
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    user-select: none;
}

.service-price {
    padding: 8px 16px;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

/* Form Inputs */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.form-group label span {
    color: var(--danger);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--dark-gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-left: 20px;
}

/* Price Summary */
.price-summary {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    padding: 30px;
    position: sticky;
    top: 20px;
    color: var(--white);
}

.price-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-header i {
    font-size: 2rem;
    color: white;
}

.price-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.price-item.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.price-label {
    font-size: 1rem;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.price-value.total-value {
    font-size: 2rem;
    font-weight: 800;
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.loading-overlay.show {
    display: flex;
}

.loading-content {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
}

/* Alerts */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(400px);
    transition: var(--transition);
    z-index: 10000;
    box-shadow: var(--shadow-xl);
}

.alert.show {
    transform: translateX(0);
}

.alert.success {
    background: var(--success);
    color: white;
}

.alert.error {
    background: var(--danger);
    color: white;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.alert-message {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Payment Modal */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.payment-modal.show {
    opacity: 1;
    visibility: visible;
}

.payment-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
}

.payment-modal.show .payment-modal-content {
    transform: scale(1) translateY(0);
}

.payment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border);
}

.payment-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.close-modal:hover {
    background: var(--danger);
    color: var(--white);
}

.payment-modal-body {
    padding: 30px;
}

.payment-summary {
    background: var(--gradient-light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.payment-summary h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary);
}

.payment-options h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.payment-method-grid {
    display: grid;
    gap: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    width: 100%;
}

.payment-method:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--gradient-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.payment-method:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.method-info {
    flex: 1;
}

.method-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.method-desc {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Button disabled state */
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Loading Spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
/* ============================================
   RESPONSIVE BREAKPOINTS - MOBİL OPTİMİZE
   ============================================ */
@media (max-width: 1200px) {
    .contact-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-container {
        padding: 15px;
    }
}

@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .price-summary {
        position: static;
        margin-top: 30px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    /* Contact Form - Tek sütun */
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-section-top {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .contact-header {
        margin-bottom: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-title h3 {
        font-size: 1.25rem;
    }
    
    .contact-title p {
        font-size: 0.875rem;
    }
    
    /* Header */
    .header {
        padding: 40px 15px 30px;
    }
    
    .logo {
        padding: 10px 20px;
        gap: 12px;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .header h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 15px;
    }
    
    .header .subtitle {
        font-size: 1rem;
    }
    
    /* Badges - Wrap */
    .features-badges {
        gap: 12px;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    /* Form Container */
    .form-container {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    /* Steps Progress */
    .steps-progress {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .step {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .step::before {
        display: none;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        margin: 0;
    }
    
    .step-title {
        text-align: left;
        font-size: 0.875rem;
    }
    
    /* Package Grid */
    .package-grid {
        gap: 15px;
    }
    
    .package-card {
        padding: 20px;
    }
    
    .package-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Platform Grid */
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .platform-card {
        padding: 15px;
    }
    
    .platform-logo {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .platform-name {
        font-size: 0.85rem;
    }
    
    /* Services Container */
    .services-container {
        max-height: 400px;
    }
    
    .service-item {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .service-checkbox {
        width: 100%;
    }
    
    .service-price {
        width: 100%;
        text-align: center;
        padding: 10px 16px;
    }
    
    /* Price Summary */
    .price-summary {
        padding: 25px 20px;
    }
    
    .price-header h3 {
        font-size: 1.25rem;
    }
    
    .price-item {
        margin-bottom: 15px;
    }
    
    .price-value.total-value {
        font-size: 1.75rem;
    }
    
    /* Action Buttons */
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    /* Alerts - Mobil uyumlu */
    .alert {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        width: calc(100% - 20px);
    }
    
    /* Payment Modal */
    .payment-modal-content {
        width: 95%;
        margin: 20px auto;
        max-height: 85vh;
    }

    .payment-modal-header {
        padding: 20px;
    }
    
    .payment-modal-header h3 {
        font-size: 1.25rem;
    }

    .payment-modal-body {
        padding: 20px;
    }
    
    .payment-method {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .main-container {
        padding: 10px;
    }
    
    .form-container {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .header {
        padding: 30px 10px 20px;
    }
    
    .logo {
        padding: 8px 16px;
    }
    
    .logo i {
        font-size: 1.25rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .header .subtitle {
        font-size: 0.9rem;
    }
    
    .features-badges {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
    }
    
    /* Platform Grid - 2 columns on very small screens */
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .platform-card {
        padding: 12px;
    }
    
    .platform-logo {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .platform-name {
        font-size: 0.8rem;
    }
    
    /* Package Cards */
    .package-card {
        padding: 15px;
    }
    
    .package-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .package-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .package-info h4 {
        font-size: 1rem;
    }
    
    /* Service Items */
    .service-item {
        padding: 12px;
    }
    
    /* Price Summary */
    .price-summary {
        padding: 20px 15px;
    }
    
    .price-header i {
        font-size: 1.5rem;
    }
    
    .price-header h3 {
        font-size: 1.1rem;
    }
    
    .price-value.total-value {
        font-size: 1.5rem;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    /* Payment Method */
    .payment-method {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px;
    }

    .method-icon {
        margin: 0 auto;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .method-name {
        font-size: 1rem;
    }
    
    .method-desc {
        font-size: 0.8rem;
    }
    
    /* Form Inputs */
    .form-input {
        padding: 12px 15px 12px 40px;
        font-size: 0.9rem;
    }
    
    .input-wrapper i {
        left: 12px;
        font-size: 0.9rem;
    }
    
    /* Card Headers */
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .card-title h3 {
        font-size: 1.1rem;
    }
    
    .card-title p {
        font-size: 0.8rem;
    }
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.5) 50%, 
        transparent 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-title a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-title a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    padding: 6px 0;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary);
    transition: var(--transition);
}

.footer-links a:hover i {
    color: var(--primary-light);
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
}

.footer-copyright strong {
    color: #ffffff;
    font-weight: 600;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.footer-social a i {
    font-size: 1.1rem;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
        margin-top: 40px;
    }

    .footer-title {
        font-size: 0.95rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social a i {
        font-size: 1rem;
    }
}