/* ==========================================================================
   RANA LUXURY MODERN LIGHT DESIGN SYSTEM - CSS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Brand Accent Colors */
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-hover: #b45309;
    --primary-light: #fef3c7;
    --primary-glow: rgba(245, 158, 11, 0.25);
    
    --navy-dark: #0f172a;
    --navy-blue: #1e3a8a;
    --accent: #2563eb;
    --accent-light: #eff6ff;
    
    --success: #10b981;
    --whatsapp: #25d366;
    
    /* LIGHT MODE PALETTE */
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-subtle: #f1f5f9;
    --bg-alt: #e2e8f0;
    
    /* Text Colors */
    --text-main: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* Borders & Shadows */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-glow: rgba(245, 158, 11, 0.4);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.2);
    
    --font-family: 'Alexandria', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* BASE RESETS */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.75;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 20px;
}

.section-padding {
    padding-block: 85px;
}

@media (max-width: 768px) {
    .section-padding {
        padding-block: 50px;
    }
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-dark) !important; }
.text-muted { color: var(--text-muted) !important; }

.section-title-wrap {
    margin-bottom: 48px;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fde68a;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1.35;
    color: var(--text-main);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary-dark);
    background: linear-gradient(135deg, #d97706, #b45309);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin-inline: auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.45);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff !important;
}

.btn-outline {
    background: #ffffff;
    color: var(--text-main) !important;
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    background: var(--bg-subtle);
    border-color: var(--primary);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42);
    color: #ffffff !important;
}

/* HEADER & NAVBAR */
.top-bar {
    background: #0f172a;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
}

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

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.site-logo img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
    padding: 6px 0;
    position: relative;
}

.nav-item:hover, .nav-item.active {
    color: var(--primary-dark);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 2.5px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION - LIGHT MODE */
.hero-section {
    position: relative;
    padding-block: 85px 75px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fef9ee 50%, #eff6ff 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: #fef3c7;
    border: 1.5px solid #fde68a;
    color: #92400e;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 22px;
}

.hero-title span {
    color: var(--primary-dark);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fef3c7;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid #fde68a;
}

.hero-feat-text h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
}

.hero-feat-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-card-media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid #ffffff;
}

.hero-card-media img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-card-media:hover img {
    transform: scale(1.03);
}

.hero-floating-stat {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.floating-stat-icon {
    font-size: 2.2rem;
    color: var(--primary-dark);
}

.floating-stat-info h5 {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--text-main);
}

.floating-stat-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CARDS & GRIDS */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
}

/* LIGHT MODE CARD */
.custom-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.custom-card:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: var(--shadow-lg);
}

.card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f1f5f9;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-category-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.4;
    transition: var(--transition);
}

.custom-card:hover .card-title {
    color: var(--primary-dark);
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-footer-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    margin-top: auto;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.read-more-link:hover {
    gap: 10px;
    color: var(--primary-hover);
}

/* WHY CHOOSE US */
.features-section {
    background: #ffffff;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    transition: var(--transition);
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.feature-icon-circle {
    width: 68px;
    height: 68px;
    margin-inline: auto;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    background: #fef3c7;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 1.5px solid #fde68a;
    transition: var(--transition);
}

.feature-box:hover .feature-icon-circle {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    transform: scale(1.08);
}

.feature-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* CTA BANNER - LUXURY LIGHT */
.cta-banner {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 65px 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: center;
    margin-block: 50px;
    color: #ffffff;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 32px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* FOOTER - CLEAN PROFESSIONAL DARK/NAVY */
.site-footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 75px;
    padding-bottom: 30px;
    font-size: 0.95rem;
    color: #94a3b8;
}

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

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(-4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 4px;
}

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

/* FLOATING ACTION BUTTONS */
.floating-actions {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none !important;
}

.floating-btn:hover {
    transform: scale(1.12);
}

.floating-wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-call {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.scroll-top-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* BREADCRUMB */
.breadcrumb-wrap {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--primary-dark);
    font-weight: 700;
}

.breadcrumb-item.active {
    color: var(--text-main);
    font-weight: 700;
}

.breadcrumb-sep {
    color: #cbd5e1;
    font-size: 0.8rem;
}

/* ARTICLE & SERVICE CONTENT STYLING */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
}

@media (max-width: 992px) {
    .content-layout { grid-template-columns: 1fr; }
}

.main-article {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .main-article { padding: 22px; }
}

.article-header h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.35;
    color: var(--text-main);
    margin-bottom: 18px;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 26px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.article-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-feature-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.article-feature-img img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.rich-content {
    font-size: 1.12rem;
    line-height: 2.05;
    color: #334155;
}

.rich-content p {
    margin-bottom: 24px;
}

.rich-content h2, .rich-content h3, .rich-content h4 {
    color: var(--text-main);
    font-weight: 800;
    margin-top: 38px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.rich-content h2 {
    font-size: 1.6rem;
    padding-right: 16px;
    border-right: 4px solid var(--primary-dark);
    background: #fef3c7;
    padding-block: 10px;
    border-radius: 0 8px 8px 0;
    color: #92400e;
}

.rich-content h3 {
    font-size: 1.35rem;
    padding-right: 12px;
    border-right: 3px solid var(--accent);
}

.rich-content ul, .rich-content ol {
    margin-bottom: 24px;
    padding-right: 24px;
}

.rich-content ul { list-style: disc; }
.rich-content ol { list-style: decimal; }

.rich-content li {
    margin-bottom: 12px;
}

.rich-content img {
    border-radius: var(--radius-md);
    margin-block: 22px;
}

/* SIDEBAR WIDGETS */
.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 26px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
}

.widget-post-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.widget-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget-post-img {
    width: 75px;
    height: 75px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

.widget-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-post-title {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 6px;
}

.widget-post-title:hover {
    color: var(--primary-dark);
}

.widget-post-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* SHARE BUTTONS */
.share-bar {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    margin-block: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}

.share-btn-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 700;
    color: #ffffff !important;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-share-wa { background: #25d366; }
.btn-share-fb { background: #1877f2; }
.btn-share-tw { background: #0f172a; }
.btn-share-copy { background: #64748b; }

/* COMMENTS */
.comments-section {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.comment-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 16px;
}

.comment-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* MOBILE MENU DRAWER */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 10000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.35s ease;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 868px) {
    .nav-links { display: none; }
    .mobile-nav-toggle { display: block; }
}
