﻿/**
 * ESCREHBERI.COM - Combined Stylesheet
 * All CSS modules merged into single file for production
 * Generated: 2026-06-07 21:53
 */
/**
 * Theme Styles Module
 * 
 * Contains theme variables and color schemes:
 * - Color palette
 * - Theme variables
 * - Shadows
 * - Brand colors
 */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DESIGN SYSTEM â€” Vibrant Light Theme (Pink/Red Accent)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
    /* â”€â”€ Colors â”€â”€ */
    --bg-body: #fff5f7;
    --bg-white: #ffffff;
    --bg-section-alt: #fef0f3;
    --bg-card: #ffffff;
    --bg-hero-overlay: linear-gradient(180deg, rgba(12,6,14,0.48) 0%, rgba(35,10,25,0.44) 48%, rgba(115,18,48,0.58) 100%);

    --primary: #e91e63;
    --primary-light: #ff4081;
    --primary-dark: #c2185b;
    --primary-bg: rgba(233, 30, 99, 0.08);
    --primary-glow: rgba(233, 30, 99, 0.3);

    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;

    --gold: #f5a623;
    --gold-bg: rgba(245, 166, 35, 0.12);

    --text-primary: #1a1a2e;
    --text-secondary: #555670;
    --text-muted: #8e8ea0;
    --text-white: #ffffff;

    --border: rgba(0, 0, 0, 0.08);
    --border-card: rgba(0, 0, 0, 0.06);

    --badge-new: #4caf50;
    --badge-verified: #2196f3;
    --badge-premium: #f5a623;
    --badge-featured: #ff5722;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-card: 0 4px 24px rgba(233,30,99,0.08);
    --shadow-card-hover: 0 12px 40px rgba(233,30,99,0.18);

    /* â”€â”€ Typography â”€â”€ */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* â”€â”€ Spacing â”€â”€ */
    --section-padding: clamp(60px, 10vw, 100px);
    --container-width: 1240px;
    --container-padding: clamp(16px, 4vw, 32px);

    /* â”€â”€ Radius â”€â”€ */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;

    /* â”€â”€ Transitions â”€â”€ */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-normal: 0.4s var(--ease-out);
}


/**
 * Typography Styles Module
 * 
 * Contains typography-related styles:
 * - Font families
 * - Font sizes
 * - Line heights
 * - Text colors
 * - Headings
 * - Paragraphs
 * - Text utilities
 */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BASE TYPOGRAPHY
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
}

/* â”€â”€ Links â”€â”€ */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* â”€â”€ Selection â”€â”€ */
::selection {
    background: var(--primary);
    color: white;
}

/* â”€â”€ Section Headers â”€â”€ */
.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 6px 18px;
    background: var(--primary-bg);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* â”€â”€ Hero Typography â”€â”€ */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 6vw, 4.1rem);
    font-weight: 700;
    line-height: 1.08;
    color: white;
    margin-bottom: 18px;
}

.hero-title-accent {
    background: linear-gradient(135deg, #ffb6c1, #ff6b8a, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.88);
    max-width: 590px;
    margin: 0 auto 28px;
    line-height: 1.72;
}

/* â”€â”€ Profile Typography â”€â”€ */
.profile-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-location {
    font-size: 0.8rem;
    opacity: 0.85;
}

/* â”€â”€ Blog Typography â”€â”€ */
.blog-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

/* â”€â”€ Contact Typography â”€â”€ */
.contact-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 16px 0 32px;
}

.contact-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-value:hover { 
    color: var(--primary); 
}

/* â”€â”€ Form Typography â”€â”€ */
.form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

/* â”€â”€ Footer Typography â”€â”€ */
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 300px;
}

.footer-links-group h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links-group li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}

.footer-bottom {
    font-size: 0.82rem;
}

.admin-link {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    transition: color var(--transition-fast);
}

/* â”€â”€ About Card Typography â”€â”€ */
.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* â”€â”€ Location Card Typography â”€â”€ */
.location-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.location-card p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.75;
}

/* â”€â”€ FAQ Typography â”€â”€ */
.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}


/**
 * Layout Styles Module
 * 
 * Contains layout-related styles:
 * - Grid systems
 * - Flexbox layouts
 * - Container styles
 * - Section spacing
 * - Responsive breakpoints
 */

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESET & BASE LAYOUT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-body);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* â”€â”€ Container â”€â”€ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION LAYOUTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* â”€â”€ Profiles Section â”€â”€ */
.profiles-section {
    padding: 56px 0 var(--section-padding);
    background: var(--bg-white);
}

.profiles-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

.profiles-cta {
    text-align: center;
    margin-top: 48px;
}

/* â”€â”€ About Section â”€â”€ */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-section-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* â”€â”€ Location Section â”€â”€ */
.location-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* â”€â”€ Blog Section â”€â”€ */
.blog-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* â”€â”€ FAQ Section â”€â”€ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-section-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

/* â”€â”€ Contact Section â”€â”€ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-section-alt);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info .section-title { 
    text-align: left; 
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* â”€â”€ Footer â”€â”€ */
.footer {
    background: var(--text-primary);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand { 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
}

.footer-links-group ul { 
    list-style: none; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media screen and (max-width: 1024px) {
    .about-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .location-grid { 
        grid-template-columns: 1fr; 
    }
    
    .blog-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .contact-wrapper { 
        grid-template-columns: 1fr; 
        gap: 36px; 
    }
    
    .footer-top { 
        grid-template-columns: 1fr 1fr; 
        gap: 28px; 
    }
    
    .footer-brand { 
        grid-column: span 2; 
    }
}

@media screen and (max-width: 768px) {
    .profiles-section {
        padding-top: 44px;
    }

    .profiles-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 14px; 
    }
    
    .about-grid { 
        grid-template-columns: 1fr; 
    }
    
    .blog-grid { 
        grid-template-columns: 1fr; 
    }
    
    .faq-grid { 
        grid-template-columns: 1fr; 
    }

    .footer-top { 
        grid-template-columns: 1fr; 
    }
    
    .footer-brand { 
        grid-column: span 1; 
    }
    
    .footer-bottom { 
        flex-direction: column; 
        gap: 12px; 
        text-align: center; 
    }
}

@media screen and (max-width: 480px) {
    .hero-actions { 
        flex-direction: column; 
        width: 100%; 
    }
    
    .hero-actions .btn { 
        width: 100%; 
        justify-content: center; 
    }
    
    .profiles-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px; 
    }
    
    .filter-btn { 
        padding: 8px 14px; 
        font-size: 0.78rem; 
    }
}


/**
 * Components Styles Module
 * 
 * Contains component-specific styles:
 * - Buttons, Cards, Forms, Modals
 * - Navigation, Hero sections
 * - Profile cards, Blog cards
 * - Contact forms, Floating elements
 * - Animations
 */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    transition: all var(--transition-fast);
}

.navbar:not(.scrolled) .navbar-brand { color: white; }
.navbar.scrolled .navbar-brand { color: var(--text-primary); }

.brand-icon {
    font-size: 1.3rem;
    color: var(--primary);
}

.navbar:not(.scrolled) .brand-icon { color: #ff6b8a; }

.navbar-links {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.8); }
.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active { color: white; background: rgba(255,255,255,0.15); }

.navbar.scrolled .nav-link { color: var(--text-secondary); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--primary); background: var(--primary-bg); }

/* â”€â”€ Mobile Toggle â”€â”€ */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.navbar:not(.scrolled) .hamburger-line { background: white; }
.navbar.scrolled .hamburger-line { background: var(--text-primary); }

.navbar-toggle.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.navbar-toggle.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.hero {
    position: relative;
    min-height: 76vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 108px 0 64px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 0 var(--container-padding);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 22px;
    animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--whatsapp);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 6vw, 4.1rem);
    font-weight: 700;
    line-height: 1.08;
    color: white;
    margin-bottom: 18px;
}

.hero-title-line {
    display: block;
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-title-line:nth-child(1) { animation-delay: 0.3s; }
.hero-title-line:nth-child(2) { animation-delay: 0.5s; }

.hero-title-accent {
    background: linear-gradient(135deg, #ffb6c1, #ff6b8a, #ff4081);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.88);
    max-width: 590px;
    margin: 0 auto 28px;
    line-height: 1.72;
    animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.9s both;
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--primary-glow);
    color: white;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.35);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION HEADER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    padding: 6px 18px;
    background: var(--primary-bg);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROFILES SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.profiles-section {
    padding: 56px 0 var(--section-padding);
    background: var(--bg-white);
}

.profiles-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--bg-body);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

/* â”€â”€ Profile Card â”€â”€ */
.profile-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--border-card);
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.profile-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f0e6ea;
}

.profile-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.profile-card:hover .profile-card-image img {
    transform: scale(1.05);
}

/* â”€â”€ Premium Ribbon â”€â”€ */
.profile-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(135deg, #f5a623, #f7c948);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(245,166,35,0.4);
    z-index: 3;
}

/* â”€â”€ Badges Stack â”€â”€ */
.profile-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    z-index: 3;
    max-width: calc(100% - 80px);
}

.profile-badge {
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.profile-badge.badge-new { background: var(--badge-new); color: white; }
.profile-badge.badge-verified { background: var(--badge-verified); color: white; }
.profile-badge.badge-featured { background: var(--badge-featured); color: white; }

/* â”€â”€ Card Info â”€â”€ */
.profile-card-info {
    padding: 14px 16px 12px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-location {
    font-size: 0.8rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 0;
}

.profile-location svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.profile-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--whatsapp);
    color: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}

.profile-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.02);
    color: white;
}

.profile-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.profiles-cta {
    text-align: center;
    margin-top: 48px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.about-section {
    padding: var(--section-padding) 0;
    background: var(--bg-section-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-card);
    transition: all var(--transition-normal);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.about-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: var(--radius-md);
    background: var(--primary-bg);
    color: var(--primary);
}

.about-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.location-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.location-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.location-card p {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.75;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.blog-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-card);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.blog-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.blog-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-title { color: var(--primary); }

.blog-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
}

.blog-read-more:hover { gap: 12px; }

.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-section-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-section-alt);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info .section-title { text-align: left; }

.contact-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 16px 0 32px;
}

.contact-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--whatsapp);
    color: white;
    padding: 18px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.contact-whatsapp-btn:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.35);
    color: white;
}

.wa-label { display: block; font-size: 0.85rem; opacity: 0.9; }
.wa-number { display: block; font-size: 1.1rem; font-weight: 700; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--primary-bg);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-value:hover { color: var(--primary); }

/* â”€â”€ Contact Form â”€â”€ */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-card);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-body);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-bg);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.footer {
    background: var(--text-primary);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand .brand-icon { color: var(--primary-light); font-size: 1.4rem; }
.footer-brand .brand-text { color: white; font-size: 1.15rem; font-weight: 700; }

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 300px;
}

.footer-links-group h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links-group li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}

.footer-links-group li a:hover { color: var(--primary-light); padding-left: 6px; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.82rem;
}

.admin-link {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    transition: color var(--transition-fast);
}

.admin-link:hover { color: var(--primary-light); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BACK TO TOP + WHATSAPP FLOAT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--primary); color: white; transform: translateY(-2px); }

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--transition-fast);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    color: white;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].animated { opacity: 1; transform: translateY(0); }

.profile-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), box-shadow 0.3s ease;
}

.profile-card.animated { opacity: 1; transform: translateY(0); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media screen and (max-width: 1024px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .location-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; gap: 36px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: span 2; }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 74vh;
        padding: 96px 0 52px;
    }

    .profiles-section {
        padding-top: 44px;
    }

    .navbar-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        z-index: 999;
    }

    .navbar-links.active { display: flex; }
    .navbar-links .nav-link { font-size: 1.3rem; color: var(--text-primary) !important; }
    .navbar-links .nav-link.active { color: var(--primary) !important; }
    .navbar-toggle { display: flex; }
    .navbar-toggle.active .hamburger-line { background: var(--text-primary) !important; }

    .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .about-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 88px 0 44px;
    }

    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .profile-name { font-size: 0.95rem; }
    .profile-card-info { padding: 12px; }
    .filter-btn { padding: 8px 14px; font-size: 0.78rem; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROFILE CARD LINK & BUTTONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.profile-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.profile-card-link:hover { color: inherit; }

/* â”€â”€ Dual Button Layout â”€â”€ */
.profile-card-buttons {
    margin-top: 10px;
}

.profile-detail-btn {
    display: block;
    width: 100%;
    padding: 9px 10px;
    background: rgba(255,255,255,0.2);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    transition: all var(--transition-fast);
    letter-spacing: 0.03em;
}

.profile-card:hover .profile-detail-btn {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.6);
}

.profile-card-wa {
    padding: 0 16px 16px;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-dark) 100%);
}

.profile-card-wa .profile-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--whatsapp);
    color: white;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    width: 100%;
}

.profile-card-wa .profile-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.02);
    color: white;
}

.profile-card-wa .profile-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   Ä°LAN VER CTA CARD (Profile Card Style)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.ilan-ver-cta-card {
    position: relative;
    cursor: pointer;
}

.ilan-ver-cta-card .profile-card-image {
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.95) 0%, 
        rgba(255, 64, 129, 0.92) 50%, 
        rgba(194, 24, 91, 0.95) 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.ilan-ver-info {
    position: static !important;
    background: transparent !important;
    width: 100%;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.ilan-ver-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    margin-bottom: 8px;
}

.ilan-ver-icon svg {
    width: 48px;
    height: 48px;
    stroke: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    animation: star-pulse 2s ease-in-out infinite;
}

@keyframes star-pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    25% { 
        transform: scale(1.15) rotate(-5deg);
        opacity: 0.9;
    }
    50% { 
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }
    75% { 
        transform: scale(1.15) rotate(-5deg);
        opacity: 0.9;
    }
}

.ilan-ver-title {
    font-size: 1.45rem !important;
    font-family: var(--font-heading);
    font-weight: 800;
    color: white !important;
    margin-bottom: 8px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    letter-spacing: 0.02em;
    animation: title-glow 3s ease-in-out infinite;
    text-align: center;
    width: 100%;
}

@keyframes title-glow {
    0%, 100% {
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.5);
        transform: scale(1.02);
    }
}

.ilan-ver-subtitle {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.4;
    max-width: 200px;
    text-align: center;
    width: 100%;
}

.ilan-ver-subtitle svg {
    display: none;
}

.ilan-ver-cta-card .profile-card-wa {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #8b1448 100%);
}

.ilan-ver-cta-card .profile-whatsapp {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 11px 12px;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.ilan-ver-cta-card .profile-whatsapp svg {
    flex-shrink: 0;
    animation: whatsapp-ring 1.5s ease-in-out infinite;
}

.ilan-ver-cta-card .profile-whatsapp span {
    display: inline-block;
}

@keyframes whatsapp-ring {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
    }
    10%, 30% { 
        transform: rotate(-10deg) scale(1.1);
    }
    20%, 40% { 
        transform: rotate(10deg) scale(1.1);
    }
    50% { 
        transform: rotate(0deg) scale(1);
    }
}

/* Hover effect for Ä°lan Ver card */
.ilan-ver-cta-card:hover .ilan-ver-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.ilan-ver-cta-card:hover .ilan-ver-icon svg {
    animation: pulse-icon 0.6s ease-in-out;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROFILE DETAIL PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.profile-detail-page {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--bg-body);
}

/* â”€â”€ Breadcrumb â”€â”€ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--primary); }

.breadcrumb-sep { color: var(--text-muted); opacity: 0.5; }

.breadcrumb-current {
    color: var(--primary);
    font-weight: 600;
}

/* â”€â”€ Profile Hero â”€â”€ */
.profile-hero {
    padding-bottom: 48px;
}

.profile-hero-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}

/* â”€â”€ Left: Image + Gallery â”€â”€ */
.profile-hero-left {
    position: sticky;
    top: 100px;
}

.profile-main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f0e6ea;
    box-shadow: var(--shadow-lg);
}

.profile-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.profile-main-image:hover img {
    transform: scale(1.03);
}

.profile-badges-hero {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 3;
}

.profile-badge-hero {
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
}

.profile-badge-hero.badge-new { background: var(--badge-new); color: white; }
.profile-badge-hero.badge-verified { background: var(--badge-verified); color: white; }
.profile-badge-hero.badge-premium { background: linear-gradient(135deg, #f5a623, #f7c948); color: white; }
.profile-badge-hero.badge-featured { background: var(--badge-featured); color: white; }

.profile-gallery {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(233, 30, 99, 0.35) transparent;
}

.profile-gallery::-webkit-scrollbar {
    height: 6px;
}

.profile-gallery::-webkit-scrollbar-thumb {
    background: rgba(233, 30, 99, 0.35);
    border-radius: 999px;
}

.gallery-thumb {
    width: 72px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    opacity: 0.6;
}

.gallery-thumb.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 2px 8px var(--primary-glow);
}

.gallery-thumb:hover { opacity: 1; }

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* â”€â”€ Right: Info â”€â”€ */
.profile-hero-right {
    padding-top: 8px;
}

.profile-name-block {
    margin-bottom: 28px;
}

.profile-detail-name {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.profile-detail-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.profile-detail-location svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* â”€â”€ Quick Stats â”€â”€ */
.profile-quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.quick-stat {
    background: var(--bg-white);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    text-align: center;
    transition: all var(--transition-fast);
}

.quick-stat:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
    transform: translateY(-2px);
}

.quick-stat-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.quick-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* â”€â”€ About Block â”€â”€ */
.profile-about-block {
    margin-bottom: 28px;
}

.profile-about-block h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.profile-about-block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

/* â”€â”€ CTA Buttons â”€â”€ */
.profile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROFILE DETAILS SECTION (Below Hero)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.profile-details-section {
    padding: 48px 0 64px;
    background: var(--bg-section-alt);
}

.profile-details-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}

/* â”€â”€ Detail Card â”€â”€ */
.detail-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-card);
    margin-bottom: 20px;
}

.detail-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.detail-card-title svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* â”€â”€ Physical Details Table â”€â”€ */
.detail-table {
    width: 100%;
    border-collapse: collapse;
}

.detail-table tr {
    border-bottom: 1px solid var(--border);
}

.detail-table tr:last-child { border-bottom: none; }

.detail-table td {
    padding: 12px 0;
    font-size: 0.92rem;
}

.dt-label {
    color: var(--text-muted);
    font-weight: 500;
    width: 140px;
}

.dt-value {
    color: var(--text-primary);
    font-weight: 600;
}

/* â”€â”€ Services â”€â”€ */
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary-bg);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(233,30,99,0.12);
    transition: all var(--transition-fast);
}

.service-tag:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.03);
}

.service-tag svg {
    flex-shrink: 0;
    color: var(--primary);
}

.service-tag:hover svg { color: white; }

/* â”€â”€ Rates â”€â”€ */
.rates-card {
    background: linear-gradient(135deg, var(--bg-card), #fff5f7);
}

.rates-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.rate-row:last-child { border-bottom: none; }

.rate-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.rate-duration svg {
    color: var(--primary);
    flex-shrink: 0;
}

.rate-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.rates-note {
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* â”€â”€ Contact Card â”€â”€ */
.contact-card {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-color: rgba(37,211,102,0.2);
}

.contact-card-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* â”€â”€ Related Profiles Section â”€â”€ */
.related-profiles-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROFILE DETAIL â€” RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media screen and (max-width: 1024px) {
    .profile-hero-grid {
        grid-template-columns: 360px 1fr;
        gap: 28px;
    }
    .profile-details-grid {
        grid-template-columns: 1fr 320px;
    }
}

@media screen and (max-width: 768px) {
    .profile-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .profile-hero-left {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    .profile-quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .profile-details-grid {
        grid-template-columns: 1fr;
    }
    .profile-details-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media screen and (max-width: 480px) {
    .profile-quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .quick-stat { padding: 12px 8px; }
    .quick-stat-value { font-size: 1rem; }
    .profile-details-right {
        grid-template-columns: 1fr;
    }
    .detail-card { padding: 20px; }
}

/* Modern editorial redesign overlay */
:root {
    --bg-body: #f7f5f2;
    --bg-white: #ffffff;
    --bg-section-alt: #f2efeb;
    --bg-card: #ffffff;
    --bg-hero-overlay: linear-gradient(90deg, rgba(7, 9, 14, 0.82) 0%, rgba(7, 9, 14, 0.52) 46%, rgba(7, 9, 14, 0.16) 100%);
    --primary: #b91523;
    --primary-light: #e64b55;
    --primary-dark: #7d0e18;
    --primary-bg: rgba(185, 21, 35, 0.08);
    --primary-glow: rgba(185, 21, 35, 0.2);
    --text-primary: #11131a;
    --text-secondary: #4f5565;
    --text-muted: #858b98;
    --border: rgba(17, 19, 26, 0.1);
    --border-card: rgba(17, 19, 26, 0.08);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-full: 999px;
    --shadow-card: 0 10px 28px rgba(17, 19, 26, 0.08);
    --shadow-card-hover: 0 18px 44px rgba(17, 19, 26, 0.16);
    --section-padding: clamp(64px, 8vw, 112px);
}

body {
    background: var(--bg-body);
    letter-spacing: 0;
}

.navbar {
    padding: 18px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
}

.navbar-brand {
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.22rem;
    letter-spacing: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
}

.navbar:not(.scrolled) .brand-mark,
.navbar:not(.scrolled) .brand-text {
    color: white;
}

.nav-link {
    border-radius: 0;
    padding: 8px 14px;
    font-size: 0.86rem;
}

.navbar:not(.scrolled) .nav-link.active,
.navbar:not(.scrolled) .nav-link:hover,
.navbar.scrolled .nav-link.active,
.navbar.scrolled .nav-link:hover {
    background: transparent;
    color: var(--primary);
}

.navbar:not(.scrolled) .nav-link.active {
    color: white;
    border-bottom: 2px solid var(--primary-light);
}

.hero {
    min-height: 76vh;
    justify-content: flex-start;
    padding: 126px 0 72px;
}

.hero-bg-img {
    filter: saturate(0.9) contrast(1.08);
}

.hero-content {
    width: min(1180px, calc(100% - 48px));
    max-width: 1180px;
    margin: 0 auto;
    text-align: left;
}

.hero-badge {
    background: transparent;
    border: 0;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255,255,255,0.86);
    margin-bottom: 18px;
}

.hero-title {
    max-width: 820px;
    font-size: clamp(2.65rem, 6vw, 5.4rem);
    line-height: 0.98;
    margin-bottom: 20px;
}

.hero-title-accent {
    color: var(--primary-light);
    background: none;
    -webkit-text-fill-color: currentColor;
}

.hero-subtitle {
    max-width: 610px;
    margin-left: 0;
    margin-right: 0;
    color: rgba(255,255,255,0.9);
}

.hero-actions {
    justify-content: flex-start;
}

.btn {
    border-radius: 6px;
    padding: 13px 24px;
}

.btn-primary {
    background: var(--primary);
    box-shadow: 0 12px 26px rgba(185,21,35,0.24);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.section-header {
    text-align: left;
    margin-bottom: 34px;
}

.profiles-section .section-header,
.blog-section .section-header,
.faq-section .section-header {
    max-width: 820px;
}

.section-tag {
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--primary);
    letter-spacing: 0.08em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0;
}

.section-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.profiles-section {
    padding: 68px 0 var(--section-padding);
}

.profiles-filters {
    justify-content: flex-start;
    margin-bottom: 28px;
}

.filter-btn {
    border-radius: 999px;
    background: white;
    color: var(--text-secondary);
    box-shadow: none;
}

.filter-btn.active {
    background: var(--text-primary);
    border-color: var(--text-primary);
    box-shadow: none;
}

.profiles-slider-shell {
    position: relative;
}

.profiles-slider {
    overflow: hidden;
    padding: 2px 2px 42px;
}

.profiles-slider .profiles-grid {
    display: flex;
    gap: 0;
}

.profiles-slider.slider-fallback {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.profiles-slider.slider-fallback .profile-card {
    flex: 0 0 286px;
    scroll-snap-align: start;
    margin-right: 18px;
}

.slider-controls {
    position: absolute;
    top: -72px;
    right: 0;
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    z-index: 4;
}

.slider-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.profile-card {
    border-radius: 8px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card);
    background: #101219;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card-image {
    background: #ddd6d0;
}

.profile-card-info {
    background: #101219;
    padding: 14px 14px 12px;
    text-align: left;
}

.profile-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
}

.profile-location {
    justify-content: flex-start;
    margin-bottom: 10px;
}

.profile-detail-btn {
    border-radius: 5px;
    width: auto;
    display: inline-flex;
    padding: 7px 10px;
    font-size: 0.76rem;
}

.profile-card-wa {
    background: #101219;
}

.profile-whatsapp {
    border-radius: 5px;
}

.about-card,
.location-card,
.blog-card,
.faq-item,
.detail-card {
    border-radius: 8px;
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card);
}

.location-grid {
    grid-template-columns: repeat(3, 1fr);
}

.blog-section {
    background: #ffffff;
}

.blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    overflow: hidden;
    padding: 0;
}

.blog-image-link {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ece7e2;
}

.blog-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.blog-card:hover .blog-image-link img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 20px;
}

.blog-title a {
    color: inherit;
}

.blog-section-link {
    margin-top: 28px;
}

.text-link,
.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
}

.text-link svg {
    width: 18px;
    height: 18px;
}

.contact-section {
    background: #f7f5f2;
}

.footer {
    background: #0b0d12;
}

.footer-brand .brand-mark {
    color: white;
}

.whatsapp-float {
    border-radius: 8px;
}

.profile-main-swiper {
    position: relative;
}

.profile-main-swiper .swiper-wrapper,
.profile-main-slide {
    height: 100%;
}

.profile-main-prev,
.profile-main-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.92;
}

.profile-main-prev {
    left: 12px;
}

.profile-main-next {
    right: 12px;
}

.profile-gallery.swiper {
    overflow: hidden;
}

.profile-gallery .swiper-wrapper {
    display: flex;
}

.gallery-thumb {
    border: 0;
    background: transparent;
    padding: 0;
}

.gallery-thumb.active {
    border: 3px solid var(--primary);
}

.blog-page,
.blog-detail-page {
    background: #ffffff;
    min-height: 100vh;
    padding-top: 74px;
}

.blog-hero {
    padding: 42px 0 28px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

.blog-hero h1,
.blog-article h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.05;
    color: var(--text-primary);
    margin: 12px 0 14px;
}

.blog-hero p,
.blog-article-excerpt {
    max-width: 680px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.blog-listing-section {
    padding: 36px 0 80px;
}

.blog-listing-grid {
    display: grid;
    gap: 20px;
}

.blog-list-card {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 24px;
    background: #ffffff;
    border: 1px solid var(--border-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.blog-list-image {
    display: block;
    min-height: 220px;
    background: #ece7e2;
}

.blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-list-body {
    padding: 24px 24px 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-list-body h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.18;
    margin: 8px 0 10px;
}

.blog-list-body h2 a {
    color: inherit;
}

.blog-list-body p {
    color: var(--text-secondary);
    max-width: 720px;
}

.narrow-container {
    max-width: 840px;
}

.blog-article {
    padding: 30px 0 80px;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
}

.blog-article-image {
    margin: 32px 0;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 8;
    background: #ece7e2;
    box-shadow: var(--shadow-card);
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-content {
    color: var(--text-primary);
    font-size: 1.03rem;
    line-height: 1.9;
}

.blog-article-content p + p {
    margin-top: 20px;
}

.article-cta {
    margin-top: 40px;
    padding: 28px;
    border-radius: 8px;
    background: #101219;
    color: white;
}

.article-cta h2 {
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.article-cta p {
    color: rgba(255,255,255,0.76);
    margin-bottom: 18px;
}

.compact-footer {
    padding: 24px 0;
}

@media screen and (max-width: 1024px) {
    .location-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 78vh;
        padding: 104px 0 54px;
    }

    .hero-content {
        width: min(100% - 32px, 1180px);
    }

    .hero-title {
        font-size: clamp(2.25rem, 13vw, 4.1rem);
    }

    .slider-controls {
        position: static;
        margin: 0 0 14px;
        justify-content: flex-end;
    }

    .profiles-slider-shell {
        display: flex;
        flex-direction: column;
    }

    .profiles-slider {
        order: 2;
    }

    .slider-controls {
        order: 1;
    }

    .location-grid,
    .blog-grid,
    .blog-list-card {
        grid-template-columns: 1fr;
    }

    .blog-list-body {
        padding: 22px;
    }

    .blog-list-image {
        min-height: 220px;
    }

    .blog-article-image {
        aspect-ratio: 16 / 10;
    }
}

@media screen and (max-width: 480px) {
    .profiles-slider.slider-fallback .profile-card {
        flex-basis: 78vw;
    }

    .blog-page,
    .blog-detail-page {
        padding-top: 68px;
    }

    .blog-hero h1,
    .blog-article h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }
}

/* Visual repair pass: balanced editorial sizing without breaking the existing site rhythm */
section[id],
header[id] {
    scroll-margin-top: 88px;
}

.hero {
    min-height: 72vh;
    padding: 116px 0 64px;
}

.hero-content {
    max-width: 960px;
}

.hero-title {
    max-width: 900px;
    font-size: clamp(2.55rem, 4.25vw, 4.25rem);
    line-height: 1.04;
}

.hero-title-accent {
    font-size: 0.72em;
}

.hero-subtitle {
    font-size: clamp(0.98rem, 1.35vw, 1.12rem);
}

.profiles-section .section-header,
.blog-section .section-header,
.faq-section .section-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.profiles-section .section-subtitle,
.blog-section .section-subtitle,
.faq-section .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.profiles-filters {
    justify-content: center;
}

.profiles-slider {
    padding-top: 6px;
}

.slider-controls {
    top: -58px;
}

.profile-card {
    background: #ffffff;
    border-color: rgba(17, 19, 26, 0.1);
    box-shadow: 0 8px 28px rgba(17, 19, 26, 0.08);
}

.profile-card:hover {
    box-shadow: 0 16px 36px rgba(17, 19, 26, 0.14);
}

.profile-card-info {
    background: #ffffff;
    color: var(--text-primary);
    padding: 16px 16px 12px;
}

.profile-location {
    color: var(--text-secondary);
    opacity: 1;
}

.profile-detail-btn {
    color: var(--text-primary);
    border-color: rgba(17, 19, 26, 0.18);
    background: #f7f5f2;
}

.profile-card:hover .profile-detail-btn {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: #ffffff;
}

.profile-card-wa {
    background: #ffffff;
    padding: 0 16px 16px;
}

.profile-card-wa .profile-whatsapp,
.profile-whatsapp {
    border-radius: 6px;
}

.profile-ribbon {
    right: -36px;
}

.blog-hero h1,
.blog-article h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    max-width: 860px;
}

.blog-article {
    padding-top: 18px;
}

.blog-article-image {
    max-height: 520px;
}

@media screen and (min-width: 900px) {
    .hero-title-line {
        white-space: nowrap;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 98px 0 52px;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.8rem);
    }

    .hero-title-line:first-child {
        white-space: normal;
    }

    .slider-controls {
        position: static;
        justify-content: center;
        margin: 0 0 12px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DESIGN IMPROVEMENT v3 â€” Premium Visual Overhaul
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ HERO IMPROVEMENTS â”€â”€ */
.hero {
    min-height: 80vh;
    padding: 130px 0 80px;
}

.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(7, 9, 14, 0.92) 0%,
        rgba(7, 9, 14, 0.75) 35%,
        rgba(7, 9, 14, 0.45) 65%,
        rgba(7, 9, 14, 0.25) 100%
    );
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    animation: fadeInDown 0.8s var(--ease-out) 0.2s both, heroGlow 3s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(185, 21, 35, 0); border-color: rgba(255,255,255,0.15); }
    50% { box-shadow: 0 0 30px rgba(185, 21, 35, 0.15); border-color: rgba(185, 21, 35, 0.3); }
}

.hero-title {
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
    position: relative;
    background: linear-gradient(135deg, #ff6b7a, #e64b55, #b91523);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(185, 21, 35, 0.3));
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* â”€â”€ Hero Stats Bar â”€â”€ */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 40px;
    padding: 22px 32px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    animation: fadeInUp 0.8s var(--ease-out) 1.1s both;
    max-width: 640px;
}

.hero-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    color: var(--primary-light);
}

.hero-stat-icon svg {
    width: 18px;
    height: 18px;
}

.hero-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.hero-stat-label {
    display: block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 0;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* â”€â”€ Hero Particles â”€â”€ */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 100%),
        radial-gradient(2px 2px at 60% 20%, rgba(255,255,255,0.1) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 60%, rgba(255,255,255,0.12) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 40% 70%, rgba(255,255,255,0.08) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 90% 40%, rgba(255,255,255,0.1) 0%, transparent 100%);
    animation: particleDrift 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes particleDrift {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    25% { transform: translateY(-8px) translateX(4px); opacity: 0.8; }
    50% { transform: translateY(-4px) translateX(-6px); opacity: 0.5; }
    75% { transform: translateY(-10px) translateX(2px); opacity: 0.9; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• ESCORT CARD REDESIGN â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.profile-card {
    background: #ffffff;
    border-radius: 14px;
    border: none;
    box-shadow: 0 4px 20px rgba(17, 19, 26, 0.06);
    overflow: hidden;
    transition: all 0.45s var(--ease-out);
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(17, 19, 26, 0.15);
}

.profile-card-image {
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
}

.profile-card-image img {
    transition: transform 0.7s var(--ease-out), filter 0.5s ease;
}

.profile-card:hover .profile-card-image img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

/* Gradient overlay on image bottom */
.profile-card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Hover overlay with centered button */
.profile-card-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(185, 21, 35, 0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transition: all 0.4s var(--ease-out);
    pointer-events: none;
}

.profile-card:hover .profile-card-hover-overlay {
    opacity: 1;
    background: rgba(185, 21, 35, 0.18);
    pointer-events: auto;
}

.profile-hover-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transform: translateY(12px);
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
}

.profile-card:hover .profile-hover-btn {
    transform: translateY(0);
}

.profile-hover-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 28px rgba(185, 21, 35, 0.3);
}

.profile-hover-btn svg {
    width: 16px;
    height: 16px;
}

/* Card info overlay on image */
.profile-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 14px;
    background: transparent;
    color: white;
    z-index: 3;
    text-align: left;
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 2px;
}

.profile-location {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    opacity: 1;
    margin-bottom: 0;
}

.profile-location svg {
    color: rgba(255, 255, 255, 0.7);
}

/* Hide old detail button - replaced by hover overlay */
.profile-detail-btn {
    display: none;
}

/* â”€â”€ Card Footer / WhatsApp â”€â”€ */
.profile-card-wa {
    background: white;
    padding: 12px 14px;
}

.profile-whatsapp {
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    background: linear-gradient(135deg, #25d366, #20bd5a);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
    transition: all 0.3s var(--ease-out);
}

.profile-whatsapp:hover {
    background: linear-gradient(135deg, #20bd5a, #1da851);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
    color: white;
}

.profile-card-wa .profile-whatsapp {
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    background: linear-gradient(135deg, #25d366, #20bd5a);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.profile-card-wa .profile-whatsapp:hover {
    background: linear-gradient(135deg, #20bd5a, #1da851);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transform: translateY(-1px);
    color: white;
}

/* â”€â”€ Improved Badges â”€â”€ */
.profile-ribbon {
    right: -30px;
    top: 18px;
    background: linear-gradient(135deg, #f5a623, #e8941e);
    font-size: 0.6rem;
    padding: 4px 36px;
    box-shadow: 0 2px 10px rgba(245, 166, 35, 0.35);
    letter-spacing: 0.14em;
}

.profile-badges {
    bottom: auto;
    top: 14px;
    left: 14px;
    right: auto;
    flex-direction: row;
    z-index: 4;
}

.profile-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
}

.profile-badge.badge-new {
    background: rgba(76, 175, 80, 0.9);
}

.profile-badge.badge-verified {
    background: rgba(33, 150, 243, 0.9);
}

.profile-badge.badge-featured {
    background: rgba(255, 87, 34, 0.9);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• PROFILE DETAIL PAGE IMPROVEMENTS â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Quick Stats Redesign */
.profile-quick-stats {
    gap: 10px;
}

.quick-stat {
    background: linear-gradient(135deg, #ffffff, #faf8f6);
    border: 1px solid rgba(17, 19, 26, 0.06);
    border-radius: 12px;
    padding: 18px 12px;
    position: relative;
    overflow: hidden;
}

.quick-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-stat:hover::before {
    opacity: 1;
}

.quick-stat-value {
    font-size: 1.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services Grid Redesign */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.service-tag {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(185, 21, 35, 0.04), rgba(185, 21, 35, 0.08));
    border: 1px solid rgba(185, 21, 35, 0.1);
    color: var(--text-primary);
    text-align: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.service-tag svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.service-tag:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(185, 21, 35, 0.2);
}

.service-tag:hover svg {
    color: white;
}

/* Rates Redesign */
.rates-card {
    background: #ffffff;
    border: 1px solid var(--border-card);
}

.rate-row {
    padding: 16px 14px;
    margin: 0 -14px;
    border-radius: 10px;
    border-bottom: none;
    transition: all 0.3s ease;
}

.rate-row + .rate-row {
    border-top: 1px solid rgba(17, 19, 26, 0.06);
}

.rate-row:hover {
    background: rgba(185, 21, 35, 0.03);
}

.rate-row.rate-highlighted {
    background: linear-gradient(135deg, rgba(185, 21, 35, 0.06), rgba(185, 21, 35, 0.03));
    border: 1px solid rgba(185, 21, 35, 0.12);
    margin-top: 8px;
    position: relative;
}

.rate-row.rate-highlighted .rate-price {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary), #ff4060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rate-duration {
    font-weight: 600;
    color: var(--text-primary);
}

.rate-duration svg {
    width: 20px;
    height: 20px;
}

.rate-price {
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--font-body);
}

/* Contact Card Improvement */
.contact-card {
    background: linear-gradient(135deg, #f0faf2, #e8f5ea);
    border: 1px solid rgba(37, 211, 102, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-card .btn-whatsapp {
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    background: linear-gradient(135deg, #25d366, #20bd5a);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease-out);
}

.contact-card .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Detail Card Polish */
.detail-card {
    border-radius: 14px;
    border: 1px solid rgba(17, 19, 26, 0.06);
    box-shadow: 0 4px 20px rgba(17, 19, 26, 0.05);
    transition: all 0.3s ease;
}

.detail-card:hover {
    box-shadow: 0 8px 30px rgba(17, 19, 26, 0.08);
}

.detail-card-title {
    font-size: 1.05rem;
    border-bottom: 2px solid rgba(185, 21, 35, 0.08);
    padding-bottom: 16px;
}

.detail-card-title svg {
    width: 22px;
    height: 22px;
    padding: 4px;
    background: var(--primary-bg);
    border-radius: 6px;
}

/* Physical Table Improvement */
.detail-table tr {
    border-bottom: 1px solid rgba(17, 19, 26, 0.05);
    transition: background 0.2s ease;
}

.detail-table tr:hover {
    background: rgba(185, 21, 35, 0.02);
}

.dt-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.dt-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Profile Hero Improvements */
.profile-main-image {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(17, 19, 26, 0.12);
}

.profile-detail-name {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

.profile-cta-buttons .btn-whatsapp {
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    background: linear-gradient(135deg, #25d366, #1db954);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.profile-cta-buttons .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.profile-cta-buttons .btn-outline {
    border-radius: 12px;
    padding: 16px 24px;
    border-width: 2px;
    font-weight: 700;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• LOCATION CARDS REDESIGN â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.location-card {
    border-radius: 14px;
    border: 1px solid rgba(17, 19, 26, 0.06);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    transition: height 0.4s var(--ease-out);
}

.location-card:hover::before {
    height: 100%;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(17, 19, 26, 0.1);
    border-color: rgba(185, 21, 35, 0.08);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• BLOG CARDS REDESIGN â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-card {
    border-radius: 14px;
    border: none;
    box-shadow: 0 4px 20px rgba(17, 19, 26, 0.06);
    transition: all 0.4s var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(17, 19, 26, 0.12);
}

.blog-image-link {
    aspect-ratio: 16 / 9;
    border-radius: 14px 14px 0 0;
}

.blog-card-body {
    padding: 22px 24px 24px;
}

.blog-category {
    border-radius: 6px;
    font-size: 0.68rem;
    padding: 4px 10px;
}

.blog-read-more {
    font-weight: 700;
    transition: all 0.3s var(--ease-out);
}

.blog-read-more:hover {
    gap: 14px;
    color: var(--primary-dark);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• FAQ SECTION REDESIGN â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.faq-item {
    border-radius: 14px;
    border: 1px solid rgba(17, 19, 26, 0.06);
    padding: 28px;
    transition: all 0.3s var(--ease-out);
}

.faq-item:hover {
    border-color: rgba(185, 21, 35, 0.1);
    box-shadow: 0 8px 28px rgba(17, 19, 26, 0.06);
    transform: translateY(-2px);
}

.faq-item h3 {
    position: relative;
    padding-left: 16px;
}

.faq-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 16px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• ABOUT CARDS REDESIGN â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-card {
    border-radius: 14px;
    border: 1px solid rgba(17, 19, 26, 0.06);
    padding: 36px 28px;
    transition: all 0.4s var(--ease-out);
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(17, 19, 26, 0.1);
    border-color: transparent;
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(185, 21, 35, 0.08), rgba(185, 21, 35, 0.04));
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(185, 21, 35, 0.25);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• FILTER BUTTONS REDESIGN â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.filter-btn {
    border-radius: 999px;
    padding: 10px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    background: white;
    border: 1px solid rgba(17, 19, 26, 0.1);
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.filter-btn:hover {
    background: rgba(185, 21, 35, 0.06);
    border-color: rgba(185, 21, 35, 0.2);
    color: var(--primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 16px rgba(185, 21, 35, 0.25);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• SECTION HEADERS POLISH â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-tag {
    padding: 6px 16px;
    background: rgba(185, 21, 35, 0.06);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â• RESPONSIVE FIXES v3 â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media screen and (max-width: 768px) {
    .hero {
        min-height: 75vh;
        padding: 105px 0 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 0;
        padding: 16px 20px;
        max-width: 100%;
    }

    .hero-stat {
        min-width: 70px;
    }

    .hero-stat-icon {
        width: 32px;
        height: 32px;
    }

    .hero-stat-value {
        font-size: 1.2rem;
    }

    .hero-stat-label {
        font-size: 0.6rem;
    }

    .hero-stat-divider {
        height: 40px;
    }

    .profile-card {
        border-radius: 10px;
    }

    .profile-card-wa {
        padding: 10px 12px;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 90px 0 50px;
    }

    .hero-stats {
        padding: 14px 16px;
    }

    .hero-stat-value {
        font-size: 1.1rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }

    .services-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .service-tag {
        padding: 10px 12px;
        font-size: 0.75rem;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LOCATION CARDS COMPLETE REDESIGN v4
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.location-section {
    background: var(--bg-section-alt);
}

.location-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.location-card {
    background: #ffffff;
    border-radius: 16px;
    border: none;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(17, 19, 26, 0.06);
    transition: all 0.45s var(--ease-out);
    position: relative;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
}

.location-card:hover::before {
    opacity: 1;
    height: 4px;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(17, 19, 26, 0.12);
}

.location-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.location-card--avrupa .location-card-icon {
    background: linear-gradient(135deg, rgba(185, 21, 35, 0.08), rgba(185, 21, 35, 0.04));
    color: var(--primary);
}

.location-card--anadolu .location-card-icon {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(33, 150, 243, 0.04));
    color: #2196f3;
}

.location-card--verified .location-card-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.04));
    color: #4caf50;
}

.location-card:hover .location-card-icon {
    transform: scale(1.1);
}

.location-card--avrupa:hover .location-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 8px 20px rgba(185, 21, 35, 0.25);
}

.location-card--anadolu:hover .location-card-icon {
    background: linear-gradient(135deg, #2196f3, #42a5f5);
    color: white;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.25);
}

.location-card--verified:hover .location-card-icon {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.25);
}

/* Override old location-card padding - add inner padding */
.location-card h3,
.location-card p,
.location-card .location-card-icon {
    padding-left: 28px;
    padding-right: 28px;
}

.location-card .location-card-icon {
    margin-top: 28px;
    margin-left: 28px;
    padding-left: 0;
    padding-right: 0;
}

.location-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    padding-top: 0;
}

.location-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* District Tags */
.location-districts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px 28px 24px;
    border-top: 1px solid rgba(17, 19, 26, 0.06);
    background: rgba(247, 245, 242, 0.5);
}

.location-districts span {
    display: inline-block;
    padding: 5px 14px;
    background: white;
    border: 1px solid rgba(17, 19, 26, 0.08);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
}

.location-districts span:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(185, 21, 35, 0.2);
}

.location-card--anadolu .location-districts span:hover {
    background: #2196f3;
    border-color: #2196f3;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.2);
}

.location-card--verified .location-districts span:hover {
    background: #4caf50;
    border-color: #4caf50;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.2);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG CARDS FIX v4
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.blog-section {
    background: var(--bg-section-alt);
    padding: var(--section-padding) 0;
}

.blog-grid {
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 24px rgba(17, 19, 26, 0.06);
    display: flex;
    flex-direction: column;
    transition: all 0.45s var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(17, 19, 26, 0.12);
    border-color: transparent;
}

.blog-image-link {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ece7e2;
    border-radius: 0;
    flex-shrink: 0;
}

.blog-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-image-link img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-header {
    margin-bottom: 14px;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-category {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 4px 12px;
    border-radius: 6px;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-title a {
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.blog-card:hover .blog-title a {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    -webkit-line-clamp: 3;
}

.blog-footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(17, 19, 26, 0.06);
}

.blog-read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

.blog-section-link {
    margin-top: 36px;
    text-align: center;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE v4 â€” Location + Blog
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@media screen and (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .location-card--verified {
        grid-column: span 2;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-card--verified {
        grid-column: span 1;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card {
        flex-direction: row;
        max-height: none;
    }

    .blog-image-link {
        width: 140px;
        min-height: 160px;
        aspect-ratio: auto;
        flex-shrink: 0;
    }

    .blog-card-body {
        padding: 18px;
    }
}

@media screen and (max-width: 480px) {
    .blog-card {
        flex-direction: column;
    }

    .blog-image-link {
        width: 100%;
        aspect-ratio: 16 / 10;
        min-height: auto;
    }

    .location-card .location-card-icon {
        margin-left: 20px;
        margin-top: 20px;
    }

    .location-card h3,
    .location-card p {
        padding-left: 20px;
        padding-right: 20px;
    }

    .location-districts {
        padding: 14px 20px 20px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG DETAIL PAGE â€” Premium Redesign v4
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.blog-detail-page {
    background: #ffffff;
    min-height: 100vh;
    padding-top: 80px;
}

.blog-detail-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.blog-detail-page .breadcrumb a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.blog-detail-page .breadcrumb a:hover {
    color: var(--primary);
}

.blog-detail-page .breadcrumb-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

.blog-detail-page .breadcrumb-current {
    color: var(--text-primary);
    font-weight: 600;
}

/* Article Meta */
.blog-detail-page .blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-detail-page .blog-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.blog-detail-page .blog-article-meta span:first-child {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-detail-page .blog-article-meta span:not(:first-child) {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.blog-detail-page .blog-article-meta span:not(:first-child)::before {
    content: 'Â·';
    margin-right: 4px;
    color: var(--text-muted);
    opacity: 0.5;
}

/* Article Title */
.blog-detail-page .blog-article h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
    max-width: 800px;
}

/* Excerpt */
.blog-detail-page .blog-article-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 8px;
}

/* Article Image */
.blog-detail-page .blog-article-image {
    margin: 36px 0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 8;
    background: #ece7e2;
    box-shadow: 0 8px 32px rgba(17, 19, 26, 0.1);
    max-height: 520px;
}

.blog-detail-page .blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.blog-detail-page .blog-article-image:hover img {
    transform: scale(1.02);
}

/* Article Content */
.blog-detail-page .blog-article-content {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.95;
    max-width: 100%;
}

.blog-detail-page .blog-article-content p {
    margin-bottom: 20px;
}

.blog-detail-page .blog-article-content p:last-child {
    margin-bottom: 0;
}

/* CTA Card */
.blog-detail-page .article-cta {
    margin-top: 48px;
    padding: 36px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b0d12, #1a1d28);
    color: white;
    position: relative;
    overflow: hidden;
}

.blog-detail-page .article-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(185, 21, 35, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.blog-detail-page .article-cta h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
    position: relative;
}

.blog-detail-page .article-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 500px;
    position: relative;
}

.blog-detail-page .article-cta .btn-whatsapp {
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 0.92rem;
    font-weight: 700;
    background: linear-gradient(135deg, #25d366, #20bd5a);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.blog-detail-page .article-cta .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* 404 State */
.blog-detail-page ~ .profile-not-found {
    padding-top: 80px;
}

/* Footer */
.blog-detail-page ~ .compact-footer {
    background: #0b0d12;
    color: rgba(255, 255, 255, 0.5);
    padding: 24px 0;
}

/* â”€â”€ Blog Detail Responsive â”€â”€ */
@media screen and (max-width: 768px) {
    .blog-detail-page {
        padding-top: 72px;
    }

    .blog-detail-page .blog-article h1 {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .blog-detail-page .blog-article-image {
        margin: 24px -16px;
        border-radius: 0;
        aspect-ratio: 16 / 10;
    }

    .blog-detail-page .article-cta {
        padding: 28px 24px;
        margin-top: 36px;
    }

    .blog-detail-page .article-cta h2 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .blog-detail-page .blog-article h1 {
        font-size: clamp(1.6rem, 10vw, 2.2rem);
    }

    .blog-detail-page .blog-article-excerpt {
        font-size: 0.95rem;
    }

    .blog-detail-page .blog-article-content {
        font-size: 0.95rem;
        line-height: 1.85;
    }

    .blog-detail-page .article-cta {
        padding: 24px 20px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG DETAIL â€” COMPLETE REDESIGN (bd-* classes)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero Banner â”€â”€ */
.bd-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.bd-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bd-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.bd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7, 9, 14, 0.95) 0%,
        rgba(7, 9, 14, 0.7) 40%,
        rgba(7, 9, 14, 0.35) 70%,
        rgba(7, 9, 14, 0.2) 100%
    );
    z-index: 1;
}

.bd-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 56px;
    max-width: 840px;
}

/* â”€â”€ Breadcrumb â”€â”€ */
.bd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.bd-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: color 0.2s ease;
}

.bd-breadcrumb a:hover {
    color: white;
}

.bd-breadcrumb svg {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.bd-breadcrumb span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px;
}

/* â”€â”€ Meta â”€â”€ */
.bd-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.bd-category {
    background: var(--primary);
    color: white;
    padding: 5px 16px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bd-date,
.bd-reading {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    font-weight: 500;
}

.bd-date::before {
    content: 'Â·';
    margin-right: 0;
    opacity: 0;
}

/* â”€â”€ Title â”€â”€ */
.bd-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 16px;
    max-width: 760px;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

/* â”€â”€ Excerpt â”€â”€ */
.bd-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

/* â”€â”€ Main Content Area â”€â”€ */
.bd-main {
    background: var(--bg-body);
    padding: 56px 0 80px;
}

.bd-article {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(17, 19, 26, 0.06);
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

/* â”€â”€ Content Typography â”€â”€ */
.bd-content {
    color: var(--text-primary);
    font-size: 1.08rem;
    line-height: 2;
}

.bd-content p {
    margin-bottom: 22px;
}

.bd-content p:last-child {
    margin-bottom: 0;
}

/* Drop Cap */
.bd-content .bd-dropcap::first-letter {
    float: left;
    font-family: var(--font-heading);
    font-size: 4.2rem;
    line-height: 0.85;
    font-weight: 700;
    color: var(--primary);
    margin-right: 10px;
    margin-top: 6px;
}

/* Pull Quote */
.bd-pullquote {
    position: relative;
    margin: 36px 0;
    padding: 28px 32px 28px 36px;
    background: linear-gradient(135deg, rgba(185, 21, 35, 0.04), rgba(185, 21, 35, 0.02));
    border-left: 4px solid var(--primary);
    border-radius: 0 14px 14px 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-secondary);
}

.bd-pullquote::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 16px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

/* â”€â”€ Share â”€â”€ */
.bd-share {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(17, 19, 26, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-share-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.bd-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    background: #25d366;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.bd-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    color: white;
}

/* â”€â”€ CTA Card â”€â”€ */
.bd-cta {
    margin-top: 36px;
    padding: 32px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0b0d12, #161923);
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.bd-cta::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(185, 21, 35, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.bd-cta::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bd-cta-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.bd-cta-body {
    flex: 1;
    position: relative;
    z-index: 1;
}

.bd-cta-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.bd-cta-body p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

.bd-cta-btn {
    flex-shrink: 0;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    background: linear-gradient(135deg, #25d366, #20bd5a);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    transition: all 0.3s var(--ease-out);
}

.bd-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
    color: white;
}

/* â”€â”€ Responsive â”€â”€ */
@media screen and (max-width: 768px) {
    .bd-hero {
        min-height: 420px;
    }

    .bd-hero-content {
        padding: 100px 0 40px;
    }

    .bd-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .bd-excerpt {
        font-size: 0.95rem;
    }

    .bd-article {
        padding: 28px 22px;
        border-radius: 16px;
        margin-top: -28px;
    }

    .bd-content {
        font-size: 1rem;
        line-height: 1.9;
    }

    .bd-content .bd-dropcap::first-letter {
        font-size: 3.2rem;
    }

    .bd-pullquote {
        padding: 22px 24px 22px 28px;
        font-size: 1.05rem;
        margin: 28px 0;
    }

    .bd-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .bd-cta-body p {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .bd-hero {
        min-height: 360px;
    }

    .bd-hero-content {
        padding: 90px 0 32px;
    }

    .bd-title {
        font-size: clamp(1.6rem, 10vw, 2.2rem);
    }

    .bd-breadcrumb span {
        max-width: 160px;
    }

    .bd-article {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .bd-content {
        font-size: 0.95rem;
    }

    .bd-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Static Grid (10 items, 2 rows) */
.profiles-static-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}
@media (max-width: 1200px) {
    .profiles-static-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 992px) {
    .profiles-static-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .profiles-static-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
}
@media (max-width: 480px) {
    .profiles-static-grid { grid-template-columns: 1fr; }
}

/* CTA Banner under Grid */
.ilan-cta-section {
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MODERN PREMIUM Ä°LAN VER KARTI
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.ilan-ver-card {
    position: relative;
    max-width: 1100px;
    width: 100%;
    margin: 60px auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
}

.ilan-ver-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

/* â”€â”€ Background Layers â”€â”€ */
.ilan-ver-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ilan-ver-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.08) 0%, 
        rgba(255, 64, 129, 0.12) 50%, 
        rgba(194, 24, 91, 0.08) 100%
    );
}

.ilan-ver-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.03) 35px,
            rgba(255, 255, 255, 0.03) 70px
        );
    opacity: 0.6;
}

/* â”€â”€ Animated Glow Effect â”€â”€ */
.ilan-ver-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(233, 30, 99, 0.15) 0%,
        rgba(255, 64, 129, 0.08) 50%,
        transparent 100%
    );
    animation: cta-glow-pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes cta-glow-pulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.02);
    }
}

/* â”€â”€ Content Container â”€â”€ */
.ilan-ver-content {
    position: relative;
    z-index: 1;
    padding: 48px 56px;
    text-align: center;
}

/* â”€â”€ Premium Badge â”€â”€ */
.ilan-ver-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f5a623, #f7c948);
    border: 1px solid rgba(245, 166, 35, 0.3);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.4);
}

/* â”€â”€ Title â”€â”€ */
.ilan-ver-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

/* â”€â”€ Description â”€â”€ */
.ilan-ver-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* â”€â”€ Statistics Grid â”€â”€ */
.ilan-ver-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ilan-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    transition: all 0.3s var(--ease-out);
    box-shadow: var(--shadow-sm);
}

.ilan-stat:hover {
    background: var(--bg-card);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ilan-stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.ilan-stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
}

/* â”€â”€ Modern Button â”€â”€ */
.btn-ilan-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp);
    color: white;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

.btn-ilan-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    background: var(--whatsapp-dark);
    color: white;
}

.btn-ilan-modern .btn-text {
    font-weight: 700;
}

.btn-ilan-modern .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s var(--ease-out);
}

.btn-ilan-modern:hover .btn-icon {
    transform: scale(1.15);
}

/* â”€â”€ Mobile Responsive â”€â”€ */
@media (max-width: 768px) {
    .ilan-ver-card {
        margin: 50px 16px;
    }
    
    .ilan-ver-content {
        padding: 40px 32px;
    }
    
    .ilan-ver-title {
        font-size: 1.6rem;
    }
    
    .ilan-ver-desc {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }
    
    .ilan-ver-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .ilan-stat {
        padding: 16px 14px;
    }
    
    .ilan-stat-value {
        font-size: 1.4rem;
    }
    
    .ilan-stat-label {
        font-size: 0.75rem;
    }
    
    .btn-ilan-modern {
        width: 100%;
        justify-content: center;
        padding: 15px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .ilan-ver-card {
        margin: 40px 12px;
    }
    
    .ilan-ver-content {
        padding: 32px 24px;
    }
    
    .ilan-ver-title {
        font-size: 1.4rem;
    }
    
    .ilan-ver-desc {
        font-size: 0.9rem;
    }
    
    .ilan-ver-badge {
        font-size: 0.7rem;
        padding: 5px 16px;
    }
}


/* ═══════════════════════════════════════════════════════════
   VISITOR COUNTER STYLES
   ═══════════════════════════════════════════════════════════ */

.footer-visitor-count {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.footer-visitor-count svg {
    opacity: 0.7;
}

#visitor-count {
    font-weight: 600;
    color: #e63946;
    font-size: 15px;
    margin-left: 4px;
}
