/* ES YAPI Premium Custom CSS Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary: #d97706; /* Warm Bronze / Gold Accent */
    --primary-hover: #f59e0b;
    --primary-light: #fef3c7;
    --secondary: #0f172a; /* Deep Slate (Luxury Dark) */
    --secondary-light: #1e293b;
    --secondary-lighter: #334155;
    
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #f1f5f9;
    
    --success: #10b981;
    --error: #ef4444;
    
    /* Layout Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 25px -5px rgba(217, 119, 6, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --container-width: 1200px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

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

button {
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    transition: var(--transition-smooth);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-lighter);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-wrapper {
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--bg-white);
}

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

.logo-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

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

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), #b45309);
    color: var(--bg-white);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--bg-white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95)), url('assets/kisbahcesi.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    padding-top: 80px;
}

.hero-content {
    max-width: 700px;
    z-index: 10;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: inline-block;
    border-left: 3px solid var(--primary);
    padding-left: 12px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary);
    background: linear-gradient(to right, var(--primary-hover), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}

.whatsapp-float {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Services / Products Section */
.section-title-wrapper {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 40px;
    color: var(--secondary);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-title.left::after {
    left: 0;
    transform: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(217, 119, 6, 0.2);
}

.service-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: var(--secondary);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(5px);
    color: var(--primary);
    padding: 6px 14px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-title {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--secondary-light);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.service-features li svg {
    color: var(--primary);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--secondary-light);
    border-radius: var(--radius-sm);
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-btn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
}

/* About / Why Choose Us Section */
.about-section {
    background-color: var(--secondary);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

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

.about-content h2 {
    color: var(--bg-white);
}

.about-desc {
    font-size: 17px;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    background-color: rgba(217, 119, 6, 0.05);
    border-color: var(--primary);
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(217, 119, 6, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-hover);
    font-size: 24px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    color: var(--text-light);
    opacity: 0.7;
}

.about-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    box-shadow: var(--shadow-lg);
}

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

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary), #b45309);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    font-size: 40px;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Interactive Quote / Cost Calculator Section */
.calculator-section {
    background-color: var(--bg-white);
}

.calc-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary-lighter);
}

.form-select, .form-input {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    background-color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--secondary);
    outline: none;
    transition: var(--transition-smooth);
}

.form-select:focus, .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.calc-result-box {
    background-color: var(--secondary);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-result-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background-color: rgba(217, 119, 6, 0.05);
    border-radius: 50%;
}

.result-title {
    font-size: 18px;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-value {
    font-size: 44px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-hover);
    margin-bottom: 20px;
}

.result-disclaimer {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.6;
    margin-bottom: 30px;
}

.btn-calc-submit {
    background: linear-gradient(135deg, var(--primary), #b45309);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-calc-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.4);
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-light);
    position: absolute;
    top: 20px;
    right: 30px;
    opacity: 0.5;
}

.stars {
    color: #fbbf24;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary-lighter);
    margin-bottom: 30px;
    font-size: 16px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
}

.client-name {
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--secondary);
}

.client-service {
    font-size: 12px;
    color: var(--text-muted);
}

/* Contact & Map Section */
.contact-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card-premium {
    background-color: var(--secondary);
    color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-card-premium h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-hover);
}

.contact-item-row {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-hover);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.85;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow-md);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
.footer {
    background-color: #0b0f19;
    color: var(--text-light);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-brand h4 span {
    color: var(--primary);
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-3px);
}

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    color: var(--bg-white);
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    opacity: 0.6;
}

/* Responsiveness Medias */
@media (max-width: 992px) {
    .hero-title {
        font-size: 44px;
    }
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    .calc-card {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .cta-button span {
        display: none;
    }

    .cta-button {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        margin-left: auto;
        margin-right: 15px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--secondary);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Instagram Showcase Section Custom Styles */
.instagram-showcase-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.instagram-phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 320px;
    height: 560px;
    background-color: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    border: 4px solid #1e293b;
    position: relative;
    overflow: hidden;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 20px;
    background-color: #000;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 28px;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

.insta-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px 10px 16px;
    border-bottom: 1px solid #efefef;
    font-size: 14px;
    color: #262626;
}

.insta-mock-username {
    font-weight: 700;
    font-size: 14px;
}

.insta-mock-profile {
    padding: 16px;
}

.insta-mock-avatar-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.insta-mock-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.insta-mock-avatar i {
    font-size: 32px;
}

.insta-mock-stats {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    justify-content: space-around;
    text-align: center;
}

.stat-col strong {
    display: block;
    font-size: 15px;
    color: #262626;
}

.stat-col span {
    font-size: 10px;
    color: #8e8e8e;
}

.insta-mock-bio h3 {
    font-size: 13px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 2px;
}

.bio-category {
    font-size: 11px;
    color: #8e8e8e;
    margin-bottom: 5px;
}

.bio-text {
    font-size: 11.5px;
    line-height: 1.4;
    color: #262626;
}

.insta-mock-action-buttons {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px 16px;
}

.mock-btn {
    flex: 1;
    padding: 8px;
    background-color: #efefef;
    color: #262626;
    text-align: center;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.mock-btn.primary {
    background-color: #0095f6;
    color: white;
}

.insta-mock-tabs {
    display: flex;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}

.tab-item {
    flex: 1;
    padding: 10px;
    text-align: center;
    color: #8e8e8e;
    font-size: 14px;
}

.tab-item.active {
    color: #262626;
    border-bottom: 1.5px solid #262626;
}

.insta-mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 2px;
}

.grid-item-simulated {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #64748b;
    font-size: 10px;
    gap: 4px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.grid-item-simulated:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
}

.grid-item-simulated i {
    font-size: 14px;
}

/* Responsiveness for Instagram Showcase */
@media (max-width: 992px) {
    .instagram-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* SEO Hashtags Styles */
.seo-hashtag-item {
    background-color: var(--bg-light);
    color: var(--secondary-lighter);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    display: inline-block;
    transition: var(--transition-smooth);
}

.seo-hashtag-item:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}
