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

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8C5A;
    --secondary-color: #2C2C2C;
    --secondary-light: #3A3A3A;
    --success-color: #10b981;
    --whatsapp-color: #25d366;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
    --bg-light: #F5E6D3;
    --bg-beige: #F4F1E8;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #F5E6D3 0%, #F4F1E8 50%, #F0E4D0 100%);
    min-height: 100vh;
    padding: 20px;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.maintenance-content {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 50px;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.6s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 20px;
}

.logo-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 22px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    animation: fadeInUp 0.8s ease-out;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.02);
}

/* Maintenance Message */
.maintenance-message {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--bg-light);
}

.maintenance-message h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.maintenance-message p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Content Grid - Horizontal Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Section */
.contact-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: left;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    width: 32px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item .label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item .value {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-item .value:hover {
    color: var(--primary-color);
}

/* Action Buttons */
.action-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(255, 107, 53, 0.4);
}

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

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(37, 211, 102, 0.4);
}

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

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(44, 44, 44, 0.4);
}

.btn-sahibinden {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C00 100%);
    color: var(--white);
    grid-column: 1 / -1;
}

.btn-sahibinden:hover {
    background: linear-gradient(135deg, #E55A00 0%, #E67A00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(255, 107, 0, 0.4);
}

/* Credit Form Section */
.credit-form-section {
    background: linear-gradient(135deg, rgba(244, 241, 232, 0.6) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 16px -4px rgba(255, 107, 53, 0.1);
}

.credit-form-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: left;
}

.form-description {
    text-align: left;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.form-group input:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: var(--white);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 16px;
    font-size: 16px;
    margin-top: 8px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -8px rgba(255, 107, 53, 0.4);
}

/* SEO Content - Hidden */
.seo-content {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
    overflow-y: auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 230, 211, 0.95) 100%);
    margin: 5% auto;
    padding: 0;
    border-radius: 32px;
    width: 90%;
    max-width: 520px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.close {
    position: absolute;
    right: 24px;
    top: 24px;
    color: var(--text-light);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10;
    line-height: 1;
}

.close:hover {
    color: var(--text-dark);
    background: rgba(255, 107, 53, 0.1);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    padding: 50px 40px 40px;
}

.modal-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px -8px rgba(255, 107, 53, 0.4);
    animation: iconPulse 2s infinite;
    position: relative;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 12px 24px -8px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 16px 32px -8px rgba(255, 107, 53, 0.5);
    }
}

.modal-icon {
    font-size: 48px;
    color: var(--white);
    z-index: 1;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.modal-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 20px;
}

.modal-content .btn {
    margin: 0;
    min-width: 160px;
    padding: 16px 32px;
    font-size: 15px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

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

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

.loading-overlay p {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

/* Success Message */
.success-message {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--success-color);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.success-message.active {
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-message i {
    font-size: 24px;
}

.success-message p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

/* Success Modal Styles */
.success-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 230, 211, 0.95) 100%);
}

.success-icon-wrapper {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 12px 24px -8px rgba(16, 185, 129, 0.4);
}

.success-icon-wrapper::after {
    border-color: rgba(16, 185, 129, 0.2);
}

.success-modal-content h2 {
    color: #10b981;
    margin-bottom: 16px;
}

.success-modal-content p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 32px;
}

.success-modal-content .btn {
    min-width: 180px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .maintenance-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .maintenance-content {
        padding: 30px 20px;
        gap: 30px;
        border-radius: 24px;
    }

    .logo-image {
        max-width: 220px;
    }

    .maintenance-message h1 {
        font-size: 24px;
    }

    .maintenance-message p {
        font-size: 16px;
    }

    .contact-section h3,
    .credit-form-section h3 {
        font-size: 20px;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .btn-sahibinden {
        grid-column: 1;
    }

    .contact-item {
        padding: 16px;
    }

    .contact-item i {
        font-size: 20px;
    }

    .credit-form-section {
        padding: 30px 20px;
    }

    .modal-content {
        margin: 10% auto;
        max-width: 90%;
    }

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

    .modal-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .modal-icon {
        font-size: 36px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .modal-content p {
        font-size: 15px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-content .btn {
        width: 100%;
        min-width: auto;
    }

    .success-message {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .maintenance-content {
        padding: 25px 15px;
        border-radius: 20px;
    }
    
    .logo-image {
        max-width: 180px;
    }
    
    .maintenance-message h1 {
        font-size: 20px;
    }
    
    .contact-section h3,
    .credit-form-section h3 {
        font-size: 18px;
    }
    
    .btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}
