/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #818cf8;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --green: #22c55e;
    --green-dark: #16a34a;
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --bg: #f8fafc;
    --bg-alt: #f1f5f9;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 20px rgba(15,23,42,0.08);
    --shadow-lg: 0 12px 40px rgba(15,23,42,0.12);
    --shadow-xl: 0 25px 60px rgba(15,23,42,0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Scroll Reveal ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Header ===== */
.header {
    background: rgba(248, 250, 252, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79,70,229,0.06);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(248, 250, 252, 0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79,70,229,0.06);
    box-shadow: 0 4px 30px rgba(15,23,42,0.1);
}
/* Inner pages always show solid grey header */
body.inner-page .header {
    background: rgba(248, 250, 252, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79,70,229,0.06);
}
.navbar { padding: 0.7rem 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; }
.nav-menu { justify-content: center; }
.logo a { display: inline-block; line-height: 0; }
.logo-img { height: 48px; width: auto; display: block; transition: var(--transition); mix-blend-mode: multiply; }
.logo-img:hover { transform: scale(1.05); }
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-menu a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem; transition: var(--transition); position: relative; padding: 4px 0; }
.nav-menu a::after { content: ''; position: absolute; width: 0; height: 2.5px; bottom: -2px; left: 0; background: var(--primary); border-radius: 2px; transition: width 0.3s ease; }
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.btn-nav { background: var(--primary); color: var(--white); padding: 10px 24px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: var(--transition); box-shadow: 0 4px 15px rgba(79,70,229,0.3); }
.btn-nav:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 25px rgba(79,70,229,0.4); }
.nav-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--dark); border-radius: 3px; transition: 0.3s; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; text-decoration: none; border-radius: 50px; font-weight: 600; transition: var(--transition); border: none; cursor: pointer; font-size: 0.95rem; text-align: center; justify-content: center; font-family: 'Poppins', sans-serif; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 20px rgba(79,70,229,0.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(79,70,229,0.45); }
.btn-secondary { background: var(--green); color: var(--white); box-shadow: 0 4px 20px rgba(34,197,94,0.35); }
.btn-secondary:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(34,197,94,0.45); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-3px); }
.btn-outline-large { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 15px 36px; font-size: 1.05rem; }
.btn-outline-large:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(79,70,229,0.35); }
.btn-large { padding: 16px 36px; font-size: 1.05rem; }

/* ===== Hero ===== */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%); }
.hero-bg-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; }
.hero-bg-slide.active { opacity: 1; }
.hero-background::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(15,23,42,0.82) 0%, rgba(79,70,229,0.6) 100%); z-index: 1; }
.hero-overlay { display: none; }
.hero-content { color: var(--white); text-align: center; z-index: 2; width: 100%; padding: 120px 0 60px; }
.hero-text h1 { font-size: 3.8rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.12; letter-spacing: -0.02em; }
.highlight { background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 2.5rem; opacity: 0.9; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.7; font-weight: 300; }
.hero-stats { display: flex; justify-content: center; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2.8rem; font-weight: 800; color: var(--accent); margin-bottom: 0.3rem; }
.stat-label { font-size: 0.95rem; opacity: 0.85; font-weight: 400; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; z-index: 2; }
.scroll-arrow { width: 28px; height: 28px; border: 2px solid rgba(255,255,255,0.5); border-top: none; border-left: none; transform: rotate(45deg); }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-12px); } 60% { transform: translateX(-50%) translateY(-6px); } }

/* ===== Trust Bar ===== */
.trust-bar { background: var(--white); padding: 24px 0; border-bottom: 1px solid var(--bg-alt); }
.trust-items { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-light); font-size: 0.92rem; font-weight: 500; }
.trust-item i { color: var(--primary); font-size: 1.1rem; }

/* ===== Section Headers ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 700; color: var(--dark); margin-bottom: 0.8rem; letter-spacing: -0.01em; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 550px; margin: 0 auto; }

/* ===== Services ===== */
.services-preview, .services-overview { padding: 100px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); transition: var(--transition); position: relative; border: 1px solid transparent; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(79,70,229,0.12); }
.service-card.featured { border: 2px solid var(--primary); transform: scale(1.03); }
.service-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.featured-badge { position: absolute; top: -12px; right: 20px; background: var(--primary); color: var(--white); padding: 5px 18px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.service-icon { width: 68px; height: 68px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.service-icon i { font-size: 1.5rem; color: var(--white); }
.service-card h3 { font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 0.8rem; }
.service-card p { color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.7; font-size: 0.93rem; }
.service-features { list-style: none; margin-bottom: 1.5rem; }
.service-features li { padding: 0.25rem 0; color: var(--text); position: relative; padding-left: 1.5rem; font-size: 0.9rem; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: bold; }
.service-link { color: var(--primary); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition); font-size: 0.9rem; }
.service-link:hover { gap: 1rem; color: var(--primary-dark); }

/* ===== Why Choose Us ===== */
.why-choose-us { padding: 100px 0; background: var(--white); }
.why-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-text h2 { font-size: 2.5rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.why-subtitle { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2.5rem; }
.why-features { margin-bottom: 2.5rem; }
.why-feature { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.why-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon i { font-size: 1.3rem; color: var(--white); }
.why-info h4 { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 0.4rem; }
.why-info p { color: var(--text-light); line-height: 1.6; font-size: 0.93rem; }
.why-visual { display: flex; align-items: center; justify-content: center; }
.visual-placeholder { background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%); border-radius: var(--radius); padding: 3rem; text-align: center; border: 2px dashed #cbd5e1; width: 100%; }
.visual-placeholder i { font-size: 3.5rem; color: var(--primary); margin-bottom: 1rem; }
.visual-placeholder h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 0.8rem; }
.visual-placeholder p { color: var(--text-light); font-size: 0.95rem; }

/* ===== Process Section ===== */
.process-section { padding: 100px 0; background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-step { text-align: center; position: relative; }
.process-number { width: 64px; height: 64px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0 auto 1.2rem; position: relative; z-index: 2; box-shadow: 0 4px 20px rgba(79,70,229,0.3); }
.process-step h4 { font-size: 1.1rem; font-weight: 600; color: var(--dark); margin-bottom: 0.5rem; }
.process-step p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
.process-connector { position: absolute; top: 32px; left: calc(50% + 40px); width: calc(100% - 80px); height: 2px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); z-index: 1; }
.process-step:last-child .process-connector { display: none; }

/* ===== Portfolio Preview / Carousel ===== */
.portfolio-preview { padding: 100px 0; background: var(--bg); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.portfolio-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); position: relative; }
.portfolio-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.portfolio-image { position: relative; height: 250px; overflow: hidden; }
.image-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; }
.image-placeholder i { font-size: 3rem; color: var(--white); opacity: 0.7; }
.portfolio-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: var(--white); padding: 2rem; transform: translateY(100%); transition: var(--transition); }
.portfolio-item:hover .portfolio-overlay { transform: translateY(0); }
.portfolio-overlay h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.4rem; }
.portfolio-overlay p { font-size: 0.88rem; opacity: 0.9; margin-bottom: 0.8rem; }
.portfolio-category { background: rgba(255,255,255,0.2); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.78rem; font-weight: 500; }
.portfolio-cta { text-align: center; margin-top: 2.5rem; }

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--bg); padding: 2.5rem; border-radius: var(--radius); border-left: 4px solid var(--primary); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-content { margin-bottom: 1.5rem; }
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-content p { color: var(--text); font-style: italic; line-height: 1.7; font-size: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.author-avatar i { color: var(--white); font-size: 1.1rem; }
.author-info h4 { font-weight: 600; color: var(--dark); margin-bottom: 0.1rem; font-size: 0.95rem; }
.author-info span { color: var(--text-light); font-size: 0.85rem; }

/* ===== CTA Section ===== */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: rgba(255,255,255,0.03); border-radius: 50%; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.cta-content p { font-size: 1.15rem; margin-bottom: 2.5rem; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.cta-buttons .btn { background: var(--white); color: var(--primary); border: 2px solid var(--white); }
.cta-buttons .btn:hover { background: transparent; color: var(--white); }
.cta-buttons .btn-secondary { background: var(--green); color: var(--white); border: 2px solid var(--green); }
.cta-buttons .btn-secondary:hover { background: transparent; color: var(--white); border-color: var(--white); }
.cta-features { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-feature { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: 0.92rem; }
.cta-feature i { color: var(--accent); }

/* ===== Footer ===== */
.footer { background: var(--dark); color: var(--white); padding: 70px 0 20px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-section h3, .footer-section h4 { margin-bottom: 1.5rem; }
.footer-section h3 { font-size: 1.4rem; color: var(--primary-light); }
.footer-section h4 { color: var(--primary-light); font-size: 1.05rem; }
.footer-section p { color: #94a3b8; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.92rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a { width: 40px; height: 40px; background: var(--dark-soft); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #94a3b8; text-decoration: none; transition: var(--transition); }
.social-links a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.7rem; }
.footer-section ul li a { color: #94a3b8; text-decoration: none; transition: var(--transition); font-size: 0.92rem; }
.footer-section ul li a:hover { color: var(--white); padding-left: 4px; }
.contact-item { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; color: #94a3b8; font-size: 0.92rem; }
.contact-item i { color: var(--primary-light); width: 18px; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 1.5rem; text-align: center; color: #64748b; font-size: 0.88rem; }
.footer-bottom a { color: var(--primary-light); text-decoration: none; }

/* ===== Floating WhatsApp ===== */
.floating-whatsapp { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.floating-whatsapp a { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: var(--green); color: var(--white); border-radius: 50%; font-size: 1.8rem; box-shadow: 0 6px 25px rgba(34,197,94,0.45); transition: var(--transition); text-decoration: none; }
.floating-whatsapp a:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 10px 35px rgba(34,197,94,0.55); }
.floating-whatsapp .wa-tooltip { position: absolute; right: 72px; top: 50%; transform: translateY(-50%); background: var(--dark); color: var(--white); padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
.floating-whatsapp:hover .wa-tooltip { opacity: 1; }

/* ===== Page Hero (inner pages) ===== */
.page-hero { min-height: 55vh; position: relative; display: flex; align-items: center; margin-top: 80px; }
.page-hero .hero-background { background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%); }
.page-hero .hero-background::after { background: linear-gradient(135deg, rgba(15,23,42,0.75) 0%, rgba(79,70,229,0.55) 100%); }
.page-hero-content { color: var(--white); text-align: center; z-index: 2; width: 100%; }
.page-hero-content h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; }
.page-hero-content p { font-size: 1.15rem; margin-bottom: 2rem; opacity: 0.9; }

/* ===== Portfolio Filters ===== */
.portfolio-filters { padding: 60px 0; background: var(--white); text-align: center; }
.filter-buttons { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; margin-top: 2rem; }
.filter-btn { background: transparent; color: var(--primary); border: 2px solid rgba(79,70,229,0.25); padding: 10px 22px; border-radius: 50px; cursor: pointer; transition: var(--transition); font-weight: 500; font-family: 'Poppins', sans-serif; font-size: 0.88rem; }
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(79,70,229,0.3); }

/* ===== Portfolio Gallery ===== */
.portfolio-gallery { padding: 60px 0 100px; background: var(--bg); }
.portfolio-masonry { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.portfolio-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.portfolio-card-image { height: 250px; position: relative; overflow: hidden; }
.portfolio-card-content { padding: 2rem; }
.portfolio-card-content h3 { color: var(--dark); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.portfolio-card-content p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.6; font-size: 0.93rem; }
.portfolio-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.portfolio-tag { background: var(--bg-alt); color: var(--primary); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.78rem; font-weight: 500; }

/* ===== Results Section ===== */
.results-section { padding: 100px 0; background: var(--white); }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.result-card { background: var(--bg); padding: 2.5rem; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); border-top: 4px solid var(--primary); }
.result-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.result-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.result-icon i { font-size: 1.8rem; color: var(--white); }
.result-number { font-size: 2.8rem; font-weight: 800; color: var(--primary); margin-bottom: 0.4rem; }
.result-label { color: var(--dark); font-weight: 600; font-size: 1rem; }

/* ===== About Page ===== */
.about-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%); }
.about-content { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.about-text h2 { color: var(--dark); font-size: 2.3rem; font-weight: 700; margin-bottom: 1rem; }
.about-text p { color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; font-size: 1.02rem; }
.about-image { height: 400px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.stats-section { background: var(--bg); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.stat-card { background: var(--white); padding: 2.5rem; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.stat-card-number { font-size: 2.8rem; font-weight: 800; color: var(--primary); margin-bottom: 0.4rem; }
.stat-card-label { color: var(--dark); font-weight: 600; font-size: 1rem; }
.team-section { padding: 100px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.team-card { background: var(--bg); padding: 2.5rem; border-radius: var(--radius); text-align: center; transition: var(--transition); border: 1px solid transparent; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(79,70,229,0.15); }
.team-avatar { width: 90px; height: 90px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.team-avatar i { font-size: 2.2rem; color: var(--white); }
.team-card h3 { color: var(--dark); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.4rem; }
.team-card .role { color: var(--primary); font-weight: 500; margin-bottom: 1rem; font-size: 0.92rem; }
.team-card p { color: var(--text-light); line-height: 1.6; font-size: 0.92rem; }

/* ===== Contact Page ===== */
.contact-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%); }
.quick-contact { background: var(--primary); color: var(--white); padding: 20px 0; }
.contact-banner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.contact-text h3 { margin-bottom: 0.3rem; font-size: 1.2rem; }
.contact-text p { opacity: 0.9; margin: 0; font-size: 0.92rem; }
.contact-buttons { display: flex; gap: 1rem; }
.contact-buttons .btn { background: var(--white); color: var(--primary); border: 2px solid var(--white); }
.contact-buttons .btn:hover { background: transparent; color: var(--white); }
.contact-content { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h2 { color: var(--dark); font-size: 2.3rem; font-weight: 700; margin-bottom: 2rem; }
.contact-item-large { display: flex; align-items: flex-start; gap: 1.5rem; margin-bottom: 1.5rem; padding: 1.8rem; background: var(--bg); border-radius: var(--radius); border-left: 4px solid var(--primary); transition: var(--transition); }
.contact-item-large:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-icon-large { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-large i { font-size: 1.3rem; color: var(--white); }
.contact-details-large h3 { color: var(--dark); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.4rem; }
.contact-details-large p { color: var(--text-light); margin-bottom: 0.3rem; font-size: 0.92rem; }
.contact-details-large a { color: var(--primary); text-decoration: none; font-weight: 500; }
.contact-details-large a:hover { text-decoration: underline; }
.contact-form { background: var(--bg); padding: 3rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form h3 { color: var(--dark); font-size: 1.6rem; font-weight: 600; margin-bottom: 2rem; text-align: center; }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; margin-bottom: 0.4rem; color: var(--dark); font-weight: 500; font-size: 0.92rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 16px; border: 2px solid var(--bg-alt); border-radius: var(--radius-sm); font-size: 0.95rem; transition: var(--transition); font-family: 'Poppins', sans-serif; background: var(--white); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(79,70,229,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit { text-align: center; margin-top: 1.5rem; }
.hours-section { background: var(--bg); padding: 80px 0; }
.hours-content { max-width: 600px; margin: 0 auto; text-align: center; }
.hours-content h2 { color: var(--dark); margin-bottom: 2rem; font-size: 2.3rem; }
.hours-table { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hours-row { display: flex; justify-content: space-between; padding: 1rem 2rem; border-bottom: 1px solid var(--bg-alt); transition: var(--transition); }
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: var(--bg); }
.day { font-weight: 500; color: var(--dark); }
.time { color: var(--text-light); font-weight: 500; }
.map-section { padding: 100px 0; background: var(--bg); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.location-info h3 { color: var(--dark); font-size: 1.6rem; font-weight: 600; margin-bottom: 2rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.info-item i { color: var(--primary); font-size: 1.1rem; margin-top: 0.2rem; width: 20px; }
.info-item p { font-size: 1rem; color: var(--text); margin: 0; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); height: 400px; }
.map-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); text-align: center; padding: 2rem; }
.map-placeholder i { font-size: 3.5rem; margin-bottom: 1rem; }
.map-placeholder h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.map-placeholder p { margin-bottom: 1rem; opacity: 0.9; }

/* ===== Privacy ===== */
.privacy-content { padding: 80px 0; background: var(--white); }
.privacy-text { max-width: 800px; margin: 0 auto; line-height: 1.8; }
.privacy-text h2 { color: var(--dark); margin: 2rem 0 1rem; font-size: 1.4rem; border-bottom: 2px solid var(--primary); padding-bottom: 0.5rem; }
.privacy-text p { color: var(--text-light); margin-bottom: 1rem; }
.privacy-text ul { margin: 1rem 0 1.5rem 2rem; color: var(--text-light); }
.privacy-text li { margin-bottom: 0.5rem; }
.contact-info-box { background: var(--bg); padding: 1.5rem; border-radius: var(--radius-sm); border-left: 4px solid var(--primary); margin: 1.5rem 0; }
.contact-info-box p { margin-bottom: 0.5rem; color: var(--dark); font-weight: 500; }
.contact-info-box i { color: var(--primary); margin-right: 0.5rem; width: 20px; }
.policy-footer { background: var(--dark); color: var(--white); padding: 1.5rem; border-radius: var(--radius-sm); margin-top: 2rem; }
.policy-footer p { color: var(--white); margin: 0; font-style: italic; }

/* ===== Portfolio Image Gallery ===== */
.portfolio-masonry-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; box-shadow: var(--shadow); transition: var(--transition); }
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); padding: 2.5rem 1rem 1rem; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; font-size: 0.92rem; }

/* ===== Lightbox ===== */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.94); z-index: 9999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: 10px; object-fit: contain; }
.lightbox-caption { color: var(--white); margin-top: 1rem; font-size: 1.05rem; font-weight: 500; }
.lightbox-close { position: absolute; top: 20px; right: 30px; background: none; border: none; color: var(--white); font-size: 2.5rem; cursor: pointer; z-index: 10000; line-height: 1; transition: transform 0.2s; }
.lightbox-close:hover { transform: scale(1.2); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: var(--white); font-size: 1.4rem; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }

/* ===== Home Carousel ===== */
.carousel-wrapper { position: relative; margin-bottom: 3rem; overflow: hidden; }
.carousel-track-container { overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; transition: transform 0.5s ease; gap: 1rem; }
.carousel-slide { min-width: calc(33.333% - 0.67rem); flex-shrink: 0; border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: var(--white); padding: 2rem 1rem 0.8rem; font-weight: 600; font-size: 0.88rem; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.92); border: none; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.12); transition: var(--transition); color: var(--primary); font-size: 1rem; }
.carousel-btn:hover { background: var(--primary); color: var(--white); transform: translateY(-50%) scale(1.1); }
.carousel-btn-prev { left: 12px; }
.carousel-btn-next { right: 12px; }

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .nav-container { display: flex; justify-content: space-between; }
    .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: var(--white); width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.08); padding: 2rem 0; gap: 1rem; justify-content: flex-start; }
    .nav-menu.active { left: 0; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-stats { gap: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .why-content { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured { transform: none; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-features { flex-direction: column; align-items: center; gap: 0.8rem; }
    .section-header h2 { font-size: 2rem; }
    .why-text h2, .cta-content h2 { font-size: 2rem; }
    .page-hero-content h1 { font-size: 2.3rem; }
    .portfolio-masonry, .portfolio-masonry-gallery { grid-template-columns: 1fr; }
    .filter-buttons { flex-direction: column; align-items: center; gap: 0.5rem; }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-banner { flex-direction: column; text-align: center; gap: 1rem; }
    .contact-buttons { justify-content: center; }
    .location-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .hours-row { flex-direction: column; text-align: center; gap: 0.3rem; }
    .trust-items { gap: 1.5rem; }
    .trust-item { font-size: 0.85rem; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .process-connector { display: none; }
    .carousel-slide { min-width: calc(50% - 0.5rem); }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.1rem; }
    .floating-whatsapp .wa-tooltip { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-text h1 { font-size: 2rem; }
    .stat-number { font-size: 2rem; }
    .service-card, .testimonial-card { padding: 2rem; }
    .why-feature { flex-direction: column; text-align: center; gap: 0.8rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .page-hero-content h1 { font-size: 1.8rem; }
    .portfolio-card-content { padding: 1.5rem; }
    .results-grid { grid-template-columns: 1fr; }
    .result-card { padding: 2rem; }
    .contact-form { padding: 2rem; }
    .contact-item-large { padding: 1.5rem; flex-direction: column; text-align: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { padding: 2rem; }
    .team-card { padding: 2rem; }
    .map-placeholder { padding: 1.5rem; }
    .process-steps { grid-template-columns: 1fr; }
    .carousel-slide { min-width: 100%; }
    .portfolio-masonry-gallery { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .gallery-item { border-radius: 8px; }
    .privacy-text { padding: 0 1rem; }
    .privacy-text h2 { font-size: 1.3rem; }
    .floating-whatsapp a { width: 52px; height: 52px; font-size: 1.5rem; }
}

/* ===== Fix: Stop hero background bleed on inner pages ===== */
.page-hero .hero-background {
    position: absolute;
    transform: none !important;
    overflow: hidden;
}

.page-hero .hero-bg-slide {
    background-attachment: scroll;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.page-hero {
    overflow: hidden;
}

/* Logo transparent via blend mode */
