/* Body & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container */
.main-container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.payment-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    overflow: hidden;
    min-height: 500px;
}

/* Right Section: Form */
.form-section {
    flex: 1.5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: #4facfe;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-right: 15px;
    font-size: 20px;
}

.company-logo h2 {
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

/* Left Section: Card Display */
.card-display-section {
    flex: 1;
    background: linear-gradient(135deg, #b71381 0%, #8d1d5f 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    color: white;
}

/* Credit Card Visualization */
.credit-card {
    width: 300px;
    height: 190px;
    perspective: 1000px;
    position: relative;
    margin-bottom: 30px;
}

.card-front, .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #bdc3c7, #2c3e50);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    overflow: hidden;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.card-back {
    transform: rotateY(180deg);
}

.credit-card.flipped .card-front {
    transform: rotateY(-180deg);
}

.credit-card.flipped .card-back {
    transform: rotateY(0deg);
}

/* Card Front Content */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.chip {
    width: 40px;
}

.card-logo {
    width: 50px;
}

.card-number-display {
    font-size: 22px;
    letter-spacing: 2px;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-top: 15px;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    text-transform: uppercase;
}

.card-holder-info, .card-expires-info {
    display: flex;
    flex-direction: column;
}

.card-holder-info .label, .card-expires-info .label {
    font-size: 9px;
    opacity: 0.8;
    margin-bottom: 2px;
}

.card-holder-info .value, .card-expires-info .value {
    font-size: 14px;
    font-weight: 600;
}

/* Card Back Content */
.black-stripe {
    background: #333;
    height: 40px;
    width: 100%;
    position: absolute;
    top: 20px;
    left: 0;
}

.cvv-box {
    margin-top: 60px;
    text-align: right;
    position: relative;
    z-index: 2;
}

.cvv-band {
    background: white;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    display: inline-block;
    min-width: 40px;
    text-align: center;
}

.cvv-box .label {
    display: block;
    font-size: 10px;
    margin-bottom: 5px;
    opacity: 0.8;
    text-align: right;
}

.card-back-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    opacity: 0.8;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    transition: color 0.3s;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    padding-left: 35px; /* space for icon */
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #f9f9f9;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: #4fabfe;
    box-shadow: 0 0 0 3px rgba(79, 171, 254, 0.1);
    background: white;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i, .input-wrapper .currency-symbol {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 14px;
    transition: color 0.3s;
}

.form-control:focus + label {
    color: #4fabfe;
}

.form-control:focus ~ i, .form-control:focus ~ .currency-symbol {
    color: #4fabfe;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.col-half {
    width: 48%;
}

.select-row {
    display: flex;
    gap: 10px;
}

select.form-control {
    padding-left: 10px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #8d1d5f 0%, #b71381ab 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Security Badges */
.security-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    font-size: 11px;
    opacity: 0.7;
}

.badge {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-wrapper {
                flex-direction: column-reverse;
        border-radius: 0;
        min-height: auto;
        box-shadow: none;
        background: transparent;
    }

    .main-container {
        padding: 0;
        max-width: 100%;
    }

    .card-display-section {
        padding: 30px 20px;
        background: transparent;
        height: auto;
    }

    .form-section {
        background: white;
        border-radius: 30px 30px 0 0;
        padding: 30px 20px;
        box-shadow: 0 -10px 20px rgba(0,0,0,0.1);
    }

    .credit-card {
        width: 100%;
        max-width: 340px;
        height: 210px; 
    }
}

	.alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

.alert-error {
  background-color: #ffe5e5;
  color: #b00020;
  border: 1px solid #ffb3b3;
}

.alert-error small {
  display: block;
  font-weight: 500;
}
		
		.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 8px;
    overflow: hidden;
}

.logo-circle .gev-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* İkon stilini geçersiz kılmak için (eğer logo-circle'da i ikonuna özel stil varsa) */
.logo-circle i {
    display: none;
}
		
		.logo-circle {
    width: auto !important;
    height: 40px !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}
		.main-container{
			padding: 10px;
		}
