/* ============================================
   SMSONAYTR.COM - Global Styles
   ============================================ */

:root {
    --primary-color: #0066cc;
    --secondary-color: #00cc66;
    --danger-color: #ff3333;
    --warning-color: #ffaa00;
    --info-color: #00ccff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}

/* ============================================
   NAVIGATION & HEADER
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052a3 100%) !important;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.navbar-logo {
    height: 36px;
    max-height: 36px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.navbar-brand span {
    background: linear-gradient(135deg, #fff 0%, #e6f2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
    min-height: auto;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.2rem;
    line-height: 1.8;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-badge i {
    font-size: 1.2rem;
}

.illustration-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: white;
    opacity: 0.9;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FORM & SELECTION CARDS
   ============================================ */

.card {
    border-radius: 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-section {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Provider Cards */
.provider-card {
    position: relative;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.provider-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.provider-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 204, 102, 0.1));
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.25);
}

.provider-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Service, Country, Operator Cards */
.service-card,
.country-card,
.operator-card {
    position: relative;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
    overflow: hidden;
}

.service-card::before,
.country-card::before,
.operator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover,
.country-card:hover,
.operator-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.service-card.selected,
.country-card.selected,
.operator-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 204, 102, 0.1));
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.25);
}

.service-card.selected::after,
.country-card.selected::after,
.operator-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .card-icon,
.country-card:hover .card-icon,
.operator-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

.card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

/* Summary Box */
.summary-box {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 204, 102, 0.05));
}

.summary-box p {
    margin: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    font-weight: 600;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0052a3);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
    background: linear-gradient(135deg, #0052a3, var(--primary-color));
}

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

.btn-success {
    background: linear-gradient(135deg, var(--secondary-color), #00aa55);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 204, 102, 0.3);
    background: linear-gradient(135deg, #00aa55, var(--secondary-color));
}

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

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-secondary {
    color: #666;
    border: 2px solid #ddd;
}

.btn-outline-secondary:hover {
    background: #f5f5f5;
    border-color: #999;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 5rem 0;
}

.feature-card {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(-10deg);
    color: var(--secondary-color);
}

.feature-card h5 {
    color: #333;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-card {
    background: white;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 5rem 0;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    margin-top: 5rem;
}

.footer a {
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
    display: inline-block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .feature-badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .illustration-placeholder {
        height: 250px;
        font-size: 100px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .display-5 {
        font-size: 1.8rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .card {
        margin-bottom: 1rem;
    }

    .service-card,
    .country-card,
    .operator-card {
        padding: 1rem;
    }

    .card-title {
        font-size: 0.95rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .feature-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    .feature-badge i {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .display-4 {
        font-size: 1.8rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    .display-6 {
        font-size: 1.2rem;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.5s ease-out;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.bg-gradient {
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0ff 100%);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0052a3;
}

/* ============================================
   LOADING OVERLAY
   ============================================ */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-content {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.loading-content .spinner-border {
    color: var(--primary-color);
}

.loading-content p {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ============================================
   COPY TOAST NOTIFICATION
   ============================================ */

.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, var(--secondary-color), #00aa55);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 204, 102, 0.4);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

.copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Flying Animation */
.flying-icon {
    position: fixed;
    z-index: 20000;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0.8;
}

/* ============================================
   NUMBER & SMS DISPLAY
   ============================================ */

.number-box,
.sms-box {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.sms-box {
    border-left-color: var(--secondary-color);
}

.phone-display,
.sms-display {
    transition: all 0.3s ease;
}

.phone-display:hover,
.sms-display:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.copy-btn {
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.05);
}

.polling-badge {
    animation: pulse 2s ease-in-out infinite;
}

.sms-received .polling-badge {
    display: none;
}

.sms-received::before {
    content: '✓ SMS Alındı!';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.sms-received {
    position: relative;
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 204, 102, 0.05), rgba(0, 204, 102, 0.1)) !important;
}

.sms-received .sms-display {
    border-color: var(--secondary-color);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Card Count */
.card-count {
    font-size: 0.8rem;
    color: #888;
}

/* Card Rate */
.card-rate {
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Card Availability - Modern number count display */
.card-availability {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 204, 102, 0.1));
    color: #0066cc;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.card-availability i {
    font-size: 0.9rem;
}

/* ============================================
   COUNTRY FLAGS
   ============================================ */

.country-flag {
    width: 32px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.country-card:hover .country-flag {
    transform: scale(1.1);
}

.card-flag {
    margin-bottom: 0.75rem;
}

/* ============================================
   SEARCH & FILTER BOX
   ============================================ */

.search-filter-box {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 204, 102, 0.05));
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.search-filter-box .form-control {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.search-filter-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.search-filter-box .input-group-text {
    border-radius: 0.75rem 0 0 0.75rem;
    border: 2px solid #e0e0e0;
    border-right: none;
    color: var(--primary-color);
}

.filter-box {
    margin-bottom: 1rem;
}

/* Filter Buttons */
.country-filter-btn,
.operator-filter-btn {
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.country-filter-btn.active,
.operator-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #0052a3) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.country-filter-btn:not(.active):hover,
.operator-filter-btn:not(.active):hover {
    background: rgba(0, 102, 204, 0.1);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .search-filter-box .btn-group {
        flex-direction: column;
    }

    .search-filter-box .btn-group .btn {
        border-radius: 0.5rem !important;
        margin-bottom: 0.5rem;
    }

    .country-flag {
        width: 28px;
        height: 21px;
    }
}

/* ============================================
   STICKY BOTTOM SELECTION BAR
   ============================================ */

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
    animation: slideUp 0.3s ease-out;
}

.sticky-bottom-bar.d-none {
    display: none !important;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-bottom-selections {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.sticky-bottom-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    color: white;
    font-size: 0.82rem;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-bottom-chip .chip-label {
    opacity: 0.7;
    font-size: 0.72rem;
}

.sticky-bottom-chip .chip-value {
    font-weight: 700;
}

.sticky-bottom-chip.price-chip {
    background: linear-gradient(135deg, #00cc66, #00aa55);
    font-weight: 700;
    padding: 0.4rem 1rem;
}

.sticky-bottom-chip#stickyBalance {
    background: rgba(0, 0, 0, 0.25);
    color: #ffeb3b;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-bottom-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sticky-bottom-actions .btn {
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sticky-bottom-actions .btn-sticky-back {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sticky-bottom-actions .btn-sticky-back:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.sticky-bottom-actions .btn-sticky-next {
    background: white;
    color: #0066cc;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.sticky-bottom-actions .btn-sticky-next:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.sticky-bottom-actions .btn-sticky-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.sticky-bottom-actions .btn-sticky-buy {
    background: linear-gradient(135deg, #00cc66, #00aa55);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 204, 102, 0.4);
}

.sticky-bottom-actions .btn-sticky-buy:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 204, 102, 0.5);
}

/* Add padding to body when sticky bar is visible */
body.sticky-bar-active {
    padding-bottom: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .sticky-bottom-bar {
        flex-direction: column;
        padding: 0.65rem 1rem;
        gap: 0.65rem;
    }

    .sticky-bottom-selections {
        justify-content: center;
        width: 100%;
    }

    .sticky-bottom-chip {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }

    .sticky-bottom-actions {
        width: 100%;
        justify-content: center;
    }

    .sticky-bottom-actions .btn {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
    }

    body.sticky-bar-active {
        padding-bottom: 130px;
    }
}

/* Mobilde SweetAlert login modalını ekrana sığdır */
@media (max-width: 768px) {
    .swal-mobile-compact {
        width: 92% !important;
        max-width: 340px !important;
        padding: 1.2rem 1rem !important;
        font-size: 0.9rem !important;
    }
    .swal-mobile-compact .swal2-title {
        font-size: 1.1rem !important;
    }
    .swal-mobile-compact .swal2-icon {
        width: 50px !important;
        height: 50px !important;
        margin: 0.5rem auto !important;
    }
    .swal-mobile-compact .swal2-icon .swal2-icon-content {
        font-size: 2rem !important;
    }
    .swal-mobile-compact .swal2-html-container {
        font-size: 0.85rem !important;
        margin: 0.5rem 0 !important;
        padding: 0 0.3rem !important;
    }
    .swal-mobile-compact .swal2-actions {
        margin-top: 0.6rem !important;
        gap: 0.4rem !important;
    }
    .swal-mobile-compact .swal2-actions .swal2-confirm,
    .swal-mobile-compact .swal2-actions .swal2-cancel {
        font-size: 0.82rem !important;
        padding: 0.45rem 1rem !important;
    }
}

/* ============================================
   BRAND COLORS
   ============================================ */

.service-whatsapp .card-icon,
.service-whatsapp:hover .card-icon {
    color: #25D366;
}

.service-telegram .card-icon,
.service-telegram:hover .card-icon {
    color: #0088cc;
}

.service-instagram .card-icon,
.service-instagram:hover .card-icon {
    color: #C13584;
}

.service-facebook .card-icon,
.service-facebook:hover .card-icon {
    color: #1877F2;
}

.service-twitter .card-icon,
.service-twitter:hover .card-icon {
    color: #1DA1F2;
}

.service-tiktok .card-icon,
.service-tiktok:hover .card-icon {
    color: #000000;
}

.service-google .card-icon,
.service-google:hover .card-icon {
    color: #EA4335;
}

.service-youtube .card-icon,
.service-youtube:hover .card-icon {
    color: #FF0000;
}

.service-discord .card-icon,
.service-discord:hover .card-icon {
    color: #5865F2;
}

.service-microsoft .card-icon,
.service-microsoft:hover .card-icon {
    color: #00A4EF;
}

.service-netflix .card-icon,
.service-netflix:hover .card-icon {
    color: #E50914;
}

.service-tinder .card-icon,
.service-tinder:hover .card-icon {
    color: #FE3C72;
}

.service-uber .card-icon,
.service-uber:hover .card-icon {
    color: #000000;
}

.service-amazon .card-icon,
.service-amazon:hover .card-icon {
    color: #FF9900;
}

.service-linkedin .card-icon,
.service-linkedin:hover .card-icon {
    color: #0077B5;
}

.service-snapchat .card-icon,
.service-snapchat:hover .card-icon {
    color: #FFD700;
    text-shadow: 0 0 1px #000;
}

.service-viber .card-icon,
.service-viber:hover .card-icon {
    color: #665CAC;
}

.service-line .card-icon,
.service-line:hover .card-icon {
    color: #00C300;
}

.service-wechat .card-icon,
.service-wechat:hover .card-icon {
    color: #7BB32E;
}

.service-paypal .card-icon,
.service-paypal:hover .card-icon {
    color: #003087;
}

.service-airbnb .card-icon,
.service-airbnb:hover .card-icon {
    color: #FF5A5F;
}

.service-steam .card-icon,
.service-steam:hover .card-icon {
    color: #1b2838;
}

.service-vk .card-icon,
.service-vk:hover .card-icon {
    color: #4680C2;
}

/* Ensure selected state is always white and overrides hover */
.service-card.selected .card-icon,
.service-card.selected:hover .card-icon {
    color: white !important;
    text-shadow: none;
}