/* Odakon Bilişim - Ana Stil Dosyası */
/* Renk Şeması: #18436f (primary), beyaz, siyah */

:root {
    --primary: #18436f;
    --primary-light: #2a5a8f;
    --primary-lighter: #e8f0f8;
    --primary-dark: #0d2a47;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    position: relative;
    border-radius: 6px;
    transition: color 0.2s ease, background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-cta {
    margin-left: 0.5rem;
    border-radius: 6px;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link svg {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover > .nav-link svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(4px);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.15s ease;
    text-decoration: none;
}

.nav-dropdown-menu a:hover {
    background-color: var(--gray-50);
}

.nav-dropdown-menu a svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.nav-dropdown-menu a div {
    display: flex;
    flex-direction: column;
}

.nav-dropdown-menu a strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1px;
}

.nav-dropdown-menu a span {
    font-size: 0.78rem;
    color: var(--gray-500);
    line-height: 1.3;
}

.nav-dropdown-menu a:hover strong {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background-color: var(--gray-700);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-inner {
        height: 56px;
    }

    .logo {
        font-size: 1.15rem;
    }

    .logo img {
        width: 26px;
        height: 26px;
    }
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: linear-gradient(135deg, rgba(24, 67, 111, 0.05) 0%, rgba(24, 67, 111, 0.02) 100%);
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image .hero-img {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    object-fit: contain;
}

.hero-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-xl);
}

.hero-image-placeholder svg {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background-color: var(--white);
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-light {
    background-color: var(--gray-50);
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-lighter);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-primary .section-tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    margin-bottom: 1rem;
}

.section-primary .section-title {
    color: var(--white);
}

.section-text {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.section-primary .section-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--white) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.service-title {
    margin-bottom: 1rem;
    color: var(--black);
}

.service-text {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
}

.service-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.feature-title {
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--gray-600);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

.about-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.about-text-content h2 {
    margin-bottom: 1.5rem;
}

.about-text-content p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-700);
}

.about-list li strong {
    color: var(--primary);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.process-title {
    margin-bottom: 0.75rem;
}

.process-text {
    color: var(--gray-600);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

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

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info h3 {
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-list {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-lighter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.125rem;
    color: var(--black);
    font-weight: 500;
}

.contact-value a {
    color: var(--black);
}

.contact-value a:hover {
    color: var(--primary);
}

.contact-map {
    background-color: var(--gray-100);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-400);
    margin-bottom: 0;
    margin-right: auto;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Page Header */
.page-header {
    padding: 8rem 0 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    margin-bottom: 1.5rem;
}

.content-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Icon List */
.icon-list {
    list-style: none;
    padding-left: 0;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.icon-list li:last-child {
    border-bottom: none;
}

.icon-list .list-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-lighter);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-list .list-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.card-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
}

.card-primary h3 {
    color: var(--white);
}

.card-primary p {
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-name {
    font-weight: 600;
    color: var(--black);
}

.testimonial-title {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Service Detail Page */
.service-detail {
    padding: 4rem 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background-color: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.sidebar-card h4 {
    margin-bottom: 1rem;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-links a {
    display: block;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border-radius: 8px;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background-color: var(--primary);
    color: var(--white);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--white) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--gray-700);
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    z-index: 999;
    display: none;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    border-top: 1px solid var(--gray-100);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.15s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--primary-lighter);
    color: var(--primary);
}

.mobile-nav-group {
    border-radius: 8px;
}

.mobile-nav-toggle svg {
    transition: transform 0.2s ease;
}

.mobile-nav-group.open .mobile-nav-toggle svg {
    transform: rotate(180deg);
}

.mobile-nav-sub {
    display: none;
    padding-left: 1rem;
    padding-bottom: 0.25rem;
}

.mobile-nav-group.open .mobile-nav-sub {
    display: block;
}

.mobile-nav-sub .mobile-nav-link {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    color: var(--gray-600);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.7;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.blog-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--gray-800);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-link:hover {
    gap: 0.75rem;
}

/* References Section */
.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reference-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.reference-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
}

.reference-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.reference-sector {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-lighter);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ========================================
   SERVICE PAGES — RICH DESIGN
   ======================================== */

/* Service Hero */
.srv-hero {
    padding: 7rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.srv-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.srv-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

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

.srv-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.srv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(4px);
}

.srv-hero-badge svg {
    width: 14px;
    height: 14px;
}

.srv-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.srv-hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 520px;
}

.srv-hero-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.srv-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-hero-icon-box {
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    position: relative;
}

.srv-hero-icon-box svg {
    width: 120px;
    height: 120px;
    color: rgba(255,255,255,0.5);
}

.srv-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.srv-hero-stat {
    text-align: center;
    padding: 1.25rem 0.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.srv-hero-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.srv-hero-stat span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}

@media (max-width: 992px) {
    .srv-hero { padding: 6rem 0 2.5rem; }
    .srv-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .srv-hero h1 { font-size: 2rem; }
    .srv-hero-text { margin-left: auto; margin-right: auto; }
    .srv-hero-btns { justify-content: center; }
    .srv-hero-visual { display: none; }
    .srv-hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .srv-hero-stat { padding: 1rem 0.5rem; }
    .srv-hero-stat strong { font-size: 1.35rem; }
}

/* Service Section */
.srv-section {
    padding: 5rem 0;
}

.srv-section-alt {
    background-color: var(--gray-50);
}

.srv-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.srv-section-header .srv-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: var(--primary-lighter);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.srv-section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.srv-section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Feature Cards Grid */
.srv-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.srv-features.cols-2 { grid-template-columns: repeat(2, 1fr); }
.srv-features.cols-4 { grid-template-columns: repeat(4, 1fr); }

.srv-feature {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.25s ease;
    position: relative;
}

.srv-feature:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(24, 67, 111, 0.08);
    transform: translateY(-3px);
}

.srv-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-lighter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.25s ease;
}

.srv-feature:hover .srv-feature-icon {
    background: var(--primary);
}

.srv-feature-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    transition: color 0.25s ease;
}

.srv-feature:hover .srv-feature-icon svg {
    color: var(--white);
}

.srv-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.srv-feature p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.srv-feature-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 0;
}

.srv-feature-list li {
    padding: 0.3rem 0;
    color: var(--gray-600);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.srv-feature-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .srv-features { grid-template-columns: repeat(2, 1fr); }
    .srv-features.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .srv-features, .srv-features.cols-2, .srv-features.cols-4 { grid-template-columns: 1fr; }
}

/* Content Block (text + visual side by side) */
.srv-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.srv-content-block.reverse {
    direction: rtl;
}

.srv-content-block.reverse > * {
    direction: ltr;
}

.srv-content-text h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.srv-content-text p {
    color: var(--gray-600);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.srv-content-text .srv-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: var(--primary-lighter);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.srv-check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.srv-check-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gray-700);
    font-size: 0.92rem;
    font-weight: 500;
}

.srv-check-list li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.srv-content-visual {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.srv-content-visual svg {
    width: 100px;
    height: 100px;
    color: rgba(255,255,255,0.3);
}

.srv-content-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .srv-content-block { grid-template-columns: 1fr; gap: 2rem; }
    .srv-content-block.reverse { direction: ltr; }
    .srv-check-list { grid-template-columns: 1fr; }
    .srv-content-visual { max-height: 280px; }
}

/* Process / Timeline */
.srv-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    counter-reset: step;
    position: relative;
}

.srv-process::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-lighter), var(--primary), var(--primary-lighter));
}

.srv-process-step {
    text-align: center;
    position: relative;
    counter-increment: step;
}

.srv-process-num {
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(24,67,111,0.25);
}

.srv-process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.srv-process-step p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .srv-process { grid-template-columns: repeat(2, 1fr); }
    .srv-process::before { display: none; }
}

@media (max-width: 576px) {
    .srv-process { grid-template-columns: 1fr; gap: 2rem; }
}

/* Stats Bar */
.srv-stats {
    padding: 3.5rem 0;
    background: var(--primary);
    color: var(--white);
}

.srv-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.srv-stat-item strong {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.srv-stat-item span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .srv-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .srv-stat-item strong { font-size: 1.75rem; }
}

/* Pricing Cards */
.srv-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.srv-price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.srv-price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(24,67,111,0.12);
    transform: scale(1.03);
}

.srv-price-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1.25rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
}

.srv-price-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(24,67,111,0.1);
}

.srv-price-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.srv-price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.srv-price-period {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.srv-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.srv-price-features li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--gray-50);
}

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

.srv-price-features li svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.srv-price-features li.disabled {
    color: var(--gray-400);
}

.srv-price-features li.disabled svg {
    color: var(--gray-300);
}

@media (max-width: 992px) {
    .srv-pricing { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .srv-price-card.featured { transform: none; }
}

/* FAQ */
.srv-faq {
    max-width: 780px;
    margin: 0 auto;
}

.srv-faq-item {
    border-bottom: 1px solid var(--gray-100);
}

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

.srv-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    cursor: pointer;
    user-select: none;
    gap: 1rem;
}

.srv-faq-q h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--gray-800);
    line-height: 1.4;
}

.srv-faq-q .srv-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.srv-faq-q .srv-faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    transition: transform 0.2s ease;
}

.srv-faq-item.open .srv-faq-q .srv-faq-icon {
    background: var(--primary);
}

.srv-faq-item.open .srv-faq-q .srv-faq-icon svg {
    color: var(--white);
    transform: rotate(180deg);
}

.srv-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.srv-faq-item.open .srv-faq-a {
    max-height: 400px;
}

.srv-faq-a p {
    padding-bottom: 1.25rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Service CTA */
.srv-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.srv-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.04), transparent 70%);
    pointer-events: none;
}

.srv-cta .container {
    position: relative;
    z-index: 1;
}

.srv-cta h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.srv-cta p {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin: 0 auto 2rem;
}

.srv-cta-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.srv-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
}

.srv-cta-phone a {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Tech Stack / Logo Grid */
.srv-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.srv-tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.srv-tech-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-lighter);
}

.srv-tech-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Comparison / Integration Grid */
.srv-integrations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.srv-integration {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    transition: all 0.25s ease;
}

.srv-integration:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(24,67,111,0.08);
}

.srv-integration-logo {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--primary-lighter);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.srv-integration h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.srv-integration p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .srv-integrations { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* Trust / Badge Bar */
.srv-trust {
    padding: 2.5rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.srv-trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.srv-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gray-500);
    font-size: 0.88rem;
    font-weight: 500;
}

.srv-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* ========================================
   ADMIN PANEL STYLES — MINIMAL / FLAT
   ======================================== */

.admin-layout { display:flex; min-height:100vh; font-family:'Inter',sans-serif; font-size:13px; color:var(--gray-700); }
.admin-layout * { border-radius:0 !important; }
.admin-layout svg { width:12px !important; height:12px !important; flex-shrink:0; }

/* ---- Sidebar ---- */
.admin-sidebar { width:200px; min-width:200px; background:#1a1a1a; color:#ccc; display:flex; flex-direction:column; position:fixed; top:0; left:0; bottom:0; z-index:100; overflow-y:auto; }
.admin-sidebar-brand { padding:10px 12px; border-bottom:1px solid #333; display:flex; align-items:center; justify-content:flex-start; gap:8px; }
.admin-sidebar-brand img { width:24px; height:24px; flex-shrink:0; }
.admin-sidebar-brand .brand-text { display:flex; flex-direction:column; min-width:0; }
.admin-sidebar-brand h2 { font-size:12px; color:#fff; line-height:1.2; margin:0; font-weight:600; }
.admin-sidebar-brand span { font-size:10px; color:#777; margin-top:1px; }

.admin-nav { list-style:none; padding:8px 6px; flex:1; margin:0; }
.admin-nav li { margin-bottom:1px; }
.admin-nav a { display:flex; align-items:center; gap:6px; padding:6px 10px; color:#aaa; font-size:12px; font-weight:400; text-decoration:none; transition:background .15s,color .15s; }
.admin-nav a:hover { background:#2a2a2a; color:#fff; }
.admin-nav a.active { background:#333; color:#fff; }
.admin-nav a svg { width:12px !important; height:12px !important; }

.admin-sidebar-footer { padding:8px 12px; border-top:1px solid #333; display:flex; flex-direction:column; gap:4px; }
.admin-sidebar-footer a,
.admin-sidebar-footer button { display:flex; align-items:center; gap:5px; color:#888; font-size:11px; text-decoration:none; transition:color .15s; background:none; border:none; cursor:pointer; padding:4px 0; font-family:inherit; }
.admin-sidebar-footer a:hover,
.admin-sidebar-footer button:hover { color:#fff; }
.admin-sidebar-footer svg { width:11px !important; height:11px !important; }

/* ---- Main area ---- */
.admin-main { flex:1; margin-left:200px; background:#fafafa; min-height:100vh; display:flex; flex-direction:column; }

/* ---- Top bar (alerts only, no header) ---- */
.admin-header { display:none; }

/* ---- Content ---- */
.admin-content { padding:12px 16px; flex:1; }

/* ---- Stats (plain text row) ---- */
.stats-row { display:flex; gap:20px; margin-bottom:12px; flex-wrap:wrap; }
.stats-row .stat-item { font-size:12px; color:var(--gray-500); }
.stats-row .stat-item strong { color:var(--gray-800); font-size:14px; margin-right:3px; }

/* legacy stat-card override */
.stat-card { display:none !important; }
.stats-grid { display:none !important; }

/* ---- Cards ---- */
.admin-card { background:#fff; border:1px solid #e5e5e5; margin-bottom:12px; overflow:hidden; }
.card-header { display:flex; justify-content:space-between; align-items:center; padding:8px 12px; border-bottom:1px solid #eee; }
.card-header h2 { font-size:12px; font-weight:600; color:#333; margin:0; }
.card-body { padding:10px 12px; }

/* ---- Table ---- */
.admin-table { width:100%; border-collapse:collapse; }
.admin-table th, .admin-table td { padding:6px 8px; text-align:left; border-bottom:1px solid #eee; font-size:12px; }
.admin-table th { font-weight:600; color:#666; font-size:10px; text-transform:uppercase; letter-spacing:.04em; background:#fafafa; }
.admin-table tbody tr:hover { background:#f5f5f5; }
.admin-table tbody tr:last-child td { border-bottom:none; }

/* ---- Post thumbnail ---- */
.post-thumbnail { width:40px; height:28px; overflow:hidden; background:#eee; }
.post-thumbnail img { width:100%; height:100%; object-fit:cover; }
.post-thumbnail .no-image { width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#bbb; }
.post-thumbnail .no-image svg { width:12px !important; height:12px !important; }

/* ---- Page actions ---- */
.page-actions { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }

/* ---- Filter ---- */
.filter-form .filter-row { display:flex; gap:6px; align-items:center; flex-wrap:wrap; }
.filter-form .filter-group { flex:1; min-width:120px; }
.filter-form .filter-group .form-input,
.filter-form .filter-group .form-select { padding:5px 8px; font-size:12px; }

/* ---- Action btn ---- */
.action-buttons { display:flex; gap:4px; align-items:center; }
.action-btn { padding:3px 5px; border:1px solid #ddd; background:#fff; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; transition:background .1s; }
.action-btn:hover { background:#f0f0f0; }
.action-btn svg { width:10px !important; height:10px !important; }
.action-btn.danger:hover { background:#fef2f2; border-color:#fca5a5; color:#dc2626; }

/* ---- Forms ---- */
.form-group { margin-bottom:10px; }
.form-group label { display:block; margin-bottom:4px; font-weight:500; color:#555; font-size:11px; }
.form-label { display:block; margin-bottom:4px; font-weight:500; color:#555; font-size:11px; }
.form-input, .form-textarea, .form-select { width:100%; padding:6px 8px; border:1px solid #ccc; font-size:12px; font-family:inherit; background:#fff; color:#333; transition:border-color .15s; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline:none; border-color:#999; }
.form-textarea { min-height:80px; resize:vertical; }
.form-error { color:#dc2626; font-size:11px; margin-top:3px; }
.form-help { color:#999; font-size:11px; margin-top:3px; }

/* ---- Editor ---- */
.editor-container { border:1px solid #ccc; overflow:hidden; }
.editor-toolbar { background:#f5f5f5; border-bottom:1px solid #ddd; padding:4px; display:flex; flex-wrap:wrap; gap:2px; }
.editor-btn { padding:3px 6px; background:#fff; border:1px solid #ccc; cursor:pointer; font-size:11px; }
.editor-btn:hover { background:#eee; }
.editor-btn.active { background:#333; color:#fff; border-color:#333; }
.editor-content { min-height:240px; padding:8px; outline:none; font-size:13px; }

/* ---- Mobile toggle ---- */
.admin-mobile-toggle { display:none; padding:4px; background:none; border:1px solid #ccc; cursor:pointer; color:#666; }
.admin-mobile-toggle svg { width:14px !important; height:14px !important; }

/* ---- Buttons inside admin ---- */
.admin-layout .btn { padding:5px 10px; font-size:12px; font-weight:500; border:1px solid #ccc; background:#fff; color:#333; cursor:pointer; display:inline-flex; align-items:center; gap:4px; transition:background .1s; text-decoration:none; }
.admin-layout .btn:hover { background:#f0f0f0; }
.admin-layout .btn-primary { background:#333; color:#fff; border-color:#333; }
.admin-layout .btn-primary:hover { background:#555; border-color:#555; color:#fff; }
.admin-layout .btn-outline { background:transparent; }
.admin-layout .btn-sm { padding:4px 8px; font-size:11px; }
.admin-layout .btn-danger { color:#dc2626; border-color:#fca5a5; }
.admin-layout .btn-danger:hover { background:#fef2f2; }

/* ---- Media grid ---- */
.admin-media-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(120px,1fr)); gap:8px; }
.admin-media-card { border:1px solid #e5e5e5; padding:6px; background:#fff; position:relative; }
.admin-media-thumb { width:100%; height:80px; overflow:hidden; background:#f5f5f5; display:flex; align-items:center; justify-content:center; }
.admin-media-thumb img { width:100%; height:100%; object-fit:cover; }
.admin-media-info { display:flex; align-items:center; justify-content:space-between; margin-top:4px; }
.admin-media-name { font-size:10px; color:#888; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; max-width:80px; }
.admin-media-copy { background:none; border:none; cursor:pointer; color:#999; padding:2px; display:flex; align-items:center; }
.admin-media-copy:hover { color:#333; }
.admin-media-copy svg { width:10px !important; height:10px !important; }

/* ---- Responsive ---- */
@media (max-width:1024px) {
    .admin-sidebar { transform:translateX(-100%); transition:transform .2s; }
    .admin-sidebar.open { transform:translateX(0); }
    .admin-main { margin-left:0; }
    .admin-mobile-toggle { display:flex; }
}
@media (max-width:640px) {
    .admin-content { padding:8px; }
    .admin-table th, .admin-table td { padding:4px 6px; font-size:11px; }
}

/* ========================================
   LOGIN PAGE STYLES
   ======================================== */

.login-page,
.admin-login-page { min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; background:#f5f5f5; padding:20px; }

.login-card,
.login-container { background:#fff; border:1px solid #ddd; padding:32px; width:100%; max-width:360px; }

.login-header { text-align:center; margin-bottom:24px; }
.login-header .login-logo { margin-bottom:12px; display:flex; justify-content:center; }
.login-header .login-logo img { width:48px; height:48px; }
.login-header h1 { font-size:16px; color:#333; margin:0 0 2px; font-weight:600; }
.login-header p { color:#999; font-size:12px; margin:0; }

.login-form .form-group { margin-bottom:14px; }
.login-form .form-group label { display:block; margin-bottom:4px; font-weight:500; color:#555; font-size:12px; }

.input-with-icon { display:flex; align-items:center; gap:8px; padding:7px 10px; border:1px solid #ccc; background:#fff; transition:border-color .15s; }
.input-with-icon:focus-within { border-color:#999; }
.input-with-icon svg { width:14px !important; height:14px !important; flex-shrink:0; color:#aaa; }
.input-with-icon input { border:none; outline:none; width:100%; font-size:13px; font-family:inherit; color:#333; background:transparent; }
.input-with-icon input::placeholder { color:#bbb; }

.login-footer { margin-top:20px; text-align:center; }
.login-footer p { color:#aaa; font-size:11px; margin:0; }

@media (max-width:640px) {
    .login-container { padding:24px; }
    .login-header .login-logo img { width:40px; height:40px; }
}

/* ---- Alerts ---- */
.alert { padding:8px 12px; margin-bottom:10px; display:flex; align-items:center; gap:6px; font-size:12px; border:1px solid; }
.alert svg { width:14px !important; height:14px !important; flex-shrink:0; }
.alert-success { background:#f0fdf4; color:#166534; border-color:#86efac; }
.alert-error { background:#fef2f2; color:#dc2626; border-color:#fca5a5; }
.alert-warning { background:#fffbeb; color:#92400e; border-color:#fcd34d; }
.alert-info { background:#f0f9ff; color:#0369a1; border-color:#7dd3fc; }

/* ---- Badge ---- */
.badge { display:inline-block; padding:2px 6px; font-size:10px; font-weight:500; text-transform:uppercase; border:1px solid #ddd; background:#f5f5f5; color:#666; }
.badge-primary { border-color:var(--primary); color:var(--primary); background:var(--primary-lighter); }
.badge-success { background:#f0fdf4; color:#166534; border-color:#86efac; }
.badge-warning { background:#fffbeb; color:#92400e; border-color:#fcd34d; }
.badge-danger { background:#fef2f2; color:#dc2626; border-color:#fca5a5; }

/* Tags */
.tags { display:flex; flex-wrap:wrap; gap:4px; }

.tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination a {
    background: var(--white);
    color: var(--gray-700);
    box-shadow: var(--shadow);
}

.pagination a:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}

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

.pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}
