:root { --primary-color: #1e3a8a; --secondary-color: #ea580c; --text-color: #334155; --bg-light: #f8fafc; --white: #ffffff; --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1); --transition: all 0.3s ease-in-out; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { color: var(--text-color); background-color: var(--bg-light); line-height: 1.7; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
.top-header { background: var(--primary-color); color: var(--white); padding: 12px 5%; display: flex; justify-content: space-between; font-size: 14px; }
.top-header a { color: #fed7aa; font-weight: bold; }
.main-header { background: var(--white); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 30px; font-weight: 900; color: var(--primary-color); letter-spacing: -1px; } .logo span { color: var(--secondary-color); }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links li a { font-weight: 700; font-size: 16px; color: var(--primary-color); text-transform: uppercase; } 
.nav-links li a:hover { color: var(--secondary-color); }
.dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 250px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-radius: 8px; opacity: 0; visibility: hidden; transform: translateY(15px); transition: var(--transition); list-style: none; padding: 10px 0; z-index: 1001; border-top: 4px solid var(--secondary-color); }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { border-bottom: 1px solid #f1f5f9; } .dropdown-menu li a { display: block; padding: 15px 20px; color: var(--primary-color); font-weight: 600; }
.hero-slider { background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(15, 23, 42, 0.9)), url('tup-bg.jpg') center/cover; color: var(--white); text-align: center; padding: 130px 5%; display: flex; align-items: center; justify-content: center; min-height: 60vh; border-bottom: 6px solid var(--secondary-color); }
.slider-content { max-width: 800px; margin: 0 auto; } .hero-slider h1 { font-size: 52px; font-weight: 900; margin-bottom: 20px; }
.btn-primary { background: var(--secondary-color); color: var(--white); padding: 16px 40px; font-weight: 800; border-radius: 8px; box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3); display: inline-block; }
.section-title { font-size: 38px; color: var(--primary-color); margin-bottom: 50px; text-align:center; font-weight: 900; }
.why-us-section { background: var(--bg-light); padding: 100px 5%; }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.why-box { background: var(--white); padding: 40px; border-radius: 12px; box-shadow: var(--shadow); border-top: 5px solid var(--secondary-color); transition: var(--transition); } 
.services-section { padding: 100px 5%; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.service-card { background: var(--bg-light); padding: 50px 30px; border-radius: 16px; box-shadow: var(--shadow); text-align: center; border: 1px solid #e2e8f0; transition: var(--transition); display: block; }
.service-card:hover { transform: translateY(-10px); border-color: var(--secondary-color); }
.icon-3d { width: 90px; height: 90px; background: linear-gradient(135deg, var(--secondary-color), #c2410c); border-radius: 50%; margin: 0 auto 25px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 36px; }
.main-footer { background: var(--primary-color); color: #cbd5e1; padding: 80px 5% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; }
.footer-col h3 { color: var(--white); margin-bottom: 25px; font-weight: 800; border-bottom: 2px solid var(--secondary-color); display: inline-block; padding-bottom: 5px; }
.footer-bottom { text-align: center; border-top: 1px solid #334155; padding-top: 25px; margin-top: 40px; }
.floating-btn { position: fixed; bottom: 30px; right: 30px; background: var(--secondary-color); color: var(--white); width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 1000; }
.whatsapp-btn { position: fixed; bottom: 30px; left: 30px; background: #25D366; color: var(--white); width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 34px; z-index: 1000; }
.page-header { background: linear-gradient(135deg, var(--primary-color), #0f172a); color: var(--white); padding: 80px 5%; text-align: center; border-bottom: 6px solid var(--secondary-color); }
.content-section { padding: 80px 5%; max-width: 1100px; margin: 0 auto; } .content-text { font-size: 18px; color: #475569; margin-bottom: 25px; line-height: 1.8; }
.contact-container { display: flex; flex-wrap: wrap; gap: 50px; } .contact-form { flex: 1; min-width: 320px; background: var(--white); padding: 40px; border-radius: 16px; box-shadow: var(--shadow); }
.contact-form input, .contact-form textarea { width: 100%; padding: 18px; margin-bottom: 25px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 16px; background: #f8fafc; } .contact-form button { background: var(--secondary-color); color: var(--white); border: none; padding: 20px 30px; font-weight: 800; border-radius: 8px; cursor: pointer; width: 100%; font-size: 20px; }
.map-responsive { overflow: hidden; padding-bottom: 60%; position: relative; height: 0; border-radius: 16px; box-shadow: var(--shadow); } .map-responsive iframe { left: 0; top: 0; height: 100%; width: 100%; position: absolute; border: 0; }