/* ========================================
   METIN AKAY FRANCHISING - MAIN STYLES
   ======================================== */

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* ========================================
   LANGUAGE SELECTION PAGE
   ======================================== */
.lang-select-page {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-container {
    text-align: center;
    padding: 20px;
}

.lang-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffca00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.lang-logo i {
    font-size: 2.2rem;
}

.lang-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

.lang-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 400;
}

.lang-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px 40px;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 160px;
}

.lang-card:hover {
    background: rgba(255,202,0,0.1);
    border-color: rgba(255,202,0,0.5);
    transform: translateY(-5px);
}

.lang-card .flag {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
    width: 80px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
}

.lang-card .flag svg {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.lang-card:hover .flag svg {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255,202,0,0.4);
}

.lang-card .lang-name {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.lang-card .lang-native {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}


/* ========================================
   LANGUAGE CHANGE BUTTON
   ======================================== */
.lang-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a2e;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.lang-btn i {
    font-size: 1rem;
}

[dir="rtl"] .lang-btn {
    right: auto;
    left: 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 60px 20px 120px;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80" preserveAspectRatio="none"><path fill="%23f5f5f5" d="M0,0 C480,80 960,80 1440,0 L1440,80 L0,80 Z"/></svg>') no-repeat bottom;
    background-size: 100% 100%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #ffca00;
    text-shadow: 0 4px 20px rgba(255,202,0,0.3);
    animation: heroTitlePulse 3s ease-in-out infinite;
}

@keyframes heroTitlePulse {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(255,202,0,0.3);
    }
    50% {
        text-shadow: 0 6px 30px rgba(255,202,0,0.5), 0 0 40px rgba(255,202,0,0.2);
    }
}

.hero p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

/* ========================================
   STEPS SECTION
   ======================================== */
.steps {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.step {
    text-align: center;
    transition: all 0.3s ease;
    max-width: 200px;
}

.step-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

.step-link .step-icon {
    cursor: pointer;
}

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

.step-icon {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 2.2rem;
    border: 3px solid rgba(255,202,0,0.6);
    color: #ffffff;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.step:hover .step-icon {
    background: rgba(255,202,0,0.2);
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(255,202,0,0.4);
    border-color: #ffca00;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #ffca00;
    letter-spacing: 0.5px;
}

.step p {
    font-size: 0.95rem;
    opacity: 0.8;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}


/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
    padding: 60px 20px;
    background: #f5f5f5;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.why-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 45px 50px;
    color: #fff;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 10px 40px rgba(26,26,46,0.3);
    border-left: 4px solid #ffca00;
    transition: all 0.4s ease;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(26,26,46,0.4);
}

.why-box:hover .why-image i {
    transform: scale(1.1) rotate(-5deg);
    color: rgba(255,255,255,0.4);
}

.why-content {
    flex: 1;
    min-width: 280px;
}

.why-content h2 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #ffca00;
}

.why-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

.why-image {
    flex: 0 0 120px;
    text-align: center;
}

.why-image i {
    font-size: 5rem;
    color: rgba(255,255,255,0.25);
    transition: all 0.4s ease;
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,202,0,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,202,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #ffca00, transparent);
    margin: 20px auto 0;
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.brand-card {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 480px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,202,0,0.2);
    background-color: #ffffff;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,46,0.95) 0%, rgba(22,33,62,0.92) 100%);
    transition: all 0.5s ease;
}

.brand-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255,202,0,0.3);
    border-color: rgba(255,202,0,0.5);
}

.brand-card:hover::before {
    background: linear-gradient(135deg, rgba(255,202,0,0.15) 0%, rgba(22,33,62,0.9) 100%);
}

.brand-content {
    position: relative;
    z-index: 2;
    padding: 45px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brand-logo {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #ffca00 0%, #e6b800 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(255,202,0,0.4);
    transition: all 0.4s ease;
}

.brand-logo-img {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    padding: 15px;
    border: 3px solid rgba(255,202,0,0.5);
}

.brand-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
}

.logo-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.logo-name {
    font-size: 0.75rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: 1px;
    line-height: 1.2;
}

.brand-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-logo-img i {
    font-size: 3rem;
    color: #ffca00;
}

.brand-card:hover .brand-logo-img {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 15px 40px rgba(255,202,0,0.6);
    border-color: #ffca00;
}

.brand-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.brand-badge {
    display: inline-block;
    padding: 8px 18px;
    background: transparent;
    border: 1px solid rgba(255,202,0,0.4);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ffca00;
    font-weight: 600;
    margin-bottom: 20px;
    align-self: flex-start;
}

.brand-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.brand-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.brand-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.brand-features li:last-child {
    border-bottom: none;
}

.brand-features i {
    color: #ffca00;
    font-size: 1rem;
}

.brand-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #ffca00 0%, #e6b800 100%);
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255,202,0,0.3);
    align-self: flex-start;
}

.brand-btn:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffca00 100%);
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(255,202,0,0.5);
}

.brand-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.brand-btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages {
    padding: 50px 20px;
    background: #f5f5f5;
}

.adv-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.adv-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-left: 4px solid #ffca00;
    transition: all 0.4s ease;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26,26,46,0.4);
    border-left-color: #fff;
}

.adv-card:hover .adv-icon i {
    transform: scale(1.15) rotate(5deg);
    color: rgba(255,255,255,0.5);
}

.adv-card:hover .adv-content h3 {
    color: #fff;
}

.adv-content {
    flex: 1;
    padding-right: 20px;
}

.adv-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.adv-content h3 i {
    font-size: 1.5rem;
    color: #ffca00;
    background: transparent;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid rgba(255, 202, 0, 0.3);
}

.adv-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}

.adv-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-icon i {
    font-size: 3.5rem;
    color: rgba(255,255,255,0.35);
    transition: all 0.4s ease;
}


/* ========================================
   FORM SECTION
   ======================================== */
.form-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.form-box {
    max-width: 950px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 50px 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.form-box h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffca00;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.form-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffca00, transparent);
    border-radius: 2px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 240px;
}

.form-group.full-width {
    flex: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

.form-group label i {
    margin-right: 8px;
    color: #ffca00;
    width: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ffca00;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,202,0,0.15);
    background: rgba(255,255,255,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23d4af37" d="M6 8L1 3h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
    background-color: rgba(255,255,255,0.05);
}

.form-group select option {
    background: #1a1a2e;
    color: #fff;
}

.radio-group {
    display: flex;
    gap: 30px;
    padding: 10px 0;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.radio-group label:hover {
    border-color: rgba(255,202,0,0.5);
    background: rgba(255,202,0,0.1);
}

.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #ffca00;
}

.radio-group input[type="radio"]:checked + span,
.radio-group label:has(input:checked) {
    border-color: #ffca00;
    background: rgba(255,202,0,0.15);
}

.kvkk-group {
    margin: 28px 0;
    padding: 18px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}

.kvkk-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.kvkk-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #ffca00;
    flex-shrink: 0;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ffca00 0%, #e6b800 100%);
    color: #1a1a2e;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn i {
    font-size: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,202,0,0.4);
    background: linear-gradient(135deg, #ffd700 0%, #ffca00 100%);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(255,202,0,0.3);
}


/* ========================================
   FOOTER
   ======================================== */
footer {
    background: #1a1a2e;
    color: #fff;
    padding: 45px 20px 35px;
    text-align: center;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffca00;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-logo i {
    font-size: 1.4rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #ffca00;
    border-color: #ffca00;
    transform: translateY(-3px);
}

.footer-contact {
    margin: 18px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact span {
    color: rgba(255,255,255,0.5);
}

.footer-contact a {
    color: #ffca00;
    text-decoration: none;
    margin-left: 5px;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 15px;
}

/* ========================================
   ALERTS
   ======================================== */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .lang-logo {
        font-size: 2rem;
    }
    
    .lang-card {
        padding: 25px 35px;
    }
    
    .lang-card .flag {
        width: 70px;
        height: 50px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .steps {
        gap: 40px;
    }
    
    .step {
        max-width: 150px;
    }
    
    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }
    
    .step h4 {
        font-size: 1.1rem;
    }
    
    .step p {
        font-size: 0.85rem;
    }
    
    .why-box {
        padding: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .brand-card {
        min-height: 420px;
    }
    
    .brand-content {
        padding: 35px 30px;
    }
    
    .brand-logo {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
    }
    
    .brand-logo-img {
        width: 100px;
        height: 100px;
        padding: 12px;
    }
    
    .brand-card h3 {
        font-size: 1.6rem;
    }
    
    .brand-desc {
        font-size: 0.95rem;
    }
    
    .brand-btn {
        width: 100%;
        justify-content: center;
    }
    
    .adv-card {
        padding: 22px 25px;
    }
    
    .adv-content h3 {
        font-size: 1.1rem;
    }
    
    .adv-content p {
        font-size: 0.85rem;
    }
    
    .adv-icon {
        width: 60px;
        height: 60px;
    }
    
    .adv-icon i {
        font-size: 2.5rem;
    }
    
    .form-box {
        padding: 25px;
    }
}


/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

/* Başlangıç durumu - görünmez */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Görünür durumu */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Avantaj kartları için sıralı animasyon */
.adv-card.animate-on-scroll {
    opacity: 0;
    transform: translateX(-30px);
}

.adv-card.animate-on-scroll.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Her kart için gecikme */
.adv-card:nth-child(1).animate-on-scroll { transition-delay: 0s; }
.adv-card:nth-child(2).animate-on-scroll { transition-delay: 0.08s; }
.adv-card:nth-child(3).animate-on-scroll { transition-delay: 0.16s; }
.adv-card:nth-child(4).animate-on-scroll { transition-delay: 0.24s; }
.adv-card:nth-child(5).animate-on-scroll { transition-delay: 0.32s; }

/* Why box için özel animasyon */
.why-box.animate-on-scroll {
    opacity: 0;
    transform: scale(0.95);
}

.why-box.animate-on-scroll.visible {
    opacity: 1;
    transform: scale(1);
}

/* Form box için animasyon */
.form-box.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.form-box.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Steps için animasyon */
.step.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
}

.step.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(1) { transition-delay: 0s; }
.step:nth-child(2) { transition-delay: 0.15s; }
.step:nth-child(3) { transition-delay: 0.3s; }

/* Footer için animasyon */
footer.animate-on-scroll {
    opacity: 0;
}

footer.animate-on-scroll.visible {
    opacity: 1;
}


/* ========================================
   MULTI-STEP FORM
   ======================================== */

/* Step Indicators */
.form-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.step-indicator.active,
.step-indicator.completed {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.4s ease;
}

.step-indicator.active .step-number {
    background: #ffca00;
    border-color: #ffca00;
    color: #1a1a2e;
    box-shadow: 0 0 20px rgba(255,202,0,0.4);
}

.step-indicator.completed .step-number {
    background: rgba(255,202,0,0.3);
    border-color: #ffca00;
    color: #ffca00;
}

.step-indicator span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.step-indicator.active span {
    color: #ffca00;
}

.step-line {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    margin: 0 15px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.step-line.completed {
    background: #ffca00;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

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

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

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-next,
.btn-prev {
    flex: 1;
    padding: 16px 28px;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-next {
    background: linear-gradient(135deg, #ffca00 0%, #e6b800 100%);
    color: #1a1a2e;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,202,0,0.4);
}

.btn-prev {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
}

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

/* Error State */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.2) !important;
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.form-box.shake {
    animation: shake 0.5s ease;
}

/* Location Type Radio Group */
.radio-group.location-type {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-group.location-type label {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

/* Responsive Multi-step */
@media (max-width: 768px) {
    .form-steps-indicator {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step-line {
        width: 30px;
        margin: 0 8px;
        margin-bottom: 25px;
    }
    
    .step-number {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .step-indicator span {
        font-size: 0.7rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .btn-prev {
        order: 2;
    }
    
    .btn-next {
        order: 1;
    }
}




