        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #F0C66D;
            --gold-dark: #C9973B;
            --white: #FFFFFF;
            --dark: #1a1a1a;
            --gray: #666;
            --light-bg: #fafafa;
            --blue: #4A90E2;
            --green: #27AE60;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #fafafa;
        }

        .footer-wave .shape-fill {
            fill: #fafafa;
        }



        .schedule-container {
            margin-top: auto;
            max-width: 800px;
            margin: 0 auto;
            padding: 10px 0;
            margin-top: 7%;
            margin-bottom: 7%;
        }

        /* Progress Indicator */
        .progress-wrapper {
            margin-bottom: 20px;

        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            margin-bottom: 15px;
        }

        .progress-line {
            position: absolute;
            top: 25px;
            left: 0;
            right: 0;
            height: 3px;
            background: #e0e0e0;
            z-index: 0;
        }

        .progress-line-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
            transition: width 0.4s ease;
            width: 0%;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .step-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 3px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: #999;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .step-item.active .step-circle {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-color: var(--gold);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(240, 198, 109, 0.4);
        }

        .step-item.completed .step-circle {
            background: var(--green);
            border-color: var(--green);
            color: white;
        }

        .step-icon {
            font-size: 1.3rem;
        }

        .step-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #999;
            text-align: center;
            transition: color 0.3s ease;
        }

        .step-item.active .step-label {
            color: var(--gold-dark);
        }

        .step-item.completed .step-label {
            color: var(--green);
        }

        /* Card Container */
        .schedule-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .card-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .card-header h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.2rem;
            color: var(--dark);
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .card-header p {
            color: var(--gray);
            font-size: 1rem;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8e8e8;
            border-radius: 12px;
            font-size: 1rem;
            color: var(--dark);
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(240, 198, 109, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Summary Section */
        .summary-section {
            background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 30px;
            border-left: 4px solid var(--gold);
        }

        .summary-section h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #e8e8e8;
        }

        .summary-item:last-child {
            border-bottom: none;
        }

        .summary-item span:first-child {
            color: var(--gray);
            font-weight: 500;
        }

        .summary-item span:last-child {
            color: var(--dark);
            font-weight: 600;
        }

        /* Important Notice */
        .important-notice {
            background: #fff9e6;
            border: 2px solid #ffd700;
            border-radius: 12px;
            padding: 20px;
            margin: 25px 0;
        }

        .important-notice h4 {
            color: #cc8800;
            margin-bottom: 12px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .important-notice ul {
            list-style: none;
            padding-left: 0;
        }

        .important-notice li {
            padding: 6px 0;
            color: var(--dark);
            position: relative;
            padding-left: 24px;
        }

        .important-notice li:before {
            content: "⚠️";
            position: absolute;
            left: 0;
        }

        /* Buttons */
        .cta-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .btn {
            flex: 1;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .primary-btn {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(240, 198, 109, 0.3);
        }

        .primary-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 198, 109, 0.4);
        }

        .secondary-btn {
            background: white;
            color: var(--gray);
            border: 2px solid #e8e8e8;
        }

        .secondary-btn:hover {
            border-color: var(--gold);
            color: var(--gold-dark);
        }

        /* Success Page */
        .confirmation-message {
            text-align: center;
        }

        .confirmation-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--green) 0%, #229954 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: scaleIn 0.5s ease;
        }

        .confirmation-icon i {
            font-size: 3rem;
            color: white;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .confirmation-message h2 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .confirmation-message>p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 30px;
        }

        /* Error Message */
        #address-error {
            background: #ffe6e6;
            color: #cc0000;
            padding: 12px;
            border-radius: 8px;
            margin-top: 8px;
            font-size: 0.9rem;
            display: none;
        }


        /* ================= MOBILE RESPONSIVE (SCHEDULE PAGE - FULL) ================= */

        /* iOS zoom fix: 16px altı font iOS'ta zoom yapar */
        @media (max-width: 768px) {

            input,
            select,
            textarea {
                font-size: 16px;
            }
        }

        /* ---------------- 1) TABLET + MOBILE (<=768px) ---------------- */
        @media (max-width: 768px) {

            /* taşma kes */
            html,
            body {
                overflow-x: hidden;
            }

            body {

                background-color: #fafafa;
            }


            /* Container: margin-top auto / % gibi şeyleri ez */
            .schedule-container {
                max-width: 100% !important;
                margin: 0 auto !important;

                /* sağ-sol nefes */
                padding-left: 14px;
                padding-right: 14px;

                /* header-placeholder / sticky nav için üst boşluk */
                padding-top: 88px;

                /* alt boşluk */
                padding-bottom: 18px;

                /* eski tanımları sıfırla */
                margin-top: 0 !important;
                margin-bottom: 0 !important;
            }

            /* Progress */
            .progress-wrapper {
                margin-bottom: 16px;
            }

            .progress-steps {
                margin-bottom: 10px;
                gap: 10px;
            }

            .progress-line {
                top: 22px;
                height: 3px;
                border-radius: 999px;
            }

            .step-item {
                flex: 1;
                min-width: 0;
            }

            .step-circle {
                width: 44px;
                height: 44px;
                border-width: 2px;
                font-size: 1rem;
                margin-bottom: 8px;
            }

            .step-icon {
                font-size: 1.05rem;
            }

            .step-label {
                font-size: 0.72rem;
                line-height: 1.1;
                max-width: 72px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            /* Card */
            .schedule-card {
                padding: 22px 16px;
                border-radius: 16px;
                box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
                overflow: hidden;
                /* içeride taşma olursa kes */
            }

            .card-header {
                margin-bottom: 22px;
            }

            .card-header h2 {
                font-size: 1.75rem;
                letter-spacing: .6px;
                margin-bottom: 8px;
            }

            .card-header p {
                font-size: 0.95rem;
            }

            /* Form */
            .form-row {
                grid-template-columns: 1fr !important;
                /* tek kolon */
                gap: 14px;
            }

            .form-group {
                margin-bottom: 18px;
                min-width: 0;
                /* input taşmasını önler */
            }

            .form-group label {
                font-size: 0.95rem;
                margin-bottom: 7px;
            }

            /* input/select taşma fix */
            .form-group input,
            .form-group select,
            .form-group textarea {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                box-sizing: border-box;

                padding: 13px 14px;
                border-radius: 12px;
                border-width: 2px;
            }

            /* DATE input: mobilde sığmama sorununu kesin çözer */
            input[type="date"] {
                width: 100%;
                max-width: 100%;
                min-width: 0;
                display: block;

                /* bazı cihazlarda sağdaki ikon alanı için */
                padding-right: 12px;

                /* Safari bazen native boyutu zorluyor */
                -webkit-appearance: none;
                appearance: none;
            }

            textarea {
                min-height: 110px;
                resize: vertical;
            }

            /* Summary */
            .summary-section {
                padding: 18px;
                border-radius: 12px;
                margin-bottom: 18px;
            }

            .summary-section h3 {
                font-size: 1.15rem;
                margin-bottom: 10px;
            }

            .summary-item {
                padding: 9px 0;
                gap: 10px;
            }

            /* Notice */
            .important-notice {
                padding: 14px;
                border-radius: 12px;
                margin: 18px 0;
            }

            .important-notice h4 {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            .important-notice li {
                padding: 6px 0;
                padding-left: 22px;
                font-size: 0.95rem;
            }

            /* Buttons */
            .cta-buttons {
                display: flex;
                flex-direction: column-reverse;
                gap: 10px;
                margin-top: 18px;
            }

            .btn {
                width: 100%;
                padding: 14px 18px;
                border-radius: 14px;
                /* mobilde daha iyi */
                font-size: 1rem;
            }

            /* Address error */
            #address-error {
                font-size: 0.9rem;
                padding: 10px;
                border-radius: 10px;
            }

            /* Confirmation */
            .confirmation-icon {
                width: 86px;
                height: 86px;
                margin-bottom: 18px;
            }

            .confirmation-icon i {
                font-size: 2.6rem;
            }

            .confirmation-message h2 {
                font-size: 1.6rem;
            }

            .confirmation-message>p {
                font-size: 1rem;
                margin-bottom: 18px;
            }
        }


        /* ---------------- 2) SMALL PHONES (<=480px) ---------------- */
        @media (max-width: 480px) {

            .schedule-container {
                padding-left: 12px;
                padding-right: 12px;
                padding-top: 82px;
                /* navbar yüksekliğine göre */
                padding-bottom: 16px;
            }

            .progress-line {
                top: 20px;
            }

            .step-circle {
                width: 40px;
                height: 40px;
            }

            .step-label {
                font-size: 0.68rem;
                max-width: 62px;
            }

            .schedule-card {
                padding: 18px 14px;
                border-radius: 14px;
            }

            .card-header h2 {
                font-size: 1.55rem;
            }

            .card-header p {
                font-size: 0.92rem;
            }

            /* küçük ekranda padding biraz daha az */
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 12px 13px;
            }

            .btn {
                padding: 13px 16px;
                border-radius: 14px;
            }
        }


        /* ---------------- 3) EXTRA SMALL (<=360px) ---------------- */
        @media (max-width: 360px) {

            .schedule-container {
                padding-top: 78px;
            }

            .step-label {
                max-width: 54px;
            }

            .card-header h2 {
                font-size: 1.45rem;
            }
        }