/*
Theme Name: GeneratePress Child – über60plus (Premium Edition)
Template:   generatepress
Version:    1.3.0
Author:     Nurlan
Description: über60plus.de üçün xüsusi "Premium" və peşəkar dizayn sistemi. 60+ yaşlı auditoriya üçün maksimal oxunaqlılıq və modern estetikaya malikdir.
*/

/* Google Fonts Import - Modern & Versatile */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@700;800;900&family=Outfit:wght@400;500;700&display=swap');

/* Parent Theme Style */
@import url('../generatepress/style.css');

/* ==========================================================================
   PREMIUM DİZAYN SİSTEMİ (PRO EDITION v1.3)
   ========================================================================== */
:root {
  /* HSL Tailored Color Palette — Deep, Trustworthy & Energetic */
  --color-primary:       hsl(215, 65%, 15%);    /* Sophisticated Charcoal Navy */
  --color-primary-soft:  hsl(215, 65%, 25%);    
  --color-secondary:     hsl(165, 55%, 40%);    /* Calm Health Green */
  --color-secondary-soft: hsl(165, 55%, 50%);
  --color-accent:        hsl(25, 85%, 55%);     /* Vibrant Medical Orange */
  --color-accent-hover:  hsl(25, 85%, 45%);
  
  /* Backgrounds & Neutrals */
  --color-bg-main:       hsl(45, 20%, 98%);     /* Warm Cream Tint */
  --color-bg-card:       hsl(0, 0%, 100%);      /* Pure White */
  --color-bg-dark:       hsl(215, 65%, 10%);    /* Dark sections */
  --color-text-main:     hsl(215, 65%, 12%);
  --color-text-muted:    hsl(215, 20%, 45%);
  --color-text-on-dark:  hsl(0, 0%, 95%);
  --color-border-light:  hsl(215, 10%, 90%);

  /* Typography Scale — Optimized for Seniors (WCAG AA++) */
  --font-base:           'Inter', sans-serif;
  --font-heading:        'Playfair Display', serif;
  --font-accent:         'Outfit', sans-serif;
  
  --f-size-base:         1.25rem;  /* 20px - Crystal clear for 60+ */
  --f-size-lg:           1.5rem;   /* 24px */
  --f-size-xl:           2rem;     /* 32px */
  --f-size-2xl:          2.75rem;  /* 44px */
  --f-size-hero:         3.5rem;   /* 56px */
  --f-size-sm:           1rem;     /* 16px */
  --f-size-xs:           0.875rem; /* 14px */
  
  /* Shadows & Effects (Professional Look) */
  --shadow-sm:           0 2px 4px rgba(0,0,0,0.05);
  --shadow-md:           0 12px 24px -6px rgba(0,0,0,0.08);
  --shadow-lg:           0 25px 50px -12px rgba(0,0,0,0.12);
  --shadow-glow:         0 0 40px rgba(45, 122, 95, 0.15);
  --border-radius-sm:    8px;
  --border-radius-md:    12px;
  --border-radius-lg:    18px;
  --border-radius-xl:    24px;
  
  --transition-fast:     0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:     0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce:   0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   BASE STYLING
   ========================================================================== */
body {
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    font-family: var(--font-base);
    font-size: var(--f-size-base);
    line-height: 1.8;
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.2;
}

/* ==========================================================================
   ENHANCED COMPONENTS (PRO)
   ========================================================================== */

/* Modern CTA Buttons with Micro-animations */
.button, 
.btn-primary {
    background: var(--color-accent) !important;
    background: linear-gradient(135deg, var(--color-accent), hsl(25, 85%, 50%)) !important;
    color: #fff !important;
    font-family: var(--font-accent);
    font-weight: 700;
    padding: 18px 42px;
    border-radius: var(--border-radius-md);
    font-size: 1.15rem;
    text-transform: none;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px -5px hsla(25, 85%, 55%, 0.3);
    transition: var(--transition-fast) !important;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button:hover,
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px hsla(25, 85%, 55%, 0.4);
    background: var(--color-accent-hover) !important;
}

.btn-secondary {
    background: transparent !important;
    color: var(--color-primary) !important;
    font-family: var(--font-accent);
    font-weight: 700;
    padding: 16px 38px;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    border: 2px solid var(--color-border-light);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent) !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   PREMIUM CARD DESIGN (Glassmorphism inspired)
   ========================================================================== */
.topic-card,
.card-glass {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--color-secondary);
    opacity: 0;
    transition: var(--transition-fast);
}

.topic-card:hover::before {
    opacity: 1;
}

.topic-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.topic-card h3 {
    color: var(--color-primary);
    font-size: var(--f-size-lg);
    font-family: var(--font-heading);
    margin-bottom: 0.8rem;
}

.topic-card p {
    font-size: var(--f-size-base);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.topic-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
    font-weight: 700;
    font-family: var(--font-accent);
    text-decoration: none;
    margin-top: 1.2rem;
    font-size: var(--f-size-sm);
    transition: var(--transition-fast);
}

.topic-card .card-link:hover {
    gap: 12px;
}

/* ==========================================================================
   HIGH-END HERO SECTION
   ========================================================================== */
.home-hero {
    background: linear-gradient(170deg, hsl(45, 20%, 96%) 0%, hsl(45, 20%, 98%) 100%);
    position: relative;
    padding: 120px 0 !important;
    overflow: hidden;
}

.home-hero::after {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(165, 55%, 40%, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-hero .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

.home-hero h1 {
    font-size: var(--f-size-hero);
    letter-spacing: -0.03em;
    margin-bottom: 30px;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content {
    flex: 1.2;
    padding-right: 50px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: hsla(165, 55%, 40%, 0.1);
    color: var(--color-secondary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-family: var(--font-accent);
}

.hero-subtitle {
    font-size: var(--f-size-lg);
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-actions .link-btn {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--color-border-light);
    font-family: var(--font-accent);
    transition: var(--transition-fast);
}

.hero-actions .link-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.hero-asset {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-avatar-shape {
    width: 380px;
    height: 380px;
    background: var(--color-bg-card);
    box-shadow: var(--shadow-lg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    border: 12px solid #fff;
    transform: rotate(-5deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 140px;
    transition: var(--transition-slow);
}

.hero-avatar-shape:hover {
    transform: rotate(0deg) scale(1.03);
}

.hero-decor-circle {
    position: absolute;
    top: -20px;
    right: 0;
    width: 80px;
    height: 80px;
    background: hsla(25, 85%, 55%, 0.15);
    border-radius: 50%;
    filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

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

/* ==========================================================================
   FEATURED TOPICS SECTION
   ========================================================================== */
.featured-topics {
    padding: 100px 20px;
    background: var(--color-bg-main);
}

.featured-topics .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-topics .section-header h2 {
    font-size: var(--f-size-2xl);
    margin-bottom: 16px;
}

.featured-topics .section-header p {
    font-size: var(--f-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.grid-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ==========================================================================
   LATEST VIDEOS SECTION
   ========================================================================== */
.latest-videos {
    padding: 100px 20px;
    background: var(--color-bg-card);
}

.latest-videos .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.latest-videos .section-header h2 {
    font-size: var(--f-size-2xl);
    margin-bottom: 16px;
}

.latest-videos .section-header p {
    font-size: var(--f-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.video-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 1px solid var(--color-border-light);
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-card .video-thumb {
    width: 100%;
    height: 200px;
    background: var(--color-bg-dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-card .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card .play-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.video-card:hover .play-icon {
    transform: scale(1.15);
    background: var(--color-accent);
    color: #fff;
}

.video-card .video-info {
    padding: 1.5rem;
}

.video-card .video-info h3 {
    font-size: var(--f-size-base);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.video-card .video-meta {
    font-size: var(--f-size-xs);
    color: var(--color-text-muted);
    display: flex;
    gap: 12px;
    align-items: center;
}

.video-card .premium-badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, hsl(40, 90%, 50%), hsl(25, 85%, 55%));
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-accent);
}

/* ==========================================================================
   TESTIMONIALS / TRUST SECTION
   ========================================================================== */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, hsl(215, 65%, 12%) 100%);
    color: var(--color-text-on-dark);
}

.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-section .section-header h2 {
    font-size: var(--f-size-2xl);
    color: #fff;
    margin-bottom: 16px;
}

.testimonials-section .section-header p {
    font-size: var(--f-size-lg);
    color: hsla(0, 0%, 100%, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: hsla(0, 0%, 100%, 0.06);
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-slow);
}

.testimonial-card:hover {
    background: hsla(0, 0%, 100%, 0.1);
    transform: translateY(-6px);
}

.testimonial-card .quote-text {
    font-size: var(--f-size-base);
    line-height: 1.7;
    color: hsla(0, 0%, 100%, 0.85);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-card .quote-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2.5rem;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-card .quote-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: hsla(165, 55%, 40%, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-card .author-info strong {
    display: block;
    color: #fff;
    font-family: var(--font-accent);
    font-size: var(--f-size-sm);
}

.testimonial-card .author-info span {
    font-size: var(--f-size-xs);
    color: hsla(0, 0%, 100%, 0.5);
}

/* ==========================================================================
   NEWSLETTER CTA SECTION
   ========================================================================== */
.newsletter-section {
    padding: 100px 20px;
    background: var(--color-bg-card);
    text-align: center;
}

.newsletter-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 50px;
    background: linear-gradient(135deg, hsl(215, 65%, 15%) 0%, hsl(215, 65%, 20%) 100%);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.newsletter-inner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, hsla(165, 55%, 40%, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-inner h2 {
    font-size: var(--f-size-2xl);
    color: #fff;
    margin-bottom: 16px;
    position: relative;
}

.newsletter-inner p {
    font-size: var(--f-size-base);
    color: hsla(0, 0%, 100%, 0.7);
    margin-bottom: 36px;
    position: relative;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid hsla(0, 0%, 100%, 0.15);
    background: hsla(0, 0%, 100%, 0.1);
    border-radius: var(--border-radius-md);
    color: #fff;
    font-size: var(--f-size-sm);
    font-family: var(--font-base);
    transition: var(--transition-fast);
}

.newsletter-form input[type="email"]::placeholder {
    color: hsla(0, 0%, 100%, 0.4);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: hsla(0, 0%, 100%, 0.15);
}

.newsletter-form .btn-submit {
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--color-accent), hsl(25, 85%, 50%));
    color: #fff;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-family: var(--font-accent);
    font-size: var(--f-size-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.newsletter-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px hsla(25, 85%, 55%, 0.4);
}

.newsletter-consent {
    font-size: var(--f-size-xs);
    color: hsla(0, 0%, 100%, 0.4);
    margin-top: 16px;
    position: relative;
}

/* ==========================================================================
   TRUST BADGES STRIP
   ========================================================================== */
.trust-strip {
    padding: 50px 20px;
    background: var(--color-bg-main);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.trust-strip .trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-family: var(--font-accent);
    font-size: var(--f-size-sm);
    font-weight: 600;
}

.trust-item .trust-icon {
    font-size: 2rem;
}

/* ==========================================================================
   ABOUT DOCTOR SECTION (Proper Classes)
   ========================================================================== */
.about-doctor {
    padding: 80px 20px;
    background: #fff;
}

.about-doctor .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.doctor-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.doctor-avatar-circle {
    width: 320px;
    height: 320px;
    background: var(--color-border-light);
    border-radius: 50%;
    margin: 0 auto;
    border: 8px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-slow);
}

.doctor-avatar-circle:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-glow);
}

.doctor-info {
    flex: 1.5;
    min-width: 280px;
}

.doctor-info h2 {
    font-size: var(--f-size-xl);
    margin-bottom: 15px;
}

.doctor-info h3 {
    font-size: var(--f-size-lg);
    color: var(--color-secondary);
    margin-bottom: 25px;
    font-weight: 600;
}

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

.doctor-stats {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    padding: 18px;
    border-left: 4px solid var(--color-accent);
    background: var(--color-bg-main);
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    transition: var(--transition-fast);
}

.stat-item:hover {
    background: hsla(25, 85%, 55%, 0.05);
}

.stat-item strong {
    font-size: var(--f-size-lg);
    color: var(--color-primary);
    display: block;
    font-family: var(--font-heading);
}

.stat-item span {
    font-size: var(--f-size-sm);
    color: var(--color-text-muted);
}

/* ==========================================================================
   GDPR COOKIE CONSENT BANNER
   ========================================================================== */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: var(--color-text-on-dark);
    padding: 24px 30px;
    z-index: 99999;
    display: none;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(20px);
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
}

.gdpr-banner.visible {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.gdpr-banner .gdpr-text {
    flex: 1;
    min-width: 250px;
    font-size: var(--f-size-sm);
    color: hsla(0, 0%, 100%, 0.8);
    line-height: 1.5;
}

.gdpr-banner .gdpr-text a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.gdpr-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.gdpr-btn-accept {
    padding: 12px 28px;
    background: var(--color-secondary);
    color: #fff;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-family: var(--font-accent);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: var(--f-size-sm);
}

.gdpr-btn-accept:hover {
    background: var(--color-secondary-soft);
    transform: translateY(-2px);
}

.gdpr-btn-decline {
    padding: 12px 28px;
    background: transparent;
    color: hsla(0, 0%, 100%, 0.6);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-family: var(--font-accent);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: var(--f-size-sm);
}

.gdpr-btn-decline:hover {
    border-color: hsla(0, 0%, 100%, 0.5);
    color: #fff;
}

/* ==========================================================================
   PAGE HEADER (About, etc.)
   ========================================================================== */
.page-header-custom {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-soft));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-custom::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsla(165, 55%, 40%, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header-custom h1 {
    color: #fff;
    font-size: var(--f-size-2xl);
    margin-bottom: 12px;
    position: relative;
}

.page-header-custom p {
    color: hsla(0, 0%, 100%, 0.7);
    font-size: var(--f-size-lg);
    position: relative;
}

/* ==========================================================================
   ACCESSIBILITY: Active Focus States
   ========================================================================== */
:focus {
    outline: 4px solid var(--color-secondary);
    outline-offset: 4px;
}

/* ==========================================================================
   STICKY NAVIGATION ENHANCEMENT
   ========================================================================== */
.main-navigation {
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border-light);
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    transition: var(--transition-fast);
}

/* ==========================================================================
   SCROLL ANIMATIONS (Reveal on Scroll)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE / MOBILE (≤768px)
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --f-size-hero: 2.25rem;
        --f-size-2xl:  2rem;
        --f-size-xl:   1.5rem;
        --f-size-lg:   1.25rem;
        --f-size-base:  1.1rem;
    }

    .home-hero {
        padding: 60px 0 !important;
    }

    .home-hero .container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-asset {
        margin-top: 40px;
    }

    .hero-avatar-shape {
        width: 260px;
        height: 260px;
        font-size: 100px;
    }

    .about-doctor .container {
        flex-direction: column;
        text-align: center;
    }

    .doctor-stats {
        grid-template-columns: 1fr;
    }

    .grid-container,
    .video-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .trust-strip .trust-inner {
        gap: 30px;
    }

    .gdpr-banner.visible {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .gdpr-banner,
    .main-navigation,
    .hero-asset,
    .newsletter-section {
        display: none !important;
    }
}

/* ==========================================================================
   HERO V2 — 21st.dev inspired (Video BG + Infinite Slider)
   ========================================================================== */

/* ---- Hero wrapper ---- */
.u60p-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg-dark);
}

/* ---- Video background ---- */
.u60p-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.u60p-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: invert(1);
}

.u60p-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        hsla(215, 65%, 8%, 0.97) 0%,
        hsla(215, 65%, 12%, 0.88) 50%,
        hsla(165, 55%, 10%, 0.75) 100%
    );
}

/* ---- Inner layout ---- */
.u60p-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ---- Text block ---- */
.u60p-hero-text {
    flex: 1.1;
    min-width: 0;
}

.u60p-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: hsla(165, 55%, 40%, 0.15);
    border: 1px solid hsla(165, 55%, 40%, 0.3);
    border-radius: 50px;
    color: var(--color-secondary-soft);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-accent);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.u60p-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.u60p-hero-title-accent {
    background: linear-gradient(90deg, var(--color-secondary-soft), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.u60p-hero-subtitle {
    font-size: var(--f-size-lg);
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 44px;
}

.u60p-hero-subtitle strong {
    color: #fff;
}

/* ---- CTA Buttons ---- */
.u60p-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.u60p-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-accent), hsl(25, 85%, 48%));
    color: #fff;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px -4px hsla(25, 85%, 55%, 0.35);
    transition: var(--transition-bounce);
    white-space: nowrap;
}

.u60p-btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 32px -6px hsla(25, 85%, 55%, 0.45);
    color: #fff;
    text-decoration: none;
}

.u60p-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: hsla(0, 0%, 100%, 0.07);
    color: hsla(0, 0%, 100%, 0.85);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    border: 1px solid hsla(0, 0%, 100%, 0.15);
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.u60p-btn-ghost:hover {
    background: hsla(0, 0%, 100%, 0.13);
    border-color: hsla(0, 0%, 100%, 0.3);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ---- Stats row ---- */
.u60p-hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.u60p-stat strong {
    font-size: var(--f-size-xl);
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

.u60p-stat span {
    font-size: var(--f-size-xs);
    color: hsla(0, 0%, 100%, 0.5);
    font-family: var(--font-accent);
    margin-top: 4px;
}

.u60p-stat-divider {
    width: 1px;
    height: 36px;
    background: hsla(0, 0%, 100%, 0.12);
}

/* ---- Doctor card ---- */
.u60p-hero-asset {
    flex: 0.9;
    position: relative;
    display: flex;
    justify-content: center;
}

.u60p-doctor-card {
    position: relative;
    width: 360px;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.5);
    border: 1px solid hsla(0, 0%, 100%, 0.08);
}

.u60p-doctor-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.u60p-doctor-badge-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(4px);
}

.u60p-badge-icon {
    font-size: 1.5rem;
}

.u60p-doctor-badge-card strong {
    display: block;
    color: #fff;
    font-family: var(--font-accent);
    font-size: var(--f-size-sm);
    font-weight: 700;
}

.u60p-doctor-badge-card span {
    color: hsla(0, 0%, 100%, 0.6);
    font-size: var(--f-size-xs);
}

/* ---- Decorative elements ---- */
.u60p-hero-decor-1 {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: hsla(25, 85%, 55%, 0.2);
    filter: blur(30px);
    animation: floatDecor 7s ease-in-out infinite;
}

.u60p-hero-decor-2 {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: hsla(165, 55%, 40%, 0.25);
    filter: blur(25px);
    animation: floatDecor 9s ease-in-out infinite reverse;
}

@keyframes floatDecor {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

/* ==========================================================================
   INFINITE TRUST SLIDER
   ========================================================================== */
.u60p-trust-slider {
    background: var(--color-bg-dark);
    border-top: 1px solid hsla(0, 0%, 100%, 0.06);
    padding: 28px 0 32px;
    overflow: hidden;
}

.u60p-slider-header {
    text-align: center;
    margin-bottom: 18px;
}

.u60p-slider-header p {
    font-size: var(--f-size-xs);
    font-family: var(--font-accent);
    color: hsla(0, 0%, 100%, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.u60p-slider-viewport {
    position: relative;
    overflow: hidden;
}

.u60p-fade-left,
.u60p-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.u60p-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-dark), transparent);
}

.u60p-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-dark), transparent);
}

.u60p-slider-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: u60pSlide 32s linear infinite;
}

.u60p-slider-track:hover {
    animation-play-state: paused;
}

@keyframes u60pSlide {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.u60p-slide-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 36px;
    color: hsla(0, 0%, 100%, 0.55);
    font-family: var(--font-accent);
    font-size: var(--f-size-sm);
    font-weight: 600;
    white-space: nowrap;
    border-right: 1px solid hsla(0, 0%, 100%, 0.08);
    transition: color 0.2s;
}

.u60p-slide-item:hover {
    color: hsla(0, 0%, 100%, 0.9);
}

.u60p-slide-icon {
    font-size: 1.2rem;
}

/* ==========================================================================
   RESPONSIVE — Hero V2
   ========================================================================== */
@media (max-width: 900px) {
    .u60p-hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 100px 24px 60px;
        gap: 40px;
    }

    .u60p-hero-text { flex: none; }

    .u60p-hero-subtitle { margin-left: auto; margin-right: auto; }

    .u60p-hero-actions { justify-content: center; }

    .u60p-hero-stats { justify-content: center; }

    .u60p-doctor-card { width: 280px; }

    .u60p-doctor-img { height: 340px; }
}

@media (max-width: 480px) {
    .u60p-hero-title { font-size: 2.2rem; }

    .u60p-hero-actions { flex-direction: column; align-items: stretch; }

    .u60p-btn-primary,
    .u60p-btn-ghost { justify-content: center; }

    .u60p-hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
}


/* ===== ARTICLE CONTENT BOXES ===== */
.info-box {
    background: #e8f4f8;
    border-left: 4px solid #2196F3;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 28px 0;
}
.info-box h4 { color: #1565C0; font-size: 1.1em; margin-bottom: 12px; }

.warning-box {
    background: #fff3e0;
    border-left: 4px solid #FF6F00;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 28px 0;
}
.warning-box h4 { color: #E65100; font-size: 1.1em; margin-bottom: 12px; }

.tip-box {
    background: #e8f5e9;
    border-left: 4px solid #43A047;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 28px 0;
}
.tip-box h4 { color: #2E7D32; font-size: 1.1em; margin-bottom: 12px; }

/* FAQ */
.faq-section { margin: 36px 0; }
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    background: #f5f5f5;
    padding: 16px 20px;
    margin: 0;
    font-size: 1em;
    font-weight: 600;
    color: #333;
}
.faq-question::before { content: "F: "; color: #1a73e8; font-weight: 700; }
.faq-answer {
    padding: 16px 20px;
    background: #fff;
    color: #555;
    line-height: 1.7;
}

/* Medical disclaimer */
.medical-disclaimer {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 32px 0;
    font-size: 0.9em;
    color: #666;
}

/* Author box */
p.autor-box {
    border-top: 2px solid #e0e0e0;
    padding-top: 16px;
    margin-top: 32px;
    color: #555;
    font-style: italic;
}
