/* =========================================
   PANDA BUILDER - FULL CLEAN CSS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #d4af37;
    --primary-hover: #b38e2d;
    --primary-glow: rgba(212, 175, 55, 0.24);
    --accent: #7dd3fc;
    --bg-dark: #05060f;
    --bg-card: rgba(18, 20, 30, 0.92);
    --glass-bg: rgba(22, 24, 40, 0.72);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f8f8f8;
    --text-muted: #b0b3bd;
    --transition: all 0.35s ease;
    --radius: 18px;
}

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

html, body { min-height: 100%; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: #0a0a0a;
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
textarea, input, select, button { font-family: inherit; }

/* === UTILITIES === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.py-section { padding: 100px 0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
    cursor: pointer; border: 2px solid transparent; transition: var(--transition);
    letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff; border-color: transparent;
    box-shadow: 0 8px 20px var(--primary-glow);
}
.btn-primary:hover {
    transform: translateY(-3px); box-shadow: 0 15px 30px var(--primary-glow); color: #fff;
}
.btn-outline {
    background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary); color: #fff; transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--primary-glow);
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* === HEADER === */
header#main-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 500;
    background: rgba(10,10,10,0.6); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0; transition: var(--transition);
}
header#main-header.scrolled {
    padding: 10px 0; background: rgba(10,10,10,0.92);
    box-shadow: 0 5px 30px rgba(0,0,0,0.6);
}
.navbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo-text {
    font-size: 1.8rem; font-weight: 900; letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 40%, var(--primary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-text span { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
    padding: 9px 16px; border-radius: 10px; font-weight: 500; font-size: 0.95rem;
    color: rgba(255,255,255,0.78); transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(125, 211, 252, 0.12); }
.nav-links .btn { padding: 10px 24px; font-size: 0.9rem; }

.hamburger { display: none; cursor: pointer; font-size: 1.6rem; color: #fff; background: none; border: none; }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); max-width: 550px; margin: 0 auto; }

/* === HERO === */
.hero {
    min-height: 100vh; display: flex; align-items: flex-start; position: relative;
    padding:   130px 0 40px; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center center;
    transform: scale(1.05); animation: slowZoom 20s alternate infinite linear; z-index: -2;
}
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(135deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.45) 50%, rgba(10,10,10,0.72) 100%);
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; animation: fadeUp 0.9s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } }

..hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,175,55,0.14); border: 1px solid rgba(212,175,55,0.35);
    color: var(--primary); padding: 10px 24px; border-radius: 50px;
    font-size: 0.95rem; font-weight: 700; margin-bottom: 28px;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 20px;
    background: linear-gradient(180deg, #fff 60%, rgba(255,255,255,0.65));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 14px;
    padding: 16px 32px; max-width: 400px; margin: 35px auto 0; gap: 0;
}
.hero-stat { text-align: center; flex: 1; }
.hero-stat span { display: block; font-size: 1.5rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 3px; }
.hero-stat p { font-size: 0.75rem; color: var(--text-muted); margin: 0; font-weight: 500; }
.hero-stat-divider { width: 1px; height: 35px; background: rgba(255,255,255,0.1); margin: 0 20px; flex-shrink: 0; }

/* === FEATURE CARDS === */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card {
    background: var(--bg-card); backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border); border-radius: var(--radius);
    padding: 45px 35px; text-align: center; transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-12px); border-color: rgba(212,175,55,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.feature-card:hover::after { opacity: 1; }
.feature-icon { font-size: 3rem; color: var(--primary); display: block; margin-bottom: 20px; filter: drop-shadow(0 0 12px var(--primary-glow)); }
.feature-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* === PACKAGE CARDS === */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.package-card {
    background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column; transition: var(--transition);
}
.package-card:hover { transform: translateY(-12px); border-color: var(--primary); box-shadow: 0 25px 60px rgba(0,0,0,0.7), 0 0 25px var(--primary-glow); }
.package-img-wrapper { width: 100%; height: 230px; overflow: hidden; position: relative; flex-shrink: 0; }
.package-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .package-img-wrapper img { transform: scale(1.08); }
.package-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, #191919, transparent); }
.package-content { padding: 30px; flex: 1; display: flex; flex-direction: column; background: #191919; }
.package-title { font-size: 1.6rem; margin-bottom: 8px; }
.package-price { font-size: 3rem; font-weight: 900; color: var(--primary); margin-bottom: 20px; line-height: 1; }
.package-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.package-desc { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.package-features { flex: 1; margin-bottom: 25px; display: flex; flex-direction: column; gap: 12px; }
.package-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.95rem; }
.package-features li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.package-btn { width: 100%; }
/* === ARTICLE CARDS === */
.article-section {
    background: radial-gradient(circle at top left, rgba(212,175,55,0.12), transparent 38%),
                radial-gradient(circle at bottom right, rgba(125,211,252,0.12), transparent 32%),
                linear-gradient(180deg, #050507 0%, #0e0f18 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.article-section::before {
    content: '';
    position: absolute;
    top: 16%;
    right: -160px;
    width: 420px;
    height: 420px;
    background: rgba(212,175,55,0.12);
    border-radius: 50%;
    filter: blur(64px);
}
.article-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(125,211,252,0.12);
    border-radius: 50%;
    filter: blur(52px);
}
.article-section .section-header { margin-bottom: 60px; position: relative; z-index: 1; }
.article-section .section-header h2 {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    letter-spacing: -0.05em;
}
.article-section .section-header p { max-width: 680px; margin: 0 auto; color: rgba(255,255,255,0.78); }
.article-section .article-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 18px;
}
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}
.article-card {
    background: linear-gradient(180deg, rgba(22,22,26,0.96), rgba(12,12,15,0.96));
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 35px 90px rgba(0,0,0,0.32);
}
.article-card:hover {
    transform: translateY(-14px);
    border-color: rgba(212,175,55,0.35);
    box-shadow: 0 45px 110px rgba(0,0,0,0.38);
}
.article-thumb {
    min-height: 270px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.article-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.6));
}
.article-content {
    padding: 34px 32px 34px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.article-content h3 {
    font-size: 1.75rem;
    line-height: 1.12;
    margin: 0;
    color: #fff;
}
.article-content p {
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}
.article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.article-tag {
    color: rgba(255,255,255,0.58);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.article-card .btn { align-self: flex-start; }

/* === BLOG PAGE === */
.blog-hero {
    padding: 100px 0 60px;
    background: radial-gradient(circle at 20% 25%, rgba(212,175,55,0.16), transparent 26%),
                radial-gradient(circle at 80% 40%, rgba(125,211,252,0.14), transparent 22%),
                linear-gradient(180deg, #050507 0%, #0b0c12 100%);
    position: relative;
    overflow: hidden;
}
.blog-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 45%);
    pointer-events: none;
}
.blog-hero-inner { position: relative; z-index: 1; text-align: center; }
.blog-hero .article-label { margin-bottom: 18px; }
.blog-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 20px;
    line-height: 1.02;
    color: #fff;
}
.blog-hero p { color: rgba(255,255,255,0.78); max-width: 760px; margin: 0 auto; font-size: 1.1rem; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.blog-card {
    background: rgba(12,12,18,0.95);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}
.blog-card:hover { transform: translateY(-10px); border-color: rgba(212,175,55,0.32); }
.blog-thumb { min-height: 240px; }
.blog-body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 18px; }
.blog-body h2 { font-size: 1.65rem; margin: 0; color: #fff; }
.blog-body p { color: rgba(255,255,255,0.78); line-height: 1.75; margin: 0; }
.blog-preview-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.blog-preview-footer span { color: rgba(255,255,255,0.6); font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; }
.blog-post { background: rgba(12,12,18,0.97); border: 1px solid rgba(255,255,255,0.08); border-radius: 32px; padding: 44px; box-shadow: 0 35px 90px rgba(0,0,0,0.3); }
.blog-post-header h2 { font-size: 2.35rem; margin-bottom: 14px; color: #fff; }
.blog-post-header p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.8; margin-bottom: 28px; }
.blog-post-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: start; }
.blog-post-image { min-height: 430px; border-radius: 28px; background-size: cover; background-position: center; position: relative; }
.blog-post-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.45)); }
.blog-post-text p { color: rgba(255,255,255,0.85); line-height: 1.9; margin-bottom: 24px; }
.blog-post-text ul { display: grid; gap: 14px; padding-left: 18px; }
.blog-post-text ul li { position: relative; color: rgba(255,255,255,0.82); font-size: 1rem; line-height: 1.8; padding-left: 30px; }
.blog-post-text ul li::before { content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--primary); }

@media (max-width: 980px) {
    .blog-post-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .article-section { padding: 70px 0 60px; }
    .article-grid { gap: 20px; }
    .article-thumb { min-height: 220px; }
    .blog-hero { padding: 70px 0 40px; }
    .blog-hero h1 { font-size: 2.8rem; }
    .blog-grid { gap: 22px; }
    .blog-post { padding: 30px 24px; }
}
/* === GALLERY SLIDER === */
.gallery-slider-wrapper { padding: 0 30px; overflow: visible; }
.gallery-slide-card { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; position: relative; }
.gallery-slide-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-slide-card:hover img { transform: scale(1.06); }
.gallery-slide-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 15px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff; font-size: 0.9rem; font-weight: 600;
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary) !important; background: rgba(10,10,10,0.7) !important;
    width: 44px !important; height: 44px !important; border-radius: 50% !important;
    border: 1px solid rgba(212,175,55,0.3) !important;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 0.9rem !important; font-weight: 900 !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* === PUBLIC GALLERY PAGE === */
.public-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }
.gallery-item { border-radius: 14px; overflow: hidden; aspect-ratio: 1; position: relative; cursor: pointer; border: 1px solid var(--glass-border); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.5);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; opacity: 0; transition: var(--transition);
}
.gallery-item-overlay i { font-size: 2.5rem; color: #fff; }
.gallery-item-overlay span { color: rgba(255,255,255,0.9); font-weight: 600; text-align: center; padding: 0 15px; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(0,0,0,0) 50%, rgba(212,175,55,0.06));
    border: 1px solid rgba(212,175,55,0.15); border-radius: 24px;
}
.cta-inner { text-align: center; padding: 80px 40px; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 15px; }

/* === MEGA FOOTER === */
footer { margin-top: 80px; }

.footer-cta {
    background: linear-gradient(135deg, rgba(212,175,55,0.16), rgba(125,211,252,0.08));
    border-top: 1px solid rgba(212,175,55,0.22); border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 55px 0;
}
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer-cta-title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 8px; }

.footer-main { background: #080808; padding: 70px 0 40px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 50px; }

.footer-col-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 22px; display: flex; align-items: center; gap: 8px; }
.footer-col-title i { color: var(--primary); }
.footer-desc { color: rgba(255,255,255,0.4); font-size: 0.92rem; line-height: 1.8; margin-top: 12px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { color: rgba(255,255,255,0.4); font-size: 0.92rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links li a i { font-size: 0.65rem; color: var(--primary); opacity: 0.6; }
.footer-links li a:hover { color: var(--accent); transform: translateX(4px); }

    .footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
    .footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.4); font-size: 0.92rem; }
    .footer-contact-list li i { color: var(--primary); margin-top: 3px; width: 16px; flex-shrink: 0; }
    .footer-contact-list li a { color: rgba(255,255,255,0.4); }
    .footer-contact-list li a:hover { color: var(--accent); }

.footer-bottom { background: rgba(0,0,0,0.5); border-top: 1px solid rgba(255,255,255,0.04); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,0.25); font-size: 0.87rem; }

.social-links { display: flex; gap: 10px; }
.social-links a {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.5); font-size: 1.1rem; transition: var(--transition);
}
.social-links a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 20px var(--primary-glow); }

/* === CONTACT FORM === */
.contact-section {
    background: var(--glass-bg); backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border); border-radius: var(--radius);
    padding: 50px; max-width: 800px; margin: 0 auto;
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--text-muted); font-size: 0.92rem; font-weight: 500; }
.form-control {
    width: 100%; padding: 14px 18px; background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 10px;
    color: var(--text-main); font-family: inherit; font-size: 1rem; transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); background: rgba(0,0,0,0.5); box-shadow: 0 0 16px var(--primary-glow); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control option { background: #1a1a1a; }

/* === ABOUT PAGE === */
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-box { position: relative; border-radius: var(--radius); }
.about-img-box::before { content: ''; position: absolute; inset: 0; border: 2px solid var(--primary); border-radius: var(--radius); transform: translate(-14px, -14px); z-index: 0; }
.about-img-box img { width: 100%; border-radius: var(--radius); position: relative; z-index: 1; box-shadow: 0 20px 60px rgba(0,0,0,0.8); }

/* === FLOATING WHATSAPP === */
.whatsapp-float {
    position: fixed; bottom: 35px; left: 35px; z-index: 400;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff; font-size: 2rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 25px rgba(37,211,102,0.5); transition: var(--transition);
}
.whatsapp-float:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 14px 35px rgba(37,211,102,0.65); color: #fff; }
.whatsapp-tooltip {
    position: absolute; left: 72px; background: #fff; color: #222;
    padding: 7px 14px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
    white-space: nowrap; opacity: 0; visibility: hidden; transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.whatsapp-tooltip::before {
    content: ''; position: absolute; left: -6px; top: 50%; transform: translateY(-50%);
    border: 6px solid transparent; border-right-color: #fff; border-left: 0;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }

/* === ADMIN FRONTEND TOOLBAR === */
.admin-edit-toolbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    background: linear-gradient(135deg, #1a1a1a, #111);
    border-bottom: 2px solid var(--primary);
    padding: 10px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 15px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.admin-edit-toolbar .toolbar-brand { font-weight: 700; color: var(--primary); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; }
.admin-edit-toolbar .toolbar-actions { display: flex; gap: 8px; flex-wrap: wrap; }
toolbar-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 16px; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
    cursor: pointer; border: 1px solid rgba(255,255,255,0.1); transition: var(--transition);
    background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.8);
    font-family: inherit; letter-spacing: 0.3px;
}
.toolbar-btn:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.2); }
.toolbar-btn.primary-btn { background: linear-gradient(135deg, var(--primary), var(--primary-hover)); color: #fff; border-color: transparent; box-shadow: 0 4px 12px var(--primary-glow); }

/* === PROFESSIONAL DESIGN OVERRIDES === */
body {
    background: radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 40%),
                linear-gradient(180deg, #050507 0%, #090a10 42%, #08090f 100%);
}

header#main-header {
    background: rgba(7, 8, 16, 0.82);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.navbar { gap: 18px; }
.nav-links a { padding: 10px 18px; color: rgba(255,255,255,0.72); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links .btn { padding: 12px 26px; }
.logo-text { font-size: 1.9rem; }

.hero { padding: 120px 0 100px; }
.hero-content { padding: 0 12px; }
.hero-title { font-size: clamp(3rem, 6vw, 5.4rem); line-height: 0.95; letter-spacing: -0.06em; }
.hero-subtitle { font-size: 1.15rem; max-width: 780px; color: rgba(255,255,255,0.78); }
.hero-badge { padding: 12px 24px; border-radius: 999px; font-size: 0.9rem; }
.hero-buttons .btn { min-width: 190px; }
.hero-buttons .btn-outline { border-color: rgba(255,255,255,0.22); color: #fff; }
.hero-buttons .btn-outline:hover { background: rgba(255,255,255,0.12); }
.hero-stats { max-width: 900px; margin-top: 40px; }
.hero-stat span { font-size: 1.75rem; }
.hero-stat p { color: rgba(255,255,255,0.65); }

.section-header { margin-bottom: 70px; }
.section-header::after {
    content: '';
    display: block;
    width: 64px;
    height: 4px;
    margin: 28px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212,175,55,0.95), rgba(212,175,55,0.2));
}

.feature-card {
    padding: 40px 35px;
    background: linear-gradient(180deg, rgba(28,28,34,0.96), rgba(18,18,24,0.95));
    border: 1px solid rgba(255,255,255,0.08);
}
.feature-icon { font-size: 3.2rem; }
.feature-card:hover { box-shadow: 0 30px 80px rgba(0,0,0,0.28); }

.package-card {
    border-radius: 32px;
    overflow: hidden;
    background: rgba(15,15,18,0.98);
    border: 1px solid rgba(255,255,255,0.08);
}
.package-img-wrapper { height: 260px; }
.package-content { padding: 32px; }
.package-title { font-size: 1.7rem; }
.package-price { color: var(--primary); }
.package-desc { font-size: 0.95rem; line-height: 1.85; }
.package-card:hover .package-img-wrapper img { transform: scale(1.12); }
.package-btn { margin-top: auto; }

.article-section { padding: 100px 0 80px; }
.article-card { border-radius: 28px; }
.article-thumb { min-height: 280px; }
.article-content { padding: 36px 32px; gap: 20px; }
.article-content h3 { font-size: 1.6rem; }
.article-content p { font-size: 1rem; }
.article-card:hover { transform: translateY(-10px); box-shadow: 0 32px 90px rgba(0,0,0,0.28); }

.blog-hero { padding: 110px 0 70px; }
.blog-hero h1 { font-size: clamp(3rem, 6vw, 5rem); }
.blog-grid { gap: 30px; }
.blog-card { border-radius: 28px; }
.blog-card:hover { box-shadow: 0 35px 95px rgba(0,0,0,0.3); }
.blog-body { padding: 30px; }
.blog-body h2 { font-size: 1.7rem; }
.blog-preview-footer { gap: 18px; }
.blog-post { padding: 48px; }
.blog-post-header h2 { font-size: 2.5rem; }
.blog-post-content { gap: 36px; }
.blog-post-image { min-height: 500px; }
.blog-post-text p { font-size: 1.05rem; }

.footer-cta { padding: 70px 0; background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); }
.footer-cta-title { font-size: clamp(1.75rem, 3vw, 2.4rem); }
.footer-main { padding: 75px 0 45px; }
.footer-grid { grid-template-columns: repeat(4, minmax(180px, 1fr)); gap: 40px; }
.footer-links li a, .footer-contact-list li { color: rgba(255,255,255,0.65); }
.footer-links li a:hover, .footer-contact-list li a:hover { color: var(--primary); }
.footer-bottom-inner { gap: 18px; }

.whatsapp-float { bottom: 35px; left: auto; right: 35px; }

.cta-inner { padding: 80px 40px; }
.cta-inner h2 { letter-spacing: -0.03em; }

@media (max-width: 1024px) {
    .hero { padding: 100px 0 70px; }
    .package-img-wrapper { height: 240px; }
    .blog-post-image { min-height: 420px; }
}

@media (max-width: 768px) {
    .hero { padding: 90px 0 70px; }
    .hero-title { font-size: 3rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .blog-post { padding: 34px 24px; }
    .blog-post-content { gap: 24px; }
    .blog-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: inline-flex; }
}

@media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .hero-title { font-size: 2.5rem; }
}

.toolbar-btn.primary-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 18px var(--primary-glow); }
.toolbar-btn.danger-btn { background: rgba(239,68,68,0.15); color: #ef4444; border-color: rgba(239,68,68,0.25); }
.toolbar-btn.danger-btn:hover { background: rgba(239,68,68,0.25); }

/* admin edit overlay on hover */
.admin-editable {
    position: relative; cursor: pointer;
}
.admin-editable::before {
    content: attr(data-edit-label);
    position: absolute; top: 10px; right: 10px; z-index: 100;
    background: var(--primary); color: #000; font-size: 0.75rem; font-weight: 700;
    padding: 4px 10px; border-radius: 20px; opacity: 0; transition: opacity 0.2s;
    pointer-events: none; white-space: nowrap;
}
.admin-editable::after {
    content: ''; position: absolute; inset: 0;
    border: 2px dashed transparent; border-radius: 8px; transition: border-color 0.2s;
    pointer-events: none;
}
.admin-editable:hover::before { opacity: 1; }
.admin-editable:hover::after { border-color: var(--primary); }

/* Admin Modal */
.admin-modal-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.admin-modal {
    background: #141414; border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px; width: 100%; max-width: 640px;
    max-height: 85vh; overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0,0,0,0.9);
    animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.88) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.admin-modal-header {
    padding: 22px 28px; border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: space-between;
}
.admin-modal-header h3 { font-size: 1.2rem; color: var(--primary); margin: 0; display: flex; align-items: center; gap: 10px; }
.admin-modal-close { background: none; border: none; color: rgba(255,255,255,0.4); font-size: 1.4rem; cursor: pointer; transition: var(--transition); }
.admin-modal-close:hover { color: #fff; }
.admin-modal-body { padding: 28px; }
.admin-modal-footer { padding: 20px 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; gap: 10px; justify-content: flex-end; }

/* === ADMIN PANEL SIDEBAR === */
.admin-sidebar {
    position: fixed; left: 0; top: 0; height: 100%; width: 270px;
    background: rgba(12, 12, 12, 0.98); backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    display: flex; flex-direction: column;
    padding: 25px 18px; z-index: 200;
    box-shadow: 5px 0 40px rgba(0,0,0,0.6);
}
.admin-sidebar .sidebar-logo { text-align: center; padding: 10px 0 25px; border-bottom: 1px solid rgba(255,255,255,0.05); margin-bottom: 20px; }
.admin-nav { display: flex; flex-direction: column; gap: 4px; }
.admin-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 18px; border-radius: 12px; font-size: 0.95rem; font-weight: 500;
    color: rgba(255,255,255,0.5); transition: var(--transition);
    border: 1px solid transparent;
}
.admin-nav a i { width: 18px; text-align: center; font-size: 1rem; }
.admin-nav a:hover, .admin-nav a.active {
    color: var(--primary); background: rgba(212,175,55,0.08);
    border-color: rgba(212,175,55,0.15);
}
.admin-nav .nav-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 10px 0; }

.admin-content { margin-left: 270px; padding: 40px; min-height: 100vh; }

/* Admin Tables */
.table-wrap { background: rgba(20,20,20,0.8); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; }
table { width: 100%; border-collapse: collapse; }
th { padding: 16px 20px; background: rgba(0,0,0,0.4); color: var(--text-muted); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; text-align: left; }
td { padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); color: rgba(255,255,255,0.8); font-size: 0.95rem; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

.badge { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; }
.badge-success { background: rgba(16,185,129,0.15); color: #10b981; border: 1px solid rgba(16,185,129,0.25); }
.badge-danger { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.25); }
.badge-warning { background: rgba(212,175,55,0.15); color: var(--primary); border: 1px solid rgba(212,175,55,0.25); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .admin-content { margin-left: 0; padding: 20px; }
    .admin-sidebar { transform: translateX(-100%); }
}
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.97); border-bottom: 1px solid var(--glass-border); padding: 20px; gap: 5px; }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { max-width: 100%; padding: 18px 20px; }
    .hero-stat span { font-size: 1.6rem; }
    .hero-stat-divider { margin: 0 15px; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .cta-inner { padding: 50px 20px; }
    .contact-section { padding: 30px 20px; }
}

