/* Oweb Premium Compact Dashboard Style - Bold Geometric Background */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

:root {
    --primary: #f1712a;
    --primary-op: rgba(241, 113, 42, 0.08);
    --text-main: #0f172a;
    --text-light: #64748b;
    --bg-page: #fdfdfd;
    --border-subtle: #e2e8f0;
    --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 8px 16px -2px rgba(0, 0, 0, 0.06);
}

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

/* --- Belirgin Geometrik Arka Plan --- */
.bg-geometry {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Noktalı Izgara Deseni - Belirgin */
.geo-dot-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#94a3b8 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.15;
}

/* Şekiller - Daha Büyük & Net */
.geo-shape {
    position: absolute;
    filter: blur(8px);
    /* Blur azaltıldı */
    opacity: 0.9;
    /* Opacity artırıldı */
    z-index: -1;
    animation: float 20s infinite alternate ease-in-out;
}

.circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(241, 113, 42, 0.15), rgba(241, 113, 42, 0.05));
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.square-1 {
    width: 350px;
    height: 350px;
    background: rgba(148, 163, 184, 0.15);
    transform: rotate(30deg);
    bottom: -80px;
    left: -80px;
    border-radius: 40px;
    animation-delay: -5s;
    border: 2px solid rgba(148, 163, 184, 0.2);
}

.square-2 {
    width: 180px;
    height: 180px;
    background: rgba(241, 113, 42, 0.1);
    top: 30%;
    left: 15%;
    transform: rotate(15deg);
    border-radius: 24px;
    animation-delay: -2s;
    border: 1px solid rgba(241, 113, 42, 0.2);
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 180px solid rgba(15, 23, 42, 0.05);
    top: 20%;
    right: 30%;
    transform: rotate(-15deg);
    filter: blur(4px);
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(20px) rotate(5deg);
    }
}

/* --- Sayfa İçeriği --- */
.page-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    flex-shrink: 0;
}

.logo {
    height: 36px;
    width: auto;
    display: block;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.domain-area {
    margin-bottom: 2rem;
    text-align: center;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.service-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85);
    /* Daha opak, okunabilirlik için */
    backdrop-filter: blur(12px);
    border: 1px solid white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    gap: 1rem;
}

.service-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(241, 113, 42, 0.4);
    background: white;
}

/* İkon Kutusu */
.icon-wrapper {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0;
    transition: all 0.2s ease;
}

.service-box:hover .icon-wrapper {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.service-box:hover h3 {
    color: var(--primary);
}

.details h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.1rem;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.details p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.3;
}

/* Footer */
.footer {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 800px) {
    body {
        height: auto;
        overflow-y: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .main-content {
        padding: 2rem 1.5rem;
    }

    .footer {
        flex-direction: column;
        gap: 0.5rem;
    }
}