/* ============================================================================
   CONSOLIDATED CSS FROM VIEW FILES
   Generated: December 22, 2025
   
   This file consolidates CSS from:
   - packages.php (lines 120-359)
   - my-package.php (lines 6-368)
   - package-history.php (lines 6-274)
   - payment-success.php (lines 6-438)
   - mobile.php (lines 215-463)
   - upload-portfolio-images.php (lines 327-364)
   
   ========================================================================== */


/* ============================================================================
   PACKAGES.PHP STYLES - Package Cards & Listing
   ========================================================================== */

/* Paket Kartları */
.packages-section .container {
    padding: 60px 15px;
}

.packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.packages-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a3a3a;
}

.packages-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.package-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.package-card:hover {
    box-shadow: 0 10px 30px rgba(45, 143, 111, 0.15);
    transform: translateY(-5px);
    border-color: #2d8f6f;
}

.package-card.active {
    border-color: #2d8f6f;
    background: linear-gradient(135deg, #f5fdf9 0%, #f0faf5 100%);
}

.badge-current-package {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #2d8f6f, #24786b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.package-card-header {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.package-card-title {
    margin: 0;
    color: #1a3a3a;
    font-size: 1.3rem;
    font-weight: 600;
}

.package-price {
    font-size: 1.5rem;
    color: #2d8f6f;
    font-weight: 700;
}

.package-price small {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
}

.header-action {
    display: flex;
}

.header-action .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.header-action .btn-primary {
    background: #2d8f6f;
    color: white;
}

.header-action .btn-primary:hover {
    background: #24786b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 143, 111, 0.25);
}

.header-action .btn-secondary {
    background: #e0e0e0;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
}

.package-card-body {
    padding: 25px;
    flex-grow: 1;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #f5f5f5;
}

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

.package-features .bi {
    color: #2d8f6f;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-card-footer {
    padding: 15px 25px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 10px;
}

.package-card-footer .btn {
    flex: 1;
    min-width: 120px;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.package-card-footer .btn-primary {
    background: #2d8f6f;
    color: white;
}

.package-card-footer .btn-primary:hover {
    background: #24786b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 143, 111, 0.25);
}

.package-card-footer .btn-primary-alt {
    background: #f0faf5;
    color: #2d8f6f;
    border: 2px solid #2d8f6f;
}

.package-card-footer .btn-primary-alt:hover {
    background: #2d8f6f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 143, 111, 0.25);
}

.package-card-footer .btn-secondary {
    background: #e0e0e0;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .packages-header h1 {
        font-size: 1.8rem;
    }

    .package-card-footer {
        flex-direction: column;
    }

    .package-card-footer .btn {
        width: 100%;
    }
}


/* ============================================================================
   MY-PACKAGE.PHP STYLES - Active Package Display & Management
   ========================================================================== */

:root {
    --primary: #2d8f6f;
    --primary-light: #d4f1ed;
    --dark: #1F193B;
    --text-muted: #6c757d;
    --border: #e5e5e5;
}

.package-container {
    min-height: calc(100vh - 200px);
    padding: 60px 20px;
    background: #fafafa;
}

.package-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.package-header {
    text-align: center;
    margin-bottom: 50px;
}

.package-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.package-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Card Styles */
.package-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.package-card:hover {
    box-shadow: 0 8px 25px rgba(45, 143, 111, 0.12);
    border-color: var(--primary);
}

/* Card Header */
.card-header {
    background: linear-gradient(135deg, #2d8f6f 0%, #24786b 100%);
    padding: 35px 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-header-icon {
    font-size: 3rem;
    opacity: 0.9;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.card-header-info h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.card-header-info p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.badge-status {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Card Body */
.card-body {
    padding: 40px 30px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.info-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f0faf5;
    transform: translateX(3px);
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

/* Portfolio Usage */
.usage-section {
    background: linear-gradient(135deg, #f0faf5 0%, #e8f5f1 100%);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.usage-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.usage-display {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.usage-numbers {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.usage-used {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.usage-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
}

.usage-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.usage-bar {
    width: 100%;
    height: 8px;
    background: rgba(45, 143, 111, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.usage-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #24786b);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.usage-remaining {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.remaining-number {
    color: var(--primary);
    font-weight: 700;
}

/* Card Footer */
.card-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    display: flex;
    gap: 12px;
    border-top: 1px solid var(--border);
}

.btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #24786b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 143, 111, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
}

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

/* PAKET YOKSA */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.empty-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.empty-state h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 400px;
}

.empty-state .btn {
    display: inline-flex;
    padding: 14px 35px;
}

/* Responsive */
@media (max-width: 768px) {
    .package-container {
        padding: 40px 15px;
    }

    .package-header h1 {
        font-size: 1.8rem;
    }

    .card-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .card-header-left {
        flex-direction: column;
        width: 100%;
    }

    .badge-status {
        align-self: flex-start;
    }

    .card-header {
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
    }

    .empty-state {
        padding: 50px 25px;
    }

    .usage-display {
        flex-direction: column;
        gap: 15px;
    }
}


/* ============================================================================
   PACKAGE-HISTORY.PHP STYLES - Timeline & Package History
   ========================================================================== */

.package-history-container {
    min-height: calc(100vh - 200px);
    padding: 60px 20px;
    background: #fafafa;
}

.history-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.history-header {
    text-align: center;
    margin-bottom: 50px;
}

.history-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.history-header p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Timeline */
.package-timeline {
    position: relative;
}

.package-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 80px;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.timeline-dot.active {
    background: var(--primary);
    color: white;
}

.timeline-dot.expired {
    border-color: #ddd;
    color: #999;
    background: #f0f0f0;
}

.timeline-dot.cancelled {
    border-color: #dc3545;
    color: #dc3545;
    background: #ffe0e0;
}

.package-card-timeline .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
    padding: 0;
    background: none;
    color: inherit;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-active {
    background: linear-gradient(135deg, var(--primary), #24786b);
    color: white;
}

.badge-expired {
    background: #ffe5e5;
    color: #dc3545;
}

.badge-cancelled {
    background: #fff3cd;
    color: #856404;
}

.card-body-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.info-group {
    display: flex;
    flex-direction: column;
}

.info-value.price {
    color: var(--primary);
}

.info-value.quota {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .history-header h1 {
        font-size: 1.8rem;
    }

    .package-timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
        left: -5px;
        font-size: 1.2rem;
    }

    .package-card-timeline .card-header {
        flex-direction: column;
        gap: 12px;
    }

    .card-body-timeline {
        grid-template-columns: 1fr 1fr;
    }

    .empty-state {
        padding: 40px 20px;
    }
}


/* ============================================================================
   PAYMENT-SUCCESS.PHP STYLES - Payment Receipt & Confirmation
   ========================================================================== */

.payment-receipt-container {
    background: linear-gradient(135deg, #f9f7f4 0%, #fff5f0 50%, #fff 100%);
    padding: 60px 20px;
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.receipt-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.receipt {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(31, 25, 59, 0.15), 0 0 0 1px rgba(188, 118, 54, 0.1);
    position: relative;
}

.receipt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d8f6f, #d4f1ed, #2d8f6f);
    z-index: 10;
}

/* Yatay Layout Grid */
.receipt-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Header - Sol Taraf */
.receipt-header {
    background: linear-gradient(135deg, #2d8f6f 0%, #24786b 50%, #1a5a47 100%);
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.receipt-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.receipt-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    pointer-events: none;
}

@keyframes floatReceipt {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(10px); }
}

.receipt-header-content {
    position: relative;
    z-index: 2;
}

.receipt-header-content::before,
.receipt-header-content::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.receipt-header-content::after {
    top: auto;
    bottom: -30px;
}

.receipt-header-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    animation: bounceReceipt 0.8s ease-out;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

@keyframes bounceReceipt {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.receipt-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.receipt-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Body - Sağ Taraf */
.receipt-body {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Sections */
.receipt-section {
    margin-bottom: 35px;
}

.receipt-section:last-of-type {
    margin-bottom: 0;
}

.receipt-section-title {
    color: var(--dark);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.receipt-section-title::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

/* Items */
.receipt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.receipt-item:hover {
    padding: 14px 8px;
    background: rgba(45, 143, 111, 0.02);
    border-radius: 4px;
}

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

.receipt-item-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.receipt-item-value {
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    text-align: right;
}

/* Highlight Item */
.receipt-item.highlight {
    background: linear-gradient(135deg, rgba(45, 143, 111, 0.08) 0%, rgba(212, 241, 237, 0.1) 100%);
    padding: 18px 16px;
    border-radius: 12px;
    margin: 15px 0;
    border: 1px solid rgba(45, 143, 111, 0.15);
    border-bottom: none;
}

.receipt-item.highlight:hover {
    background: linear-gradient(135deg, rgba(45, 143, 111, 0.12) 0%, rgba(212, 241, 237, 0.15) 100%);
    border: 1px solid rgba(45, 143, 111, 0.25);
}

.receipt-item.highlight .receipt-item-value {
    color: var(--primary);
    font-size: 1.4rem;
}

/* Reference Code - Bottom */
.receipt-reference {
    background: linear-gradient(135deg, #f9f7f4 0%, #faf8f5 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8e8e8;
    margin-top: 35px;
}

.receipt-reference-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.receipt-reference-code {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.25rem;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    letter-spacing: 2px;
}

/* Footer Section */
.receipt-footer {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(45, 143, 111, 0.05) 0%, rgba(212, 241, 237, 0.05) 100%);
    border-top: 2px solid var(--primary-light);
    padding: 40px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.receipt-footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.receipt-footer-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* Action Buttons */
.receipt-action {
    display: flex;
    gap: 15px;
}

.receipt-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.receipt-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.receipt-btn:active::before {
    width: 300px;
    height: 300px;
}

.receipt-btn-primary {
    background: #1a5a47;
    color: white;
    box-shadow: 0 8px 16px rgba(45, 143, 111, 0.2);
}

.receipt-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(45, 143, 111, 0.3);
}

.receipt-btn-primary:active {
    transform: translateY(-2px);
}

.receipt-btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 700;
}

.receipt-btn-secondary:hover {
    background: #f9f7f4;
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(45, 143, 111, 0.15);
}

.receipt-btn-secondary:active {
    transform: translateY(-2px);
}

/* Responsive - Tablet ve Alt */
@media (max-width: 992px) {
    .receipt-content {
        grid-template-columns: 1fr;
    }

    .receipt-header {
        padding: 40px 40px;
        min-height: auto;
    }

    .receipt-body {
        padding: 40px 40px;
    }

    .receipt-footer {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 40px;
    }
}

@media (max-width: 576px) {
    .receipt {
        border-radius: 12px;
    }

    .receipt-header {
        padding: 30px 20px;
    }

    .receipt-body {
        padding: 30px 20px;
    }

    .receipt-header h1 {
        font-size: 1.8rem;
    }

    .receipt-header-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .receipt-footer {
        padding: 25px 20px;
    }

    .receipt-action {
        flex-direction: column;
        gap: 12px;
    }

    .receipt-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .receipt-section-title {
        font-size: 0.85rem;
    }
}


/* ============================================================================
   MOBILE.PHP STYLES - Mobile Navigation & Menu
   ========================================================================== */

/* Mobile Menu User Profile - Premium Style (Compact without photo) */
.mobile-menu-user-profile {
    padding: 20px;
    background: linear-gradient(135deg, #0c3d34 0%, #0a2f28 100%);
}

.mobile-profile-header-compact {
    text-align: center;
    margin-bottom: 15px;
}

.mobile-profile-header-compact h6 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.mobile-profile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
}

.mobile-profile-badge i {
    font-size: 12px;
    color: #4ade80;
}

.mobile-view-profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-view-profile-btn:hover {
    background: white;
    color: #0c3d34;
    border-color: white;
}

/* Mobile Guest Section */
.mobile-guest-section {
    padding: 24px 20px;
    background: transparent;
}

.mobile-guest-message {
    text-align: center;
    margin-bottom: 20px;
}

.mobile-guest-message h6 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.mobile-guest-message p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-auth-btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.mobile-login-btn {
    background: #bc7636;
    color: #fff;
    border: none;
}

.mobile-login-btn:hover {
    background: #a8672e;
}

.mobile-register-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.mobile-register-btn:hover {
    background: rgba(255,255,255,0.18);
}

.mobile-guide-btn {
    background: rgba(255,255,255,0.1);
    color: #bc7636;
    border: 1px solid #bc7636;
    text-align: center;
    text-decoration: none;
}

.mobile-guide-btn:hover {
    background: #bc7636;
    color: #fff;
}

/* Mobile Menu Divider */
.mobile-menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0;
}

/* Mobile Sidebar Nav Items */
.realestate-sidebar-body .realestate-navigation-nav-menus {
    list-style: none;
    padding: 0;
    margin: 0;
}

.realestate-sidebar-body .realestate-navigation-nav-menus > li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.realestate-sidebar-body .realestate-navigation-nav-menus > li:last-child {
    border-bottom: none;
}

.realestate-sidebar-body .realestate-navigation-nav-menus a {
    padding-left: 20px !important;
}

.realestate-sidebar-body .realestate-navigation-nav-menus > li > a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 20px 15px 25px;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border-bottom: none;
}

.realestate-sidebar-body .realestate-navigation-nav-menus > li > a:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

/* Mobile Quick Actions - Premium Buttons */
.mobile-quick-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-action-primary {
    background: #0c3d34;
    color: white;
    border: 2px solid #0c3d34;
}

.mobile-action-primary:hover {
    background: white;
    color: #0c3d34;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 61, 52, 0.3);
}

.mobile-action-secondary {
    background: white;
    color: #0c3d34;
    border: 2px solid #0c3d34;
}

.mobile-action-secondary:hover {
    background: #0c3d34;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 61, 52, 0.3);
}

.mobile-action-btn i {
    font-size: 16px;
}

/* Mobile Extra Links (Bizimle Sat, Partnerlerimiz, Keşfet) */
.mobile-extra-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-extra-links > li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-extra-links > li:last-child {
    border-bottom: none;
}
.mobile-extra-links > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.mobile-extra-links > li > a:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}
.mobile-extra-links > li > a i {
    width: 16px;
    text-align: center;
    color: #bc7636;
    flex-shrink: 0;
}
/* Mobile Keşfet Accordion */
.mobile-kesfet-item {
    list-style: none;
}
.mobile-kesfet-toggle {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    -webkit-tap-highlight-color: rgba(255,255,255,0.08);
}
.mobile-kesfet-toggle:hover,
.mobile-kesfet-toggle:active {
    background: rgba(255,255,255,0.06);
}
.mobile-kesfet-toggle span {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mobile-kesfet-toggle span i {
    width: 16px;
    text-align: center;
    color: #bc7636;
    flex-shrink: 0;
}
.mobile-kesfet-arrow {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    transition: transform 0.25s ease;
}
.mobile-kesfet-toggle[aria-expanded="true"] .mobile-kesfet-arrow {
    transform: rotate(180deg);
}

/* Keşfet Alt Menü */
.mobile-kesfet-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0,0,0,0.18);
}
.mobile-kesfet-sub > li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-kesfet-sub > li:last-child {
    border-bottom: none;
}

/* Grup Başlığı */
.mobile-kesfet-group {
    display: block;
    padding: 14px 20px 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bc7636;
}

/* Alt Menü Linkleri - Tam Genişlik Tıklanabilir */
.mobile-kesfet-sub li a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 12px 20px 12px 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: rgba(255,255,255,0.08);
}
.mobile-kesfet-sub li a:hover,
.mobile-kesfet-sub li a:active {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

/* Mobile Logout Section */
.mobile-logout-section {
    padding: 16px 20px 24px;
}

.mobile-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    background: rgba(220,53,69,0.12);
    color: rgba(255,120,120,0.9);
    border: 1px solid rgba(220,53,69,0.25);
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
}

.mobile-logout-btn:hover {
    background: rgba(220,53,69,0.22);
    color: #ff8080;
    border-color: rgba(220,53,69,0.5);
}

.mobile-logout-btn i {
    font-size: 16px;
}


/* ============================================================================
   UPLOAD-PORTFOLIO-IMAGES.PHP STYLES - Image Gallery & Preview
   ========================================================================== */

.gallery-preview-item {
    position: relative;
    display: inline-block;
    margin: 10px;
    width: 200px;
    height: 112px;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-image-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-image-btn:hover {
    background: rgba(255, 0, 0, 1);
}


/* ============================================================================
   ÜYE OL — Mobil açılır menü (Bottom-nav dropup + menü içi collapse)
   ========================================================================== */

/* Bottom-nav: Üye Ol butonunun üstüne açılan popover */
.mobile-signup-wrap {
    position: relative;
}
.mobile-signup-dropup {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 180px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px;
    z-index: 1080;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.mobile-signup-wrap.is-open .mobile-signup-dropup {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mobile-signup-dropup[hidden] { display: none; }
.mobile-signup-wrap.is-open .mobile-signup-dropup[hidden] { display: block; }
.mobile-signup-dropup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #fff;
}
.mobile-signup-option {
    display: block;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #070026;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    text-align: center;
}
.mobile-signup-option + .mobile-signup-option {
    margin-top: 2px;
}
.mobile-signup-option:hover,
.mobile-signup-option:active {
    background: #070026;
    color: #fff;
}

/* Menü içi: Bootstrap collapse ile inline açılan iki seçenek */
.mobile-menu-signup-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.mobile-menu-signup-opt {
    display: block;
    padding: 12px 16px;
    background: #fff;
    color: #070026;
    border: 1px solid #DCDBDD;
    border-radius: 10px;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.mobile-menu-signup-opt:hover,
.mobile-menu-signup-opt:active {
    background: #070026;
    color: #fff;
    border-color: #070026;
}
.mobile-register-btn[aria-expanded="true"] {
    background: #070026 !important;
    color: #fff !important;
}

/* ============================================================================
   İMZA VARLIKLAR ERİŞİM UYARI MODALI (premium)
   ========================================================================== */
.signature-auth-modal .modal-dialog {
    max-width: 460px;
}
.signature-auth-content {
    position: relative;
    border: none;
    border-radius: 16px;
    padding: 48px 40px 40px;
    background: #fff;
    text-align: center;
    box-shadow: 0 24px 70px -20px rgba(26, 26, 26, 0.28);
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    overflow: hidden;
}
.signature-auth-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #DAB668 50%, transparent 100%);
}

.signature-auth-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: #9ca0a6;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.signature-auth-close:hover {
    background: rgba(26, 26, 26, 0.06);
    color: #1a1a1a;
}

.signature-auth-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #faf7ef;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 0 0 1px rgba(218, 182, 104, 0.25), 0 8px 22px -6px rgba(218, 182, 104, 0.35);
}
.signature-auth-icon i {
    font-size: 24px;
    color: #DAB668;
}

.signature-auth-kicker {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #DAB668;
    margin-bottom: 12px;
}

.signature-auth-title {
    font-family: 'Poltawski Nowy', 'Inter', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
}

.signature-auth-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0 auto 26px;
    max-width: 360px;
}

.signature-auth-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.signature-auth-btn:hover {
    background: #DAB668;
    color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px -10px rgba(218, 182, 104, 0.5);
}

@media (max-width: 575.98px) {
    .signature-auth-content { padding: 40px 24px 32px; }
    .signature-auth-title   { font-size: 20px; }
    .signature-auth-desc    { font-size: 13px; }
    .signature-auth-btn     { padding: 13px 22px; font-size: 12px; }
}

/* ============================================================================
   Mobilde Kurumsal Markaların Yanındayız (section_id=63) gizle
   ========================================================================== */
@media (max-width: 767.98px) {
    .realstate-millions-of-user { display: none !important; }
}

/* ============================================================================
   Mobilde anasayfa Blog — sadece son (featured) blog görünsün
   ========================================================================== */
@media (max-width: 991.98px) {
    .sadece-blog-section .blog-2col-layout .blog-recent-list,
    .sadece-blog-section .blog-2col-layout > .col-lg-6:has(.blog-recent-list) {
        display: none !important;
    }
}

/* ============================================================================
   Seçkin İş Ortaklarımız — limit logos (desktop 4, mobile 3)
   ========================================================================== */
/* Desktop: 5. ve sonraki logoları gizle */
.luxury-logo-grid > .luxury-logo-item:nth-child(n+5) {
    display: none !important;
}
/* Mobil: 4. ve sonraki logoları gizle */
@media (max-width: 767.98px) {
    .luxury-logo-grid > .luxury-logo-item:nth-child(n+4) {
        display: none !important;
    }
}

/* ============================================================================
   END OF CONSOLIDATED CSS
   ========================================================================== */
