/* Global Styles from app.blade.php */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary: #FF4D6D;
    --primary-hover: #E63E5D;
    --dark: #1a1a2e;
    --text: #2D3436;
    --text-light: #636E72;
    --border: #E5E5E5;
    --bg: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    --radius: 10px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem
}

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

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

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: all .2s;
    padding: 0.5rem 0.75rem;
    border-radius: 8px
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(255, 77, 109, 0.05)
}

.nav-link.active {
    color: var(--primary);
    background: rgba(255, 77, 109, 0.1);
    font-weight: 600
}

/* AI Studio Nav Link */
.nav-link-ai {
    color: var(--primary) !important;
    font-weight: 600 !important;
    position: relative
}

.nav-link-ai::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 4px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: aiDot 2s ease-in-out infinite
}

.nav-link-ai:hover {
    background: rgba(255, 77, 109, 0.08) !important
}

.nav-link-ai i {
    font-size: .7rem
}

.nav-dropdown-ai {
    grid-template-columns: 1fr !important;
    min-width: 280px !important;
}

.nav-dropdown-ai .dropdown-item:first-child {
    grid-column: span 1;
}

@keyframes aiDot {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

/* Mobile AI Link */
.mobile-nav-ai {
    background: linear-gradient(135deg, #FFF5F7, #FFE8EC) !important;
    color: #FF4D6D !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    border: none !important;
    display: flex !important;
    align-items: center;
    gap: .75rem;
    position: relative
}

.mobile-nav-ai i {
    color: #FF4D6D
}

.mobile-ai-badge {
    background: linear-gradient(135deg, #FF4D6D, #FF8A80);
    color: #fff;
    font-size: .55rem;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-left: auto
}

.header-right {
    display: flex;
    align-items: center;
    gap: .75rem
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem 1rem;
    font-size: .875rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    border: none
}

.btn-ghost {
    background: transparent;
    color: var(--text)
}

.btn-ghost:hover {
    background: var(--bg)
}

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

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

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

.btn-primary:hover {
    background: var(--primary-hover)
}

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

.btn-dark:hover {
    background: #16213e
}

.lang-toggle {
    font-size: .8rem;
    padding: .4rem .75rem;
    border-radius: 6px;
    background: var(--bg);
    border: none;
    cursor: pointer
}

.divider {
    width: 1px;
    height: 20px;
    background: var(--border)
}

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

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.nav-arrow {
    font-size: .55rem;
    transition: transform .2s;
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    min-width: 420px;
    padding: .5rem;
    margin-top: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: all .2s ease;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .6rem .85rem;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all .15s;
}

.dropdown-item:hover {
    background: var(--bg);
    color: var(--primary);
}

.dropdown-item.active {
    background: rgba(255, 77, 109, .06);
    color: var(--primary);
    font-weight: 600;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: .85rem;
    color: #B2BEC3;
}

.dropdown-item:hover i,
.dropdown-item.active i {
    color: var(--primary);
}

.dropdown-item:first-child {
    grid-column: span 2;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2px;
    padding-bottom: .7rem;
}

/* Mobile */
.mobile-toggle {
    display: none !important;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0
}

.mobile-toggle i {
    font-size: 1.25rem;
    color: var(--dark)
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 2000;
    flex-direction: column;
    animation: mobileSlideIn .25s ease;
}

@keyframes mobileSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.mobile-menu.active {
    display: flex
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border)
}

.mobile-close {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text);
    border-radius: 10px;
    transition: background .15s;
}

.mobile-close:hover {
    background: var(--bg);
}

.mobile-body {
    flex: 1;
    padding: 1rem 1.5rem;
    overflow-y: auto
}

.mobile-section-label {
    font-size: .7rem;
    font-weight: 700;
    color: #A0AEC0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1.25rem 0 .5rem;
    padding-left: .25rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem .5rem;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: 10px;
    transition: all .15s;
}

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

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: #B2BEC3;
    font-size: .9rem;
}

/* Mobile Nav AI */
.mobile-nav-ai {
    background: linear-gradient(135deg, #FFF0F3, #FFE8EC);
    color: var(--primary) !important;
    font-weight: 600 !important;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: .25rem;
}

.mobile-nav-ai i {
    color: var(--primary) !important;
}

/* Mobile Categories Grid */
.mobile-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
}

.mobile-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    padding: .85rem .5rem;
    background: var(--bg);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-size: .75rem;
    font-weight: 500;
    text-align: center;
    transition: all .15s;
}

.mobile-cat-item:hover {
    background: rgba(255, 77, 109, .06);
    color: var(--primary);
}

.mobile-cat-item i {
    font-size: 1.1rem;
    color: var(--primary);
    opacity: .7;
}

.mobile-cat-item:hover i {
    opacity: 1;
}

.mobile-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.mobile-footer .btn {
    width: 100%;
    justify-content: center;
    padding: .7rem;
    font-size: .88rem;
}

/* User Dropdown */
.user-dropdown {
    position: relative
}

.user-btn {
    display: flex;
    align-items: center;
    gap: .5rem
}

.user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: .5rem 0;
    margin-top: .5rem;
    display: none;
    z-index: 1000
}

.user-menu.active {
    display: block
}

.user-menu a,
.user-menu button {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    color: #2D3436;
    text-decoration: none;
    font-size: .9rem;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left
}

.user-menu a:hover,
.user-menu button:hover {
    background: #F8F9FA
}

.user-menu i {
    width: 16px;
    color: #636E72
}

.user-menu-divider {
    height: 1px;
    background: #E5E5E5;
    margin: .5rem 0
}

@media(max-width:768px) {

    .nav,
    .divider,
    .user-dropdown {
        display: none !important
    }

    .header-right .btn:not(.mobile-toggle),
    .header-right .btn-dark,
    .header-right .btn-outline,
    .header-right .btn-ghost {
        display: none !important
    }

    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center
    }

    .lang-toggle {
        display: block !important
    }
}

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

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem
}

.footer-desc {
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem
}

.social-links {
    display: flex;
    gap: .5rem
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background .2s
}

.social-links a:hover {
    background: var(--primary)
}

.footer-title {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .5px
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: .75rem
}

.footer-links a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s
}

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

.footer-cta {
    background: rgba(255, 255, 255, .05);
    padding: 1.5rem;
    border-radius: var(--radius)
}

.footer-cta p {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    margin-bottom: 1rem
}

.footer-cta .btn {
    width: 100%
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-copy {
    color: rgba(255, 255, 255, .4);
    font-size: .85rem
}

.footer-legal {
    display: flex;
    gap: 1.5rem
}

.footer-legal a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    font-size: .85rem
}

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

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .social-links {
        justify-content: center
    }

    .app-buttons {
        justify-content: center
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }
}

/* Shared */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem
}

/* Cards */
.salon-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .2s;
    text-decoration: none;
    color: inherit;
    display: block
}

.salon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1)
}

.salon-image {
    width: 100%;
    height: 180px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.salon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.salon-image .placeholder {
    font-size: 2.5rem;
    color: var(--border)
}

.salon-rating {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: var(--white);
    padding: .25rem .5rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .25rem
}

.salon-rating i {
    color: #FFC107
}

.salon-info {
    padding: 1rem
}

.salon-name {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: .25rem
}

.salon-location {
    font-size: .8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: .25rem
}

.salon-location i {
    color: var(--primary);
    font-size: .7rem
}

/* Pagination */
nav[role="navigation"] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

nav[role="navigation"] .flex {
    display: none;
}

nav[role="navigation"] ul,
nav[role="navigation"] div>span,
nav[role="navigation"] div>a {
    display: inline-flex;
}

nav[role="navigation"] ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: .35rem;
}

nav[role="navigation"] ul li {
    list-style: none;
}

nav[role="navigation"] ul li a,
nav[role="navigation"] ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 .6rem;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: 1.5px solid #E5E5E5;
    color: #636E72;
    background: #fff;
}

nav[role="navigation"] ul li a:hover {
    border-color: #FF4D6D;
    color: #FF4D6D;
    background: #FFF5F7;
}

nav[role="navigation"] ul li span[aria-current="page"],
nav[role="navigation"] ul li .active {
    background: #FF4D6D;
    color: #fff;
    border-color: #FF4D6D;
}

nav[role="navigation"] ul li span[aria-disabled="true"],
nav[role="navigation"] ul li .disabled {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Simple pagination (p-2 class) */
.pagination {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 .6rem;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    border: 1.5px solid #E5E5E5;
    color: #636E72;
    background: #fff;
}

.pagination li a:hover {
    border-color: #FF4D6D;
    color: #FF4D6D;
    background: #FFF5F7;
}

.pagination li.active span {
    background: #FF4D6D;
    color: #fff;
    border-color: #FF4D6D;
}

.pagination li.disabled span {
    opacity: .4;
    cursor: not-allowed;
}

/* ═══════════════════════════════════ */
/* Pages — Shared Minimalist Styles   */
/* ═══════════════════════════════════ */

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero */
.page-hero {
    padding: 2rem 0 1.5rem;
    text-align: center;
}

.page-hero .hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #FFF0F3, #FFE0E6);
    color: var(--primary);
    margin-bottom: 1rem;
}

.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1A1A2E;
    margin-bottom: .5rem;
    letter-spacing: -.02em;
}

.page-subtitle {
    font-size: .95rem;
    color: #8B95A5;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-divider {
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    margin: 1.25rem auto 0;
}

/* Legal Content (terms, privacy, kvkk) */
.legal-content {
    padding: 2.5rem 0 4rem;
}

.legal-content .last-update {
    font-size: .78rem;
    color: #B2BEC3;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F0F0F0;
}

.legal-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1A2E;
    margin: 2rem 0 .65rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.legal-content h3 .section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #FFF0F3;
    color: var(--primary);
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 800;
    flex-shrink: 0;
}

.legal-content p {
    color: #636E72;
    line-height: 1.8;
    margin-bottom: .75rem;
    font-size: .92rem;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 0;
    list-style: none;
    color: #636E72;
}

.legal-content li {
    margin-bottom: .4rem;
    line-height: 1.7;
    font-size: .92rem;
    padding-left: 1.25rem;
    position: relative;
}

.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

/* Contact */
.contact-section {
    padding: 2.5rem 0 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: .75rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #FFF0F3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-item h3 {
    font-size: .85rem;
    font-weight: 600;
    color: #1A1A2E;
    margin-bottom: .15rem;
}

.contact-item p {
    color: #636E72;
    font-size: .82rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: .82rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #FAFBFC;
    border: 1px solid #F0F0F0;
    border-radius: 16px;
    padding: 2rem;
}

.contact-form h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

.form-group {
    margin-bottom: .85rem;
}

.form-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: .35rem;
}

.form-input {
    width: 100%;
    padding: .7rem .85rem;
    font-size: .88rem;
    border: 1.5px solid #E5E5E5;
    border-radius: 10px;
    background: #fff;
    outline: none;
    transition: all .2s;
    font-family: inherit;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 77, 109, .08);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: .75rem;
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s;
    margin-top: .25rem;
}

.btn-submit:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(255, 77, 109, .25);
}

.alert-success {
    background: #F0FFF4;
    color: #276749;
    padding: .75rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: .85rem;
    border: 1px solid #C6F6D5;
}

/* About */
.about-section {
    padding: 2.5rem 0 4rem;
}

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

.about-info h2 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1A1A2E;
    margin-bottom: 1rem;
}

.about-info p {
    color: #636E72;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: .92rem;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog */
.blog-section {
    padding: 2.5rem 0 4rem;
}

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

.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #F0F0F0;
    transition: all .3s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.blog-image {
    height: 180px;
    background: #F8F9FA;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF0F3 0%, #F8F9FA 100%);
}

.blog-placeholder i {
    font-size: 2rem;
    color: rgba(255, 77, 109, .2);
}

.blog-category {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--primary);
    color: #fff;
    padding: .25rem .65rem;
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 700;
}

.blog-content {
    padding: 1.25rem;
}

.blog-meta {
    font-size: .72rem;
    color: #B2BEC3;
    margin-bottom: .5rem;
}

.blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A2E;
    margin-bottom: .5rem;
    line-height: 1.4;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
}

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

.blog-excerpt {
    color: #8B95A5;
    font-size: .82rem;
    line-height: 1.6;
    margin-bottom: .75rem;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.blog-link:hover {
    text-decoration: underline;
}

.empty-state {
    text-align: center;
    padding: 4rem 0;
}

.empty-state i {
    font-size: 3rem;
    color: #E5E5E5;
    margin-bottom: .75rem;
}

.empty-state h3 {
    font-size: 1.05rem;
    color: #2D3436;
    margin-bottom: .35rem;
}

.empty-state p {
    color: #8B95A5;
    font-size: .88rem;
}

/* Page responsive */
@media(max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

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