/* assets/css/style.css */

/* --- 1. Variables & Reset --- */
:root {
    --primary: #00796b;   /* Teal */
    --secondary: #b8860b; /* Gold */
    --dark: #111111;
    --gray: #252525;
    --light: #f4f4f4;
    --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
body { background: var(--light); color: #333; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* --- 2. Animations (AOS Helper) --- */
/* The Javascript library handles the movement, this ensures smooth load */
html { scroll-behavior: smooth; }

/* --- 3. Header --- */
header { background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.top-bar { background: var(--secondary); color: var(--white); padding: 8px 0; font-size: 13px; font-weight: 600; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px; max-width: 1200px; margin: 0 auto; }
.logo img { height: 55px; display: block; }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { font-weight: 600; text-transform: uppercase; font-size: 14px; color: var(--dark); position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--primary); transition: 0.3s; }
.nav-links a:hover::after { width: 100%; }
.btn-quote { background: var(--primary); color: white !important; padding: 10px 25px; border-radius: 30px; box-shadow: 0 4px 10px rgba(0,121,107,0.3); }
.btn-quote:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,121,107,0.4); }
.menu-toggle { display: none; font-size: 24px; cursor: pointer; }

/* --- 4. Hero Section --- */
.hero { height: 85vh; background-size: cover !important; background-position: center !important; position: relative; display: flex; align-items: center; color: white; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7)); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 15px; margin: 0 auto; text-align: center; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }
.btn-main { background: var(--secondary); color: white; padding: 15px 40px; border-radius: 30px; font-weight: bold; text-transform: uppercase; display: inline-block; margin-top: 20px; border: 2px solid var(--secondary); }
.btn-main:hover { background: transparent; color: var(--secondary); }

/* --- 5. Layout Helpers --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { color: var(--primary); font-size: 2.5rem; text-transform: uppercase; display: inline-block; position: relative; padding-bottom: 15px; }
.section-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--secondary); }

/* --- 6. Services & Clients --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; border-bottom: 3px solid transparent; }
.service-card:hover { transform: translateY(-10px); border-bottom: 3px solid var(--primary); }
.service-img { height: 220px; object-fit: cover; width: 100%; transition: 0.5s; }
.service-card:hover .service-img { transform: scale(1.05); }
.service-info { padding: 25px; }

/* --- 7. PROFESSIONAL FOOTER --- */
footer { background: var(--dark); color: #ccc; padding: 70px 0 0; font-size: 14px; }
.footer-top { padding-bottom: 50px; border-bottom: 1px solid #333; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-widget h3 { color: var(--white); font-size: 18px; margin-bottom: 25px; position: relative; padding-left: 15px; border-left: 3px solid var(--primary); }
.footer-widget p { line-height: 1.8; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { display: flex; align-items: center; gap: 10px; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 35px; height: 35px; background: #333; color: white; border-radius: 50%; margin-right: 10px; transition: 0.3s; }
.social-icons a:hover { background: var(--primary); }
.footer-bottom { padding: 20px 0; text-align: center; background: #000; margin-top: 0; }

/* Mobile Bottom Nav */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: white; z-index: 9999; justify-content: space-around; padding: 10px 0; box-shadow: 0 -5px 15px rgba(0,0,0,0.1); border-top: 2px solid var(--primary); }
.nav-item { text-align: center; font-size: 10px; color: var(--dark); flex: 1; }
.nav-item i { display: block; font-size: 20px; margin-bottom: 4px; color: var(--primary); }

/* --- 8. Responsive --- */
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: white; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    .mobile-bottom-nav { display: flex; }
    body { padding-bottom: 60px; }
    .hero h1 { font-size: 2rem; }
}