/* Custom CSS Properties */
:root {
    --clr-bg-base: #0B1120;
    --clr-bg-surface: #1E293B;
    --clr-bg-card: #0F172A;
    --clr-primary: #FACC15;
    --clr-primary-hover: #EAB308;
    --clr-accent: #3B82F6;
    --clr-success: #25D366; /* WhatsApp Green */
    --clr-text-main: #F8FAFC;
    --clr-text-muted: #94A3B8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/* Base Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-base);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.bg-darker { background: var(--clr-bg-surface); }
.bg-surface { background: var(--clr-bg-card); }
.text-center { text-align: center; }
.text-muted { color: var(--clr-text-muted); }
.text-primary { color: var(--clr-primary); }
.text-white { color: #fff; }
.text-sm { font-size: 0.85rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 600px; }
.rounded { border-radius: 8px; }
.p-2 { padding: 1rem; }
.d-block { display: block; margin-bottom: 0.5rem; }

/* Buttons */
.btn {
    display: inline-block; padding: 0.75rem 1.5rem; border-radius: 4px;
    font-weight: 600; text-align: center; cursor: pointer; transition: all var(--transition-base);
    border: none; font-size: 1rem;
}
.btn-primary { background-color: var(--clr-primary); color: #000; }
.btn-primary:hover { background-color: var(--clr-primary-hover); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3); }
.btn-secondary { background-color: transparent; color: var(--clr-primary); border: 2px solid var(--clr-primary); }
.btn-secondary:hover { background-color: rgba(250, 204, 21, 0.1); transform: translateY(-2px); }
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-block { display: block; width: 100%; padding: 1rem; }
.btn-text { color: var(--clr-primary); font-weight: 600; font-size: 0.95rem; }
.btn-text:hover { color: #fff; }

/* Top Bar */
.top-bar {
    background: #05080F;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-contact a, .top-social a {
    color: var(--clr-text-muted);
    margin-right: 1.5rem;
}
.top-contact a:hover, .top-social a:hover {
    color: var(--clr-primary);
}
.top-social a i.fa-whatsapp {
    color: var(--clr-success);
}

/* Navbar */
#navbar {
    position: fixed; top: 34px; left: 0; width: 100%; z-index: 1000;
    transition: all var(--transition-base); padding: 1rem 0;
    background: rgba(11, 17, 32, 0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
#navbar.scrolled {
    top: 0; padding: 0.8rem 0; box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.logo span { color: var(--clr-primary); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links > li > a { font-weight: 500; color: var(--clr-text-main); font-size: 0.95rem; padding: 0.5rem 0; }
.nav-links a:hover { color: var(--clr-primary); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; background: var(--clr-bg-card);
    min-width: 220px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all 0.2s ease; padding: 0.5rem 0;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 0.75rem 1.5rem; color: var(--clr-text-muted); font-size: 0.9rem; }
.dropdown-menu li a:hover { background: rgba(255,255,255,0.05); color: var(--clr-primary); }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 100px; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: zoomOut 20s infinite alternate linear; }
@keyframes zoomOut { from { transform: scale(1.1); } to { transform: scale(1); } }
.hero-bg .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(11,17,32,0.95) 0%, rgba(15,23,42,0.85) 100%); }
.hero-content { max-width: 800px; text-align: center; animation: fadeInDown 1s ease; margin: 0 auto; }
.badge { display: inline-block; padding: 0.5rem 1rem; background: rgba(250, 204, 21, 0.1); color: var(--clr-primary); border-radius: 50px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin-bottom: 1.5rem; border: 1px solid rgba(250, 204, 21, 0.2); }
.hero h1 { font-size: 4rem; font-weight: 800; margin-bottom: 1.5rem; }
.hero h1 span { color: var(--clr-primary); display: block; }
.hero p { font-size: 1.2rem; color: var(--clr-text-muted); margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem;}
.hero-reviews { display: flex; align-items: center; justify-content: center; gap: 1rem; font-size: 0.9rem; color: var(--clr-text-muted); }
.hero-reviews .stars { color: var(--clr-primary); }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* Client Logos */
.client-logos { padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); background: var(--clr-bg-base); }
.logo-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; opacity: 0.6; }
.logo-item { font-size: 1.5rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; color: #fff;}
.logo-grid:hover .logo-item { transition: opacity 0.3s; }
.logo-item:hover { opacity: 1 !important; color: var(--clr-primary); }

/* Section Header */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header h2 span { color: var(--clr-primary); }
.section-header p { color: var(--clr-text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: var(--clr-bg-card); padding: 2.5rem 2rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); transition: all var(--transition-base); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--clr-primary); transform: scaleX(0); transform-origin: left; transition: transform var(--transition-base); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: rgba(250, 204, 21, 0.2); }
.service-card:hover::before { transform: scaleX(1); }
.icon-wrapper { width: 60px; height: 60px; background: rgba(250, 204, 21, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--clr-primary); margin-bottom: 1.5rem; transition: all var(--transition-base); }
.service-card:hover .icon-wrapper { background: var(--clr-primary); color: #000; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.service-card p { color: var(--clr-text-muted); font-size: 0.95rem; }

/* Industries Flex */
.industry-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.industry-tag { padding: 1rem 2rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; font-weight: 500; font-size: 1.1rem; transition: all 0.3s ease; }
.industry-tag:hover { background: var(--clr-primary); color: #000; transform: translateY(-3px); }

/* Case Studies */
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.case-card { background: var(--clr-bg-surface); padding: 2.5rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
.case-metric { font-size: 3rem; font-weight: 800; color: var(--clr-primary); font-family: var(--font-heading); line-height: 1; margin-bottom: 1rem; }
.case-card h4 { font-size: 1.3rem; margin-bottom: 1rem; }
.case-card p { color: var(--clr-text-muted); margin-bottom: 1.5rem; }

/* About Section */
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.experience-badge { position: absolute; bottom: -20px; right: -20px; background: var(--clr-primary); color: #000; padding: 1.5rem; border-radius: 12px; display: flex; align-items: center; gap: 1rem; box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.experience-badge .number { font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); }
.experience-badge .text { font-size: 0.9rem; font-weight: 600; line-height: 1.2; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-text h2 span { color: var(--clr-primary); }
.about-text p { color: var(--clr-text-muted); font-size: 1.1rem; margin-bottom: 2rem; }
.stats-mini { display: flex; gap: 2rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem;}
.stat-mini h3 { font-size: 2rem; color: var(--clr-primary); display: inline-block; margin-bottom: 0.2rem;}
.stat-mini span { font-size: 2rem; font-weight: 800; color: var(--clr-primary);}
.stat-mini p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; color: var(--clr-text-main);}
.benefits-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; color: var(--clr-text-muted); }
.benefits-list li i { color: var(--clr-primary); margin-top: 5px; }
.benefits-list li strong { color: var(--clr-text-main); }

/* Testimonials */
.google-badge { display: inline-block; font-size: 1.2rem; }
.google-badge i { margin-right: 0.5rem; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--clr-bg-base); padding: 2rem; border-radius: 12px; position: relative; }
.testimonial-card::after { content: '\201D'; position: absolute; top: 10px; right: 20px; font-size: 5rem; color: rgba(255,255,255,0.05); font-family: serif; }
.testimonial-card .stars { color: var(--clr-primary); margin-bottom: 1rem; }
.testimonial-card p { font-size: 1.1rem; font-style: italic; margin-bottom: 1.5rem; position: relative; z-index: 1;}
.client-info strong { display: block; font-size: 1.1rem; }
.client-info span { color: var(--clr-text-muted); font-size: 0.9rem; }

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 1rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; background: var(--clr-bg-card); }
.faq-question { width: 100%; text-align: left; padding: 1.25rem 1.5rem; background: none; border: none; color: var(--clr-text-main); font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); }
.faq-question:hover { color: var(--clr-primary); }
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--clr-primary); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--clr-text-muted); }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem; max-height: 500px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.blog-card { background: var(--clr-bg-card); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s; }
.blog-card:hover { transform: translateY(-5px); }
.blog-content { padding: 1.5rem; }
.blog-date { color: var(--clr-primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; display: block; }
.blog-card h4 { font-size: 1.25rem; margin-bottom: 1rem; }
.blog-card p { color: var(--clr-text-muted); font-size: 0.95rem; }

/* Consultation / Contact */
.contact-container h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-container h2 span { color: var(--clr-primary); }
.contact-container p { color: var(--clr-text-muted); font-size: 1.1rem; }
.contact-card {
    background: var(--clr-bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    max-width: 550px;
    margin: 2rem auto 0;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.contact-card-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.contact-card-info p {
    font-size: 1.25rem;
    margin: 0;
}
.contact-card-info a {
    color: var(--clr-primary);
}
.contact-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Floating Chat */
.floating-chat { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: var(--clr-success); color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000; transition: transform 0.3s ease; }
.floating-chat:hover { transform: scale(1.1); color: #fff; }

/* Footer */
.footer { background: #05080F; padding-top: 4rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--clr-text-muted); margin: 1.5rem 0; max-width: 300px; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--clr-text-main); }
.social-links a:hover { background: var(--clr-primary); color: #000; transform: translateY(-3px); }
.footer h4 { font-size: 1.2rem; margin-bottom: 1.5rem; }
.footer-links ul li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--clr-text-muted); }
.footer-links a:hover { color: var(--clr-primary); padding-left: 5px; }
.footer-contact p { color: var(--clr-text-muted); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.footer-contact i { color: var(--clr-primary); }
.footer-bottom { text-align: center; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.05); color: var(--clr-text-muted); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .nav-cta { display: none; }
}
@media (max-width: 992px) {
    .about-container, .contact-grid { grid-template-columns: 1fr; }
    .about-image { max-width: 500px; margin: 0 auto; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .top-bar { display: none; }
    #navbar { top: 0; }
    .hero { padding-top: 80px; }
    .hero-btns { flex-direction: column; }
    .stats-mini { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 576px) {
    .footer-container { grid-template-columns: 1fr; }
}

/* Content Pages (Privacy Policy, Terms of Service) */
.content-page {
    padding-top: 150px;
    padding-bottom: 5rem;
}
.content-container-rich {
    max-width: 800px;
    margin: 0 auto;
    background: var(--clr-bg-card);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.content-container-rich h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}
.content-container-rich h1 span {
    color: var(--clr-primary);
}
.content-container-rich h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--clr-primary);
}
.content-container-rich p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.content-container-rich ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}
.content-container-rich ul li {
    color: var(--clr-text-muted);
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .content-container-rich {
        padding: 1.5rem;
    }
    .content-container-rich h1 {
        font-size: 2rem;
    }
}
