﻿:root {
    --primary: #FFD700;
    --primary-dark: #E6C200;
    --primary-light: #FFE44D;
    --primary-on: #0a0a0a;
    --primary-alpha: rgba(255, 215, 0, 0.1);
    --bg: #0a0a0a;
    --bg-alt: #141414;
    --bg-card: #1e1e1e;
    --bg-header: rgba(10, 10, 10, 0.95);
    --border: #2a2a2a;
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --text-light: #d4d4d4;
    --hero-overlay: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.75) 100%);
    --transition: all 0.3s ease;
}

.hero-compact { height: 45vh; min-height: 320px; }


* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top Bar */
.top-bar {
    background: var(--bg-alt);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left a { color: var(--text-muted); }
.top-bar-left a:hover { color: var(--primary); }
.top-bar-left i { color: var(--primary); margin-right: 6px; }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a {
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-card); border-radius: 50%; color: var(--text-muted); font-size: 0.8rem;
}
.top-bar-right a:hover { background: var(--primary); color: var(--primary-on); }

/* Header */
.main-header {
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--border);
}
.main-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 42px; height: 42px;
    background: var(--primary); color: var(--primary-on);
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; font-size: 1.2rem;
}
.logo-text { font-size: 1.3rem; font-weight: 700; color: var(--text); }
.main-nav { display: flex; gap: 30px; }
.main-nav a { font-weight: 500; color: var(--text-light); position: relative; padding: 5px 0; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a.active::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 100%; height: 2px; background: var(--primary);
}
.mobile-toggle {
    display: none; background: none; border: none;
    color: var(--text); font-size: 1.5rem; cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block; padding: 12px 28px;
    border-radius: 6px; font-weight: 600; font-size: 0.95rem;
    cursor: pointer; border: 2px solid transparent;
    transition: var(--transition); text-align: center;
}
.btn-primary { background: var(--primary); color: var(--primary-on); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-light); border-color: var(--primary-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-danger { background: #dc3545; color: white; border-color: #dc3545; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* Hero */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: center; }
.hero-medium { height: 60vh; min-height: 420px; }
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero-fallback {
    position: absolute; inset: 0;
    background-size: cover; background-position: center; z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: var(--hero-overlay);
}
.hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 0 80px;
}
.hero-badge {
    display: inline-block; background: var(--primary); color: var(--primary-on);
    padding: 6px 16px; border-radius: 30px; font-size: 0.85rem;
    font-weight: 600; margin-bottom: 20px; width: fit-content;
}
.hero-content h1 {
    font-size: 3.5rem; font-weight: 800; line-height: 1.15;
    margin-bottom: 20px; max-width: 750px;
}
.hero-content p { font-size: 1.2rem; color: var(--text-light); max-width: 580px; margin-bottom: 35px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 2; text-align: center; color: var(--text-muted);
    font-size: 0.85rem; animation: heroBounce 2s infinite; cursor: pointer;
}
.hero-scroll i { display: block; margin-top: 8px; color: var(--primary); font-size: 1rem; }
@keyframes heroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Sections */
.section { padding: 80px 0; }
.section.bg-dark { background: var(--bg-alt); }
.section-tag {
    display: inline-block; color: var(--primary); font-weight: 600;
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.text-center { text-align: center; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat-card {
    text-align: center; padding: 30px 20px;
    background: var(--bg-card); border-radius: 12px;
    border: 1px solid var(--border); transition: var(--transition);
}
.stat-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.stat-icon { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat-label { color: var(--text-muted); margin-top: 5px; font-size: 0.95rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: 12px; overflow: hidden; }
.about-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; }
.about-badge {
    position: absolute; bottom: 20px; right: -20px;
    background: var(--primary); color: var(--primary-on);
    padding: 20px 25px; border-radius: 12px; text-align: center;
}
.badge-number { display: block; font-size: 2rem; font-weight: 800; }
.badge-text { font-size: 0.85rem; font-weight: 600; }
.about-text h2 { font-size: 2rem; margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 20px; }
.about-features { margin: 25px 0; }
.about-features li { padding: 8px 0; color: var(--text-light); }
.about-features i { color: var(--primary); margin-right: 10px; }
.about-content { color: var(--text-muted); line-height: 1.8; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card {
    background: var(--bg-card); border-radius: 12px; padding: 35px 25px;
    border: 1px solid var(--border); transition: var(--transition);
}
.service-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.service-icon {
    width: 60px; height: 60px; background: var(--primary-alpha);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary); margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 15px; }
.service-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; }
.service-link i { margin-left: 5px; transition: var(--transition); }
.service-link:hover i { margin-left: 10px; }
.service-card-full { padding: 0; overflow: hidden; }
.service-image img { width: 100%; height: 200px; object-fit: cover; }
.service-body { padding: 25px; }

/* CTA */
.cta-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--border) 100%);
    border: 1px solid var(--border); border-radius: 16px;
    padding: 60px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 300px; height: 300px; background: var(--primary-alpha);
    border-radius: 50%;
}
.cta-box h2 { font-size: 2rem; margin-bottom: 15px; position: relative; }
.cta-box p { color: var(--text-muted); margin-bottom: 25px; position: relative; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
    position: relative; border-radius: 10px; overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay {
    position: absolute; inset: 0; background: rgba(10,10,10,0.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-overlay span { color: var(--primary); font-weight: 600; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-tabs { display: flex; gap: 10px; margin-bottom: 30px; justify-content: center; }
.tab-btn {
    padding: 10px 25px; background: var(--bg-card); border: 1px solid var(--border);
    color: var(--text-muted); border-radius: 6px; cursor: pointer; font-weight: 500;
    transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--primary); color: var(--primary-on); border-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.video-card video { width: 100%; border-radius: 10px; }
.video-card h4 { margin-top: 10px; color: var(--text-light); }

/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
    flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 80vh; border-radius: 8px; }
.lightbox p { color: var(--primary); margin-top: 15px; font-size: 1.1rem; }
.lightbox-close {
    position: absolute; top: 20px; right: 30px;
    background: none; border: none; color: var(--text);
    font-size: 2.5rem; cursor: pointer;
}

/* Page Hero */
.page-hero {
    background: var(--bg-alt); padding: 60px 0;
    border-bottom: 3px solid var(--primary);
}
.page-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
.breadcrumb { color: var(--text-muted); font-size: 0.9rem; }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.value-card {
    text-align: center; padding: 35px 20px;
    background: var(--bg-card); border-radius: 12px; border: 1px solid var(--border);
}
.value-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-items { margin-top: 30px; }
.contact-item { display: flex; gap: 15px; margin-bottom: 25px; }
.contact-item i {
    width: 50px; height: 50px; background: var(--primary-alpha);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.2rem; flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 5px; }
.contact-item p { color: var(--text-muted); }
.contact-form-wrap {
    background: var(--bg-card); padding: 40px; border-radius: 12px;
    border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-light); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 16px; background: var(--bg-alt);
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--text); font-family: inherit; font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--primary);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.map-container { margin-top: 30px; border-radius: 10px; overflow: hidden; }
.map-container iframe { width: 100%; height: 250px; border: none; }

/* Alerts */
.alert { padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(40,167,69,0.15); border: 1px solid #28a745; color: #28a745; }
.alert-error { background: rgba(220,53,69,0.15); border: 1px solid #dc3545; color: #dc3545; }

/* Footer */
.main-footer { background: var(--bg-alt); padding: 60px 0 0; border-top: 3px solid var(--primary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
.footer-col h3 { font-size: 1.3rem; margin-bottom: 15px; }
.footer-col h4 { color: var(--primary); margin-bottom: 15px; font-size: 1rem; }
.footer-col p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-col ul li { padding: 5px 0; }
.footer-col ul a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 10px; margin-top: 15px; }
.footer-social a {
    width: 36px; height: 36px; background: var(--bg-card);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: var(--text-muted); font-size: 0.85rem;
}
.footer-social a:hover { background: var(--primary); color: var(--primary-on); }
.footer-contact li { color: var(--text-muted); font-size: 0.9rem; padding: 6px 0; display: flex; gap: 10px; }
.footer-contact i { color: var(--primary); width: 16px; margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid var(--border); padding: 20px 0;
    text-align: center; color: var(--text-muted); font-size: 0.85rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px; z-index: 9999;
    width: 60px; height: 60px; background: #25D366; color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition); animation: waPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 30px; transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--primary); }
.testimonial-stars { color: var(--primary); margin-bottom: 15px; font-size: 0.9rem; }
.testimonial-stars .star-empty { color: var(--border); }
.testimonial-text { color: var(--text-light); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; color: var(--text); }
.testimonial-author span { font-size: 0.85rem; color: var(--text-muted); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-card { text-align: center; }
.team-image {
    width: 180px; height: 180px; margin: 0 auto 15px;
    border-radius: 50%; overflow: hidden; border: 3px solid var(--primary);
}
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.team-position { color: var(--primary); font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list-full { max-width: 900px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-question {
    width: 100%; padding: 18px 20px; background: var(--bg-card); border: none;
    color: var(--text); font-size: 1rem; font-weight: 600; text-align: left;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-family: inherit; transition: var(--transition);
}
.faq-question:hover, .faq-item.active .faq-question { background: var(--primary-alpha); color: var(--primary); }
.faq-question i { transition: var(--transition); font-size: 0.8rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 20px 18px; color: var(--text-muted); line-height: 1.7; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-grid-full { grid-template-columns: repeat(3, 1fr); }
.blog-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden; transition: var(--transition);
}
.blog-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.blog-image { display: block; height: 200px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-body { padding: 25px; }
.blog-date { font-size: 0.8rem; color: var(--primary); }
.blog-body h3 { margin: 10px 0; font-size: 1.15rem; }
.blog-body h3 a:hover { color: var(--primary); }
.blog-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; }
.blog-detail { max-width: 800px; margin: 0 auto; }
.blog-detail-image { width: 100%; border-radius: 12px; margin-bottom: 25px; }
.blog-meta { display: flex; gap: 20px; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 25px; }
.blog-meta i { color: var(--primary); margin-right: 5px; }
.blog-content { color: var(--text-light); line-height: 1.8; }
.blog-content h2, .blog-content h3 { color: var(--text); margin: 25px 0 15px; }
.blog-content p { margin-bottom: 15px; }
.blog-content img { max-width: 100%; border-radius: 8px; margin: 15px 0; }

/* Blog feed (homepage) */
.blog-feed-section { padding-top: 40px; padding-bottom: 60px; }
.blog-feed-list { display: flex; flex-direction: column; gap: 0; }
.blog-feed-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 20px 0; border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.blog-feed-item:first-child { padding-top: 0; }
.blog-feed-item:hover .blog-feed-title a { color: var(--primary); }
.blog-feed-thumb {
    flex-shrink: 0; width: 120px; height: 80px; border-radius: 8px;
    overflow: hidden; background: var(--bg-alt); display: block;
}
.blog-feed-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-feed-thumb-empty {
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1.5rem;
}
.blog-feed-body { flex: 1; min-width: 0; }
.blog-feed-date { font-size: 0.75rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.03em; }
.blog-feed-title { margin: 6px 0 8px; font-size: 1.15rem; font-weight: 700; line-height: 1.35; }
.blog-feed-title a { color: var(--text); }
.blog-feed-excerpt { color: var(--text-muted); font-size: 0.875rem; line-height: 1.55; margin: 0; }
.blog-feed-ad { padding: 16px 0; border-bottom: 1px solid var(--border); }
.blog-feed-empty { text-align: center; color: var(--text-muted); padding: 40px 0; }
.blog-feed-more-wrap { text-align: center; margin-top: 32px; }
.footer-grid-minimal { grid-template-columns: 2fr 1fr 1fr; }

/* Responsive */
@media (max-width: 992px) {
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-alt); flex-direction: column; padding: 20px; gap: 15px; border-bottom: 1px solid var(--border); }
    .main-nav.open { display: flex; }
    .mobile-toggle { display: block; }
    .header-cta { display: none; }
    .hero-content h1 { font-size: 2.2rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid, .team-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .hero-content h1 { font-size: 1.8rem; }
    .services-grid, .gallery-grid, .stats-grid, .values-grid { grid-template-columns: 1fr; }
    .footer-grid, .testimonials-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
    .blog-feed-item { flex-direction: column; gap: 12px; }
    .blog-feed-thumb { width: 100%; height: 160px; }
    .footer-grid-minimal { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .top-bar .container { flex-direction: column; gap: 5px; }
}

