:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --accent: #D4AF37;
    --accent-hover: #B8860B;
    --bg-light: #F8FAFC;
    --bg-dark: #020617;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --btn-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.3);
    --container-max: 1280px;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.py-xl { padding: 8rem 0; }
.py-lg { padding: 4rem 0; }
.center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    box-shadow: var(--btn-shadow);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

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

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-text {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-text:hover {
    color: var(--accent-hover);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo-img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

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

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

#langBtn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--accent);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.6) 100%);
    z-index: -1;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero-title .accent {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Trust Bar */
.trust-bar {
    background: var(--primary);
    padding: 3rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-family: 'Outfit';
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.trust-badges {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.trust-badges img {
    height: 50px;
    opacity: 0.7;
    filter: grayscale(1) brightness(2);
}

/* Sections General */
.section-tag {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.text-large {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.values-list {
    margin-top: 2rem;
    font-weight: 600;
    color: var(--accent);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-content p {
    color: var(--text-muted);
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent);
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--accent);
}

.footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-logo {
    height: 40px;
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.footer-badges img {
    height: 60px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 3.5rem; }
    .intro-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.5rem; }
    .py-xl { padding: 4rem 0; }
}

/* Blog Specific Styles */
.mt-lg { margin-top: 4rem; }
.mt-xl { margin-top: 6rem; }
.mt-md { margin-top: 2rem; }

.active { color: var(--accent) !important; }

/* Featured Post */
.featured-post {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    margin-top: 3rem;
}

.featured-img {
    height: 100%;
    min-height: 400px;
}

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

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-category {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.post-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Blog Page Title */
.blog-page .section-title {
    margin-bottom: 1rem;
}

/* Post Page Layout */
.post-container {
    max-width: 1000px;
}

.post-title {
    font-size: 3.5rem;
    margin-top: 1rem;
    line-height: 1.2;
}

.post-hero-img {
    width: 100%;
    border-radius: 24px;
    height: 500px;
    object-fit: cover;
}

.post-content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
}

.post-body {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

.post-body h2 {
    margin: 3rem 0 1.5rem;
    color: var(--accent);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body ul, .post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    border-left: 4px solid var(--accent);
    padding: 2rem;
    background: var(--glass-bg);
    font-size: 1.5rem;
    font-style: italic;
    margin: 3rem 0;
    border-radius: 0 16px 16px 0;
}

.lead {
    font-size: 1.4rem;
    font-weight: 500;
}

/* Sidebar */
.sidebar-card {
    padding: 2rem;
    position: sticky;
    top: 120px;
}

.sidebar-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.sidebar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-list li {
    background: var(--glass-bg);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    border: 1px solid var(--glass-border);
}

.emergency-notice {
    background: rgba(220, 38, 38, 0.1);
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
}

.emergency-notice a {
    color: #ef4444;
    font-weight: 700;
}

/* Adjustments */
@media (max-width: 991px) {
    .featured-post { grid-template-columns: 1fr; }
    .post-content-layout { grid-template-columns: 1fr; }
    .post-title { font-size: 2.5rem; }
    .post-hero-img { height: 350px; }
}
