/* ================================================
   MODERN ELECTRO EPILATION - PURPLE & PINK THEME
   Glassmorphism, 3D Effects, Smooth Animations
   ================================================ */

:root {
    --primary: #D4AF37;
    --primary-light: #E8C547;
    --secondary: #C5A028;
    --accent: #F4E4B0;
    --bg-dark: #000000;
    --bg-glass: rgba(212, 175, 55, 0.05);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    --glass-border: 1px solid rgba(212, 175, 55, 0.3);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glow-primary: 0 0 15px rgba(212, 175, 55, 0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container-fluid {
    max-width: 100%;
    padding: 0 2rem;
}

/* PROFESSIONAL BACKGROUND */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
    opacity: 1;
}

.animated-bg::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(197, 160, 40, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 20%);
    animation: bgRotate 60s linear infinite;
}

@keyframes bgRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 1;
}

.bg-particles {
    display: none;
}

.floating-shape {
    position: absolute;
    filter: blur(100px);
    opacity: 0.08;
    animation: floatSlow 40s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes floatSlow {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(30px, -30px) scale(1.1);
    }
    66% { 
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.shape-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    top: -20%;
    right: -10%;
}

.shape-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.1), transparent 70%);
    bottom: -20%;
    left: -10%;
    animation-delay: 13s;
}

.shape-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: 26s;
}

.shape-4 {
    display: none;
}

.shape-5 {
    display: none;
}

.shape-6 {
    display: none;
}

.shape-7 {
    display: none;
}

/* SCROLL PROGRESS */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    width: 0%;
    z-index: 10000;
    box-shadow: var(--glow-primary);
}

/* GLASSMORPHISM NAVBAR */
.glass-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 1.5rem 0;
    transition: all var(--transition);
}

.glass-navbar.scrolled {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    order: -1;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    box-shadow: var(--glow-primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    transition: all var(--transition);
    font-weight: 500;
}

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

.btn-contact {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--glow-primary);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15 0.6);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.badge i {
    color: var(--secondary);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    color: var(--text-primary);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
}

.image-glow {
    position: absolute;
    inset: -50%;
    background: var(--gradient-primary);
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.hero-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.floating-card {
    position: absolute;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--glass-shadow);
    animation: floatCard 3s infinite ease-in-out;
}

.floating-card i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-1 {
    top: 10%;
    right: -10%;
}

.card-2 {
    bottom: 10%;
    left: -10%;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.scroll-indicator-hero {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { opacity: 0; transform: translateY(-20px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(20px); }
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* DLA KOGO JEST NASZA USŁUGA */
.for-who-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.for-who-card {
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 30px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.for-who-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.for-who-card:hover::before {
    opacity: 0.1;
}

.for-who-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.for-who-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.for-who-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.for-who-icon i {
    font-size: 3.5rem;
    color: #000;
}

.for-who-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.for-who-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 400px;
}

@media (max-width: 768px) {
    .for-who-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .for-who-card {
        padding: 3rem 2rem;
    }
    
    .for-who-icon {
        width: 100px;
        height: 100px;
    }
    
    .for-who-icon i {
        font-size: 3rem;
    }
    
    .for-who-card h3 {
        font-size: 1.75rem;
    }
    
    .for-who-card p {
        font-size: 1rem;
    }
}

/* SERVICES BENTO GRID */
.services {
    padding: 100px 0;
}

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

.bento-card {
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    cursor: pointer;
}

.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.tall {
    grid-row: span 2;
}

.card-glow {
    position: absolute;
    inset: -50%;
    background: var(--gradient-primary);
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.bento-card:hover .card-glow {
    opacity: 0.15;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-primary);
}

.bento-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bento-card p {
    color: var(--text-secondary);
    flex: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.duration {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* PROCESS SECTION */
.process {
    padding: 100px 0;
}

.process-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding: 2rem 0;
}

.process-scroll::-webkit-scrollbar {
    display: none;
}

.process-card {
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--glow-primary);
}

.process-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.process-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-arrow {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .bento-card.large,
    .bento-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .process-scroll {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    .process-card:nth-child(n+7) {
        grid-column: span 1;
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: rgba(212, 175, 55, 0.08);
        backdrop-filter: blur(20px);
        border-left: var(--glass-border);
        flex-direction: column;
        padding: 2rem;
        transition: right var(--transition);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-toggle {
        display: flex;
    }
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .process-scroll {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .floating-card {
        display: none;
    }
    .process-scroll {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .process-card {
        padding: 2rem 1.5rem;
    }
}

/* BEFORE/AFTER GALLERY */
.before-after-section {
    padding: 100px 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* GALLERY SLIDER */
.gallery-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 60px;
}

.gallery-slider {
    overflow: hidden;
    border-radius: 25px;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-item {
    min-width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--gradient-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--primary-light);
}

.results-info {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding: 3rem;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 25px;
}

.results-info h3 {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.results-info p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* REVIEWS SECTION */
.reviews-section {
    padding: 100px 0;
}

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

.review-card {
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(212, 175, 55, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.review-stars {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.3rem;
}

.review-stars i {
    color: var(--accent);
    font-size: 1rem;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: auto;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.author-info p {
    color: var(--secondary);
    font-size: 0.75rem;
}

/* ABOUT SECTION */
.about-section {
    padding: 100px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.features-left,
.features-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-box {
    padding: 2rem;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-left: 3px solid var(--primary);
    border-radius: 15px;
    transition: all 0.4s;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.feature-box i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: block;
}

.feature-box h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-center-image {
    width: 100%;
    position: relative;
}

.about-center-image img {
    width: 100%;
    border-radius: 25px;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
    transition: all 0.4s;
}

.about-center-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

/* PRICING SECTION */
.pricing-section {
    padding: 100px 0;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.pricing-image {
    width: 100%;
}

.pricing-image img {
    width: 100%;
    border-radius: 25px;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.pricing-content {
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    padding: 3rem;
    border-radius: 25px;
}

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

.pricing-item-big {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary);
    border-radius: 20px;
    transition: all 0.4s;
}

.pricing-item-big:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.pricing-item-big h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-item-big .price {
    font-size: 2.5rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 15px;
    overflow: hidden;
}

.pricing-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.pricing-table tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.pricing-table td {
    padding: 1.2rem 1.5rem;
    color: var(--text-secondary);
}

.pricing-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TRUST SECTION */
.trust-section {
    padding: 100px 0;
}

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

.trust-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 25px;
    transition: all 0.5s;
}

.trust-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.35);
}

.trust-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* BLOG SECTION */
.blog-section {
    padding: 100px 0;
}

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

.blog-card {
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.blog-link:hover {
    color: var(--secondary);
    gap: 0.8rem;
}

/* SPECIALISTS SECTION */
.specialists-section {
    padding: 100px 0;
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.specialist-card {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 25px;
    transition: all 0.5s;
}

.specialist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.specialist-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: var(--glow-primary);
}

.specialist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialist-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.specialist-title {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.specialist-bio {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    text-align: left;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.4s;
    font-size: 1.2rem;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: all 0.4s;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 0;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-text {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Instagram QR Code */
.instagram-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 25px;
    max-width: 350px;
    transition: all 0.5s;
}

.instagram-qr:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.qr-code {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    padding: 1rem;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.instagram-qr:hover .qr-code {
    transform: scale(1.05);
}

.qr-text {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    font-style: italic;
}

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

.contact-card {
    background: rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.25);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    transition: all 0.5s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.contact-card i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: block;
}

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--secondary);
}

/* FOOTER */
.footer {
    padding: 4rem 0 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* FLOATING BUTTONS */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    cursor: pointer;
    box-shadow: var(--glow-primary);
    transition: all 0.3s;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* RESPONSIVE ADDITIONS */
@media (max-width: 1200px) {
    .about-layout {
        grid-template-columns: 1fr 350px 1fr;
        gap: 2rem;
    }
    .pricing-layout {
        grid-template-columns: 350px 1fr;
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .before-after-gallery {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .features-left,
    .features-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .about-center-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    .pricing-layout {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-logo {
        align-items: center;
    }
    .footer-info p,
    .footer-hours p {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 2.2rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .features-left,
    .features-right {
        grid-template-columns: 1fr;
    }
    .pricing-header {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .instagram-qr {
        max-width: 300px;
        padding: 1.5rem;
    }
    .qr-code {
        width: 200px;
        height: 200px;
    }
    .qr-text {
        font-size: 1rem;
    }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .back-to-top {
        width: 45px;
        height: 45px;
    }
    .container,
    .container-fluid {
        padding: 0 1rem;
    }
    .bento-card {
        padding: 1.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-intro {
        font-size: 0.95rem;
    }
}

/* EXTRA SMALL DEVICES (very small phones) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .nav-links {
        width: 100%;
        right: -100%;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .process-timeline {
        gap: 1.5rem;
    }
    .timeline-step {
        min-width: 250px;
    }
    .floating-shape {
        filter: blur(60px);
        opacity: 0.15;
    }
    .shape-6,
    .shape-7 {
        display: none;
    }
    .animated-bg::before,
    .animated-bg::after {
        opacity: 0.3;
    }
    .bg-grid {
        opacity: 0.3;
        background-size: 60px 60px;
    }
    .bg-particles {
        opacity: 0.4;
    }
}

/* ================================================
   ARTICLE PAGES STYLES
   ================================================ */

.article-section {
    padding: 150px 0 80px;
    min-height: 100vh;
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-header {
    text-align: center;
    margin-bottom: 4rem;
}

.article-category {
    display: inline-block;
    background: var(--gradient-primary);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-meta i {
    color: var(--primary);
}

.article-content {
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    padding: 4rem;
    margin-bottom: 3rem;
}

.article-content .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.article-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.article-content strong {
    color: var(--primary-light);
    font-weight: 600;
}

/* Info Box */
.info-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.info-box p {
    margin: 0;
    flex: 1;
}

/* Tips Box */
.tips-box {
    background: var(--gradient-primary);
    color: #000;
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem 0;
}

.tips-box h3 {
    color: #000;
    margin-top: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tips-box i {
    color: #000;
}

.tips-box ul {
    margin: 1rem 0 0;
}

.tips-box li {
    color: #000;
    font-weight: 500;
}

/* CTA Box */
.cta-box {
    text-align: center;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.cta-box h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-box p {
    margin-bottom: 2rem;
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--gradient-primary);
}

.comparison-table th {
    color: #000;
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-secondary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.08);
}

/* Article Footer */
.article-footer {
    text-align: center;
    margin-top: 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    transition: all 0.3s;
}

.back-link:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary);
    transform: translateX(-5px);
}

/* Responsive Article Pages */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-content {
        padding: 2rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.25rem;
    }
    
    .article-content p,
    .article-content li {
        font-size: 1rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}

