/* =========================================
   CSS Reset & Variables
   ========================================= */
:root {
    --primary: #004DE6;
    --primary-dark: #003db3;
    --secondary: #101828;
    --whatsapp: #10853E;
    --whatsapp-dark: #0A6A30;
    --text-main: #344054;
    --text-muted: #667085;
    --bg-main: #FAFAFA;
    --bg-light: #F2F4F7;
    --bg-card: #FFFFFF;
    
    --border-color: #E4E7EC;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(16, 24, 40, 0.1), 0 2px 4px -1px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(16, 24, 40, 0.1), 0 4px 6px -2px rgba(16, 24, 40, 0.05);
    --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* =========================================
   Typography & Utilities
   ========================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }
.text-muted { color: var(--text-muted); }
.bg-light { background-color: var(--bg-light); }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn i {
    font-size: 1.25rem;
}

.btn-primary {
    background-color: var(--whatsapp);
    color: white;
}
.btn-primary:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}
.btn-secondary:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--border-color);
    background: transparent;
    color: var(--secondary);
}
.btn-outline:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: white;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
    color: white;
}
.btn-outline-light:hover {
    border-color: white;
    background: white;
    color: var(--secondary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.logo i {
    color: var(--primary);
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
}
.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #f8fbff;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 102, 255, 0.2);
    top: -100px;
    right: -100px;
    animation: float 10s ease-in-out infinite alternate;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(37, 211, 102, 0.15);
    bottom: -50px;
    left: -100px;
    animation: float 8s ease-in-out infinite alternate-reverse;
}

.glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.8) 100%);
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Glass Mockup Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.mockup-card {
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.mockup-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.9);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E4E7EC;
}

.dots span:nth-child(1) { background: #FF5F56; }
.dots span:nth-child(2) { background: #FFBD2E; }
.dots span:nth-child(3) { background: #27C93F; }

.url {
    background: var(--bg-light);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex: 1;
    text-align: center;
    font-family: monospace;
}

.mockup-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

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

.stat-info strong {
    font-size: 1rem;
    color: var(--secondary);
}

.stat-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 255, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
}

.note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.services-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* =========================================
   Brands Section
   ========================================= */
.brands-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.brand-category h4 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--secondary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

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

.brand-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 140px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

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

.brand-card img {
    max-width: 80px;
    max-height: 48px;
    object-fit: contain;
    margin-bottom: 12px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
}

.brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-fallback-logo {
    display: none;
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.brand-card span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    display: block;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #1d2939 100%);
    color: white;
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: white;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer ul a {
    color: var(--text-muted);
}
.footer ul a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
}

.contact-info i {
    font-size: 1.25rem;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        margin: 0 auto 40px auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .mockup-card {
        max-width: 500px;
        margin: 0 auto;
        transform: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-actions {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 0.75rem;
    }
    .nav-actions .btn {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .section {
        padding: 60px 0;
    }
    .cta-box {
        padding: 40px 20px;
    }
    .cta-box h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   Hizmetler Sayfası Özel Stilleri (Merged)
   ========================================= */

.page-header {
    background: linear-gradient(135deg, #101828 0%, #1d2939 100%);
    color: white;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-top: 16px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.25rem;
    color: #98A2B3;
    max-width: 800px;
    margin: 0 auto;
}

/* Detailed Services Structure */
.detailed-services {
    padding: 80px 0;
    background: #FAFAFA;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.service-tag i {
    font-size: 1.25rem;
}

.service-detail-info h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.service-detail-info > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Feature List */
.feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.feature-item h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Tech Badges */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.tech-badges span {
    background: #F2F4F7;
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.divider {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 60px 0;
}

/* Responsive Grid for Feature List */
@media (min-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.25rem;
    }
    .page-header p {
        font-size: 1.1rem;
    }
    .service-detail-info h2 {
        font-size: 1.75rem;
    }
}

.lang-dropdown a:last-child {
    border-bottom: none;
}
.lang-dropdown a.active {
    background: rgba(0, 0, 0, 0.03);
    color: var(--primary);
    font-weight: 600;
}
.lang-dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}
.lang-selector.active @keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--whatsapp);
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-5px) scale(1.05);
    color: #FFF;
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.4);
}
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 20px;
        font-size: 30px;
    }
}

/* Inlined Phosphor Icons */
@font-face {
  font-family: "Phosphor";
  src:
    url("./Phosphor.woff2") format("woff2"),
    url("./Phosphor.woff") format("woff"),
    url("./Phosphor.ttf") format("truetype"),
    url("./Phosphor.svg#Phosphor") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.ph {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Phosphor" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ph-hard-drives:before {
  content: "\e2a0";
}
.ph-list:before {
  content: "\e2f0";
}
.ph-phone-call:before {
  content: "\e3ba";
}
.ph-activity:before {
  content: "\e000";
}
.ph-shield-check:before {
  content: "\e40c";
}
.ph-plugs-connected:before {
  content: "\eb5a";
}
.ph-hard-drive:before {
  content: "\e29e";
}
.ph-code:before {
  content: "\e1bc";
}
.ph-shield:before {
  content: "\e40a";
}
.ph-wifi-high:before {
  content: "\e4ea";
}
.ph-television:before {
  content: "\e754";
}
.ph-qr-code:before {
  content: "\e3e6";
}
.ph-magnifying-glass:before {
  content: "\e30c";
}
.ph-arrow-right:before {
  content: "\e06c";
}
.ph-whatsapp-logo:before {
  content: "\e5d0";
}
.ph-phone:before {
  content: "\e3b8";
}
.ph-check-circle:before {
  content: "\e184";
}
.ph-envelope-simple:before {
  content: "\e218";
}
.ph-map-pin:before {
  content: "\e316";
}
@font-face {
  font-family: "Phosphor-Fill";
  src:
    url("./Phosphor-Fill.woff2") format("woff2"),
    url("./Phosphor-Fill.woff") format("woff"),
    url("./Phosphor-Fill.ttf") format("truetype"),
    url("./Phosphor-Fill.svg#Phosphor-Fill") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.ph-fill {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Phosphor-Fill" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ph-hard-drives:before {
  content: "\e2a0";
}
.ph-list:before {
  content: "\e2f0";
}
.ph-phone-call:before {
  content: "\e3ba";
}
.ph-activity:before {
  content: "\e000";
}
.ph-shield-check:before {
  content: "\e40c";
}
.ph-plugs-connected:before {
  content: "\eb5a";
}
.ph-hard-drive:before {
  content: "\e29e";
}
.ph-code:before {
  content: "\e1bc";
}
.ph-shield:before {
  content: "\e40a";
}
.ph-wifi-high:before {
  content: "\e4ea";
}
.ph-television:before {
  content: "\e754";
}
.ph-qr-code:before {
  content: "\e3e6";
}
.ph-magnifying-glass:before {
  content: "\e30c";
}
.ph-arrow-right:before {
  content: "\e06c";
}
.ph-whatsapp-logo:before {
  content: "\e5d0";
}
.ph-phone:before {
  content: "\e3b8";
}
.ph-check-circle:before {
  content: "\e184";
}
.ph-envelope-simple:before {
  content: "\e218";
}
.ph-map-pin:before {
  content: "\e316";
}

/* === PREMIUM BLOG & ARTICLE STYLES === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; margin-top: -40px; }
.blog-card { 
    background: #fff; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    border: 1px solid rgba(0,0,0,0.04); 
    display: flex; 
    flex-direction: column; 
}
.blog-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    border-color: rgba(13, 110, 253, 0.2);
}
.blog-img { height: 220px; width: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; background: #fff; position: relative; z-index: 2; }
.blog-date { font-size: 0.85rem; font-weight: 600; color: #6c757d; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 1px; }
.blog-title { font-size: 1.35rem; font-weight: 800; color: #1a1a1a; margin-bottom: 15px; line-height: 1.4; transition: color 0.3s; }
.blog-card:hover .blog-title { color: #0d6efd; }
.blog-desc { font-size: 1.05rem; color: #555; margin-bottom: 25px; line-height: 1.6; }
.blog-btn { margin-top: auto; align-self: flex-start; font-weight: 700; color: #0d6efd; display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; }
.blog-btn i { transition: transform 0.3s; }
.blog-card:hover .blog-btn i { transform: translateX(6px); }

/* Article specific header */
.page-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.15), transparent 50%);
}

.article-body { 
    background: #fff; 
    padding: 70px 60px; 
    border-radius: 24px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.06); 
    margin-top: -80px; 
    position: relative; 
    z-index: 10; 
    border: 1px solid rgba(0,0,0,0.03); 
}
.article-body h3 { font-size: 1.8rem; margin: 45px 0 25px 0; color: #0f172a; font-weight: 800; line-height: 1.3; }
.article-body p { font-size: 1.15rem; line-height: 1.9; color: #334155; margin-bottom: 25px; }
.article-body strong { color: #0f172a; font-weight: 700; }
.article-body ul { margin-left: 20px; margin-bottom: 30px; background: #f8fafc; padding: 30px 30px 30px 50px; border-radius: 16px; border-left: 4px solid #0d6efd; }
.article-body li { font-size: 1.15rem; line-height: 1.9; color: #334155; margin-bottom: 15px; }

/* Call to Action Box inside Article */
.article-cta-box {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.8), 0 10px 20px rgba(0,0,0,0.03);
    border: 1px solid #cbd5e1;
}

/* Suggested Articles */
.suggested-articles h3 { font-size: 2rem; padding-bottom: 20px; margin-bottom: 40px; margin-top: 60px; color: #0f172a; text-align: center; }
.suggested-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.suggested-card { 
    background: #fff; 
    border: 1px solid rgba(0,0,0,0.06); 
    border-radius: 16px; 
    padding: 25px; 
    transition: all 0.3s ease; 
    display:flex; 
    flex-direction:column; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.suggested-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: #0d6efd; }
.suggested-card h4 { font-size: 1.2rem; color: #0f172a; margin-bottom: 12px; line-height: 1.5; font-weight: 700; transition: color 0.3s; }
.suggested-card:hover h4 { color: #0d6efd; }
.suggested-card p { font-size: 0.95rem; color: #64748b; margin-bottom: 20px; line-height: 1.6; flex-grow:1; }
.suggested-card span { font-weight: 700; color: #0d6efd; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 6px; }

/* Modern Back Button */
.btn-back-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: #475569;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}
.btn-back-blog:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateX(-4px);
    border-color: #0d6efd;
    box-shadow: 0 8px 15px rgba(13, 110, 253, 0.2);
}

@media (max-width: 768px) { 
    .article-body { padding: 40px 25px; margin-top: -40px; } 
    .page-header { padding: 120px 0 80px 0 !important; }
}
