@font-face {
    font-family: 'BPG Rioni Vera';
    src: url('../fonts/bpg-rioni-vera-webfont.eot');
    src: url('../fonts/bpg-rioni-vera-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/bpg-rioni-vera-webfont.woff2') format('woff2'),
         url('../fonts/bpg-rioni-vera-webfont.woff') format('woff'),
         url('../fonts/bpg-rioni-vera-webfont.ttf') format('truetype'),
         url('../fonts/bpg-rioni-vera-webfont.svg#bpg_glaho_arialregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6, .brand-text, .btn-main, .btn-main-xl, .btn-full {
    font-family: 'Montserrat', 'Noto Sans Georgian', sans-serif;
}

:root {
    --bg-color: #f8f8f8;
    --card-bg: #ffffff;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --border-color: #e2e8f0;
    --input-bg: #f9fafb;
    --navbar-bg: rgba(255, 255, 255, 0.85);
    --primary: #D4418E;
    --primary-dark: #b8357a;
    --accent: #E8912D;
    --accent-dark: #c97a22;
    --secondary: #4A2C6A;
    --color-success: #10b981;
    --color-danger: #ef4444;
    --color-warning: #d97706;
    --color-info: #D4418E;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.8);
    --shadow-soft: 0 10px 30px -5px rgba(90, 116, 232, 0.08);
    --shadow-hover: 0 20px 40px -5px rgba(90, 116, 232, 0.15);
    --combo-discount-color: #ef4444;
    --combo-border-color: #e2e8f0;
    --section-gap: 5rem;
}

body.dark-mode {
    --bg-color: #02030F;
    --card-bg: #2B2A4A;
    --text-dark: #A49AFF;
    --text-gray: #8B87CC;
    --border-color: #3A3960;
    --input-bg: #1A1938;
    --navbar-bg: rgba(2, 3, 15, 0.95);
    --glass-bg: rgba(43, 42, 74, 0.8);
    --glass-border: rgba(164, 154, 255, 0.15);
    --primary: #5A74E8;
    --primary-dark: #4A64D0;
    --accent: #F4D03F;
    --accent-dark: #D4B520;
    --secondary: #2B2A4A;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 10px 15px -3px rgba(90, 116, 232, 0.3);
    --combo-border-color: #3A3960;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Noto Sans Georgian', 'BPG Rioni Vera', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, rgba(2, 3, 15, 0.85) 0%, rgba(43, 42, 74, 0.85) 100%), url('../images/nebulon-bg.avif') center/cover no-repeat fixed;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.3s ease, color 0.3s ease;
}

body:not(.dark-mode) {
    background: var(--bg-color);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.w-100 { width: 100%; display: block; }
.mb-10 { margin-bottom: 10px !important; }
.mt-10 { margin-top: 10px !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-danger { color: var(--color-danger) !important; }
.text-accent-green { color: var(--color-success) !important; }
.text-warning { color: var(--accent); }
.text-gray-medium { color: var(--text-gray); font-size: 1rem; display: block; margin-top: 5px; }
.text-danger-small { color: var(--color-danger); font-size: 0.8rem; display: block; margin-top: 5px; }
.text-gray-small { color: var(--text-gray); font-size: 0.85rem; display: block; }
.text-center { text-align: center; }

/* ============================================
   FLOATING DECOR
   ============================================ */
.floating-decor {
    position: fixed;
    top: 70px;
    left: 20px;
    width: 450px;
    height: auto;
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
}

/* ============================================
   BACKGROUND BLOBS
   ============================================ */
.background-blobs { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; transition: 0.3s; }
.blob-1 { top: -100px; left: -100px; width: 500px; height: 500px; background: #5A74E8; animation: blobMove 10s infinite alternate; }
.blob-2 { bottom: -100px; right: -100px; width: 400px; height: 400px; background: #F4D03F; animation: blobMove 15s infinite alternate-reverse; }
body.dark-mode .blob { opacity: 0.12; }
body.dark-mode .blob-1 { background: #5A74E8; }
body.dark-mode .blob-2 { background: #F4D03F; }
@keyframes blobMove { from { transform: translate(0, 0); } to { transform: translate(70px, 70px); } }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 150px;
    width: auto;
    filter: brightness(1.2);
}

.logo-icon { font-size: 1.6rem; color: var(--primary); }

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

.nav-links > li > a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.nav-links > li > a:hover { color: var(--primary); }

.auth-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.hamburger { display: none; font-size: 1.5rem; color: var(--text-dark); }

/* Theme Toggle */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    font-size: 1.1rem;
}

.theme-toggle-btn:hover {
    background: var(--input-bg);
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-main {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-main:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 116, 232, 0.3);
}

@keyframes pulse-purple {
    0% { box-shadow: 0 0 0 0 rgba(90, 116, 232, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(90, 116, 232, 0); }
    100% { box-shadow: 0 0 0 0 rgba(90, 116, 232, 0); }
}

.btn-pulse { animation: pulse-purple 2s infinite; }

.btn-accent { background: var(--accent) !important; }
.btn-accent:hover { background: var(--accent-dark) !important; box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3); }

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

body.dark-mode .btn-outline { background: rgba(255, 255, 255, 0.05); border-color: var(--border-color); }
body.dark-mode .btn-outline:hover { background: rgba(129, 140, 248, 0.1); border-color: var(--primary); }

.btn-outline-primary {
    flex: 1;
    text-align: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px;
    border-radius: 8px;
    transition: 0.2s;
    background: var(--card-bg);
}

.btn-outline-primary:hover { background: var(--primary); color: white; }

.btn-outline-danger {
    flex: 1;
    border: 1px solid var(--color-danger);
    color: var(--color-danger);
    padding: 8px;
    border-radius: 8px;
    background: var(--card-bg);
    transition: 0.2s;
}

.btn-outline-danger:hover { background: var(--color-danger); color: white; }

.btn-full {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-full:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(90, 116, 232, 0.3);
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.btn-white:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

.btn-main-xl {
    background: var(--accent);
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(90, 116, 232, 0.5);
}

.btn-main-xl:hover {
    background: #4A64D0;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(90, 116, 232, 0.6);
}

.btn-search {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    flex-shrink: 0;
}

.btn-search:hover { background: var(--primary-dark); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: visible;
}

.hero-visual {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.hero-visual canvas {
    width: 100%;
    height: 100%;
}

.hero-text {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    height: 200px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(90, 116, 232, 0.4));
}

.badge-new {
    background: var(--card-bg);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

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

.hero p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.search-box {
    background: var(--card-bg);
    padding: 6px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--glass-border);
    margin: 0 auto 2rem;
    max-width: 600px;
    width: 100%;
}

.search-icon {
    padding: 0 12px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search-box input {
    border: none;
    outline: none;
    flex-grow: 1;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    color: var(--text-dark);
    padding: 8px 0;
    min-width: 0;
}

.hero-actions { margin-bottom: 2rem; }

.categories-wrapper {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cat-pill {
    background: var(--glass-bg);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    transition: 0.3s;
}

.cat-pill:hover, .cat-pill.active {
    background: var(--card-bg);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    margin-bottom: var(--section-gap);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-all {
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.view-all:hover { gap: 10px; }

/* ============================================
   GRIDS
   ============================================ */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ============================================
   ARTICLE CARDS
   ============================================ */
.article-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    height: 100%;
}

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

.article-img-holder {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.article-card:hover .article-img { transform: scale(1.05); }

.article-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-category {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.article-title {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.article-title:hover { color: var(--primary); }

.article-excerpt {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-gray);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 3.5rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ARTICLE DETAIL
   ============================================ */
.article-detail-wrapper {
    padding: 3rem 24px 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.article-detail-header { margin-bottom: 2rem; }

.article-detail-category {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.article-detail-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.article-detail-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.article-detail-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-detail-content p { margin-bottom: 1.5rem; }

/* ============================================
   AUTH BOXES
   ============================================ */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 3rem 0;
}

.auth-box {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 440px;
}

.auth-box .text-center { margin-bottom: 2rem; }
.auth-box .text-center i { font-size: 2.5rem; color: var(--primary); }
.auth-box h2 { margin: 1rem 0 0.5rem; font-size: 1.5rem; }

.form-group { margin-bottom: 1.2rem; }

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: 0.3s;
    background: var(--input-bg);
    color: var(--text-dark);
    font-family: inherit;
}

.form-control::placeholder { color: var(--text-gray); opacity: 0.7; }

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    background: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(90, 116, 232, 0.1);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
}

.badge-success { background: #dcfce7; color: #166534; }
.badge-default { background: var(--bg-color); color: var(--text-gray); }
.badge-info { background: rgba(90, 116, 232, 0.1); color: var(--primary); }
.badge-danger { background: #fee2e2; color: #991b1b; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navbar-bg);
    backdrop-filter: blur(15px);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.footer-logo-img { height: 40px; width: auto; margin-bottom: 1rem; }

.brand-col p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: 0.3s;
    font-size: 0.9rem;
}

.social-btn:hover { transform: translateY(-3px); color: white; }
.social-btn.facebook:hover { background: #1877f2; }
.social-btn.instagram:hover { background: #e4405f; }
.social-btn.youtube:hover { background: #ff0000; }
.social-btn.tiktok:hover { background: #000000; }

.newsletter-col {
    background: rgba(90, 116, 232, 0.08);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(90, 116, 232, 0.2);
}

body.dark-mode .newsletter-col { background: rgba(90, 116, 232, 0.1); border-color: rgba(90, 116, 232, 0.3); }
.newsletter-col h4 { color: var(--primary); margin-bottom: 8px !important; }

.newsletter-col > p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    background: var(--card-bg);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid var(--border-color);
}

.newsletter-form input {
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 14px;
    flex: 1;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 0.9rem;
    min-width: 0;
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-form button:hover { background: var(--primary-dark); }

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.85rem;
}

.legal-links a { color: #94a3b8; margin-left: 20px; }
.legal-links a:hover { color: var(--primary); }

/* ============================================
   NEWS LIST
   ============================================ */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-card {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.news-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.news-img-holder {
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.news-card:hover .news-img { transform: scale(1.05); }

.news-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.news-category {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.news-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card:hover .news-body h3 { color: var(--primary); }

.news-body p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(90, 116, 232, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

/* ============================================
   SOCIAL GRID
   ============================================ */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: white;
    transition: 0.3s;
    text-decoration: none;
}

.social-card:hover {
    transform: translateY(-4px);
    filter: brightness(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.social-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.social-name {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
}

.social-followers {
    font-size: 0.8rem;
    opacity: 0.85;
}

.social-arrow {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: 0.3s;
}

.social-card:hover .social-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(90, 116, 232, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    justify-content: center;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.service-duration {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ============================================
   VIDEO GRID
   ============================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

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

.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.25rem;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 8px;
    margin-bottom: 10px;
}

.platform-youtube { background: #ff0000; color: white; }
.platform-facebook { background: #1877f2; color: white; }
.platform-tiktok { background: #000000; color: white; }

.video-category {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 8px 0;
    line-height: 1.4;
}

.video-info p {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 10px;
}

.video-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-logo-text {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    filter: brightness(1.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html {
        zoom: 0.8;
    }

    .hamburger { display: block; }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--navbar-bg);
        flex-direction: column;
        padding: 2rem;
        transition: 0.4s;
        z-index: 999;
        gap: 20px;
        overflow-y: auto;
    }

    .nav-links.active { left: 0; }

    .auth-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--border-color);
    }

    .auth-actions .btn-outline,
    .auth-actions .btn-main { width: 100%; text-align: center; justify-content: center; }

    .hero { padding: 3rem 0 2rem; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }

    .grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-col { align-items: center; }
    .brand-col p { max-width: 100%; }
    .footer-logo-img { margin: 0 auto 1rem; display: block; }
    .social-links { justify-content: center; }
    .newsletter-form { max-width: 100%; }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-links a { margin: 0 10px; }

    .search-box { flex-direction: column; padding: 10px; border-radius: 20px; }
    .btn-search { width: 100%; margin-top: 8px; border-radius: 12px; }

    .page-header h1 { font-size: 2rem; }

    .news-card { flex-direction: column; }
    .news-img-holder { width: 100%; height: 200px; }
}

@media (max-width: 480px) {
    body { font-size: 14px; }
    input, textarea, select { font-size: 16px !important; }

    .hero h1 { font-size: 1.7rem; }
    .section-header h2 { font-size: 1.2rem; }
    .card-body { padding: 1rem; }
    .article-body { padding: 1rem; }
    .auth-box { padding: 1.5rem; }
}
