:root {
    --primary: #f2541d;
    --primary-dark: #d63f0d;
    --secondary: #162b47;
    --secondary-light: #233d60;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-dark); line-height: 1.6; background-color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.top-bar { background-color: var(--secondary); color: rgba(255,255,255,0.8); padding: 10px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.contact-info span { margin-right: 20px; display: inline-flex; align-items: center; gap: 8px; }
.contact-info i { color: var(--primary); }
.social-mini a { color: white; margin-left: 15px; font-size: 14px; }
.social-mini a:hover { color: var(--primary); }

.navbar { padding: 15px 0; background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; color: var(--secondary); letter-spacing: -0.5px; }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 500; color: var(--secondary); font-size: 15px; position: relative; }
.nav-links a:not(.btn-nav):hover, .nav-links a.active { color: var(--primary); }
.btn-nav { padding: 10px 25px; background-color: var(--secondary); color: var(--white) !important; border-radius: 50px; font-size: 14px; font-weight: 600; }
.btn-nav:hover { background-color: var(--primary); }
.burger { display: none; cursor: pointer; font-size: 24px; color: var(--secondary); }

.hero-section { height: 80vh; min-height: 550px; max-height: 850px; background: url('images/header.jpg') no-repeat center center/cover; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; }
.overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(22, 43, 71, 0.9), rgba(22, 43, 71, 0.65)); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; padding: 0 20px; }
.subtitle { display: block; color: var(--primary); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; font-size: 13px; }
.hero-content h1 { font-size: 52px; line-height: 1.2; margin-bottom: 25px; font-family: var(--font-heading); font-weight: 700; }
.hero-content p { font-size: 18px; margin-bottom: 40px; color: rgba(255,255,255,0.9); max-width: 650px; margin-left: auto; margin-right: auto; font-weight: 300; }
.hero-btns { display: flex; justify-content: center; gap: 20px; }

.scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); display: flex; flex-direction: column; align-items: center; font-size: 12px; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);} 40% {transform: translateX(-50%) translateY(-10px);} 60% {transform: translateX(-50%) translateY(-5px);} }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.btn { padding: 15px 35px; border-radius: 5px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; font-size: 15px; transition: all 0.3s ease; border: none; }
.btn-primary { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--secondary); }
.btn-dark { background: var(--secondary); color: var(--white); padding: 12px 30px; display: inline-block; border-radius: 5px; }
.btn-dark:hover { background: var(--secondary-light); }
.section-subtitle { color: var(--primary); font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; display: block; }
.section-title { color: var(--secondary); font-size: 36px; margin-bottom: 20px; font-weight: 700; line-height: 1.3; }
.text-center { text-align: center; }

.about-section { padding: 100px 0; }
.about-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-box { position: relative; }
.about-img-box .main-img { border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); width: 100%; }
.experience-badge { position: absolute; bottom: -30px; left: -30px; background: var(--secondary); color: white; padding: 25px; border-radius: 10px; text-align: center; border: 4px solid var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); min-width: 140px; }
.experience-badge .years { font-size: 38px; font-weight: 700; color: var(--primary); display: block; line-height: 1; }
.experience-badge .text { font-size: 13px; line-height: 1.4; }
.about-text-box p { color: var(--text-gray); margin-bottom: 20px; }
.check-list li { margin-bottom: 12px; display: flex; align-items: center; gap: 12px; color: var(--secondary); font-weight: 500; }
.check-list i { color: var(--primary); font-size: 18px; }

.services-section { padding: 100px 0; background-color: var(--light-bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 50px; }
.service-card { background: var(--white); padding: 40px 30px; border-radius: 12px; transition: 0.3s; border-bottom: 3px solid transparent; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-bottom-color: var(--primary); }
.icon-wrapper { width: 65px; height: 65px; background: rgba(242, 84, 29, 0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 25px; transition: 0.3s; }
.service-card:hover .icon-wrapper { background: var(--primary); color: white; }
.service-card h3 { margin-bottom: 15px; color: var(--secondary); font-size: 20px; }
.service-card p { color: var(--text-gray); font-size: 14px; line-height: 1.7; }

.stats-section { background: var(--secondary); padding: 70px 0; color: white; }
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; }
.stat-item h2 { font-size: 48px; color: var(--primary); margin-bottom: 5px; font-weight: 700; }
.stat-item p { font-size: 16px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }

.reviews-section { padding: 100px 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.review-card { background: var(--light-bg); padding: 35px; border-radius: 15px; position: relative; border: 1px solid #edf2f7; transition: 0.3s; }
.review-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.stars { color: #facc15; margin-bottom: 15px; font-size: 14px; }
.review-text { font-style: italic; color: var(--text-dark); margin-bottom: 25px; font-size: 15px; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 15px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 20px; }
.reviewer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.reviewer .details h5 { color: var(--secondary); font-size: 16px; font-weight: 600; margin-bottom: 2px; }
.reviewer .details span { font-size: 12px; color: var(--text-gray); }

.contact-section { padding: 100px 0; background: #f1f5f9; }
.contact-box { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.05); display: flex; flex-wrap: wrap; }
.contact-info-side { background: var(--secondary); color: white; padding: 60px 50px; flex: 1; min-width: 300px; display: flex; flex-direction: column; justify-content: center; }
.contact-info-side h3 { font-size: 28px; margin-bottom: 15px; }
.contact-info-side p { margin-bottom: 40px; opacity: 0.8; }
.info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.info-item i { font-size: 24px; color: var(--primary); margin-top: 5px; background: rgba(255,255,255,0.05); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.info-item strong { display: block; font-size: 14px; margin-bottom: 5px; color: white; }
.info-item p { margin-bottom: 0; font-size: 15px; color: rgba(255,255,255,0.7); }
.info-item small { color: rgba(255,255,255,0.5); font-size: 12px; }
.contact-form-side { padding: 60px 50px; flex: 1.5; min-width: 300px; }
.contact-form-side h3 { color: var(--secondary); margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid #e2e8f0; border-radius: 8px; font-family: inherit; font-size: 14px; transition: 0.3s; background: #f8fafc; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--secondary); background: #fff; box-shadow: 0 0 0 3px rgba(22, 43, 71, 0.1); }
.full-width { width: 100%; }

footer { background: var(--secondary); color: white; padding-top: 80px; border-top: 5px solid var(--primary); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-brand h2 { font-size: 28px; margin-bottom: 20px; font-weight: 800; }
.footer-brand h2 span { color: var(--primary); }
.footer-brand p { color: #94a3b8; max-width: 320px; margin-bottom: 25px; line-height: 1.6; }
.social-links a { display: inline-block; width: 40px; height: 40px; background: rgba(255,255,255,0.05); text-align: center; line-height: 40px; border-radius: 5px; margin-right: 10px; color: white; transition: 0.3s; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links h4, .footer-legal h4 { color: white; margin-bottom: 25px; font-size: 18px; font-weight: 600; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: #94a3b8; transition: 0.3s; }
.footer-links ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-legal p { color: #94a3b8; margin-bottom: 8px; font-size: 14px; }

.disclaimer-box { background-color: rgba(0, 0, 0, 0.3); border-top: 1px solid rgba(255, 255, 255, 0.15); border-bottom: 1px solid rgba(255, 255, 255, 0.15); padding: 25px 0; margin-top: 30px; }
.disclaimer-box p { font-size: 13px; color: #e2e8f0; line-height: 1.8; text-align: justify; font-weight: 400; }
.disclaimer-box strong { color: var(--primary); font-weight: 700; text-transform: uppercase; }
.disclaimer-box u { text-decoration-color: var(--primary); text-decoration-thickness: 2px; }
.footer-bottom { background: #0f1e33; padding: 20px 0; text-align: center; color: #94a3b8; font-size: 13px; }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 32px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); z-index: 1001; transition: 0.3s; }
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); }

.legal-header { background-color: var(--secondary); color: white; padding: 60px 0; text-align: center; }
.legal-header h1 { font-size: 36px; margin-bottom: 10px; }
.legal-header p { opacity: 0.8; font-size: 14px; }
.legal-container { max-width: 850px; margin: 50px auto; padding: 40px; background: #fff; border: 1px solid #eee; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); }
.legal-content h2 { color: var(--secondary); margin-top: 35px; margin-bottom: 15px; font-size: 20px; border-left: 4px solid var(--primary); padding-left: 15px; }
.legal-content p { color: #555; margin-bottom: 15px; line-height: 1.7; text-align: justify; }
.legal-content ul { margin-bottom: 20px; padding-left: 20px; list-style: circle; color: #555; }
.legal-content li { margin-bottom: 8px; }
.notice-box { background-color: #fff3cd; border: 1px solid #ffeeba; color: #856404; padding: 20px; border-radius: 5px; margin-bottom: 30px; font-size: 14px; }

@media (max-width: 992px) { .hero-content h1 { font-size: 42px; } .about-wrapper { grid-template-columns: 1fr; } .about-img-box { margin-bottom: 50px; } .experience-badge { left: 50%; transform: translateX(-50%); bottom: -25px; } .footer-top { grid-template-columns: 1fr; gap: 30px; } .contact-box { flex-direction: column; } .contact-info-side, .contact-form-side { padding: 40px; } }
@media (max-width: 768px) { .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: white; padding: 20px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.1); } .burger { display: block; } .top-bar-content { flex-direction: column; gap: 10px; text-align: center; } .hero-section { height: auto; padding: 120px 0; } .hero-content h1 { font-size: 32px; } .hero-btns { flex-direction: column; gap: 15px; } .btn { width: 100%; justify-content: center; } .stats-grid { flex-direction: column; gap: 40px; } .section-title { font-size: 28px; } }