:root {
    /* Color Palette - Premium Light Mode */
    --bg-main: #fbfbfd;
    --bg-card: #ffffff;
    --primary: #007aff;
    --primary-hover: #0071e3;
    --secondary: #f5f5f7;
    --text-main: #1d1d1f;
    --text-dim: #86868b;
    --success: #34c759;
    --warning: #ff9500;
    --border: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 20px;
    --radius-md: 12px;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Glassmorphism */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

/* Typography */
h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* Cards & Grid */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}

.card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Badge System (Live Status) */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.badge-live::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 
 * Premium Dark Service Cards 
 * Applied to the "Supported Services" sections 
 */
.service-card {
    display: flex;
    align-items: center;
    background: #111111;
    /* Koyu zemin */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* İnce premium çerçeve */
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    background: #1a1a1a;
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    /* İkonun etrafındaki hafif yuvarlaklık */
    font-size: 20px;
    margin-right: 16px;
    background: rgba(255, 255, 255, 0.05);
    /* Arka plan yoksa hafif gri */
}

.service-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.2px;
}

/* Service Grid Layout */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

/* Live Search Input */
.live-search-input {
    width: 100%;
    max-width: 600px;
    padding: 16px 24px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    outline: none;
    transition: all 0.3s;
}

.live-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.3);
}

.live-search-input::placeholder {
    color: #666;
}

/* Info Cards & Info Grid */
.info-section {
    padding: 100px 0;
    background: #ffffff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-card {
    padding: 40px;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
}

.info-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.info-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-main);
}

.info-card p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-section {
    padding: 100px 0;
    background: var(--secondary);
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    padding: 24px 30px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(0, 122, 255, 0.03);
}

.faq-answer {
    padding: 0 30px 24px 30px;
    color: var(--text-dim);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

/* Responsive AdSense Slot */
.ad-slot {
    width: 100%;
    margin: 40px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-dim);
    font-size: 14px;
}