/* public/css/welcome.css */

:root {
    --primary-yellow: #fbb03b;
    --dark-bg: #111111;
    --section-spacer: 140px; 
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.8; background-color: #fff; overflow-x: hidden; }

/* --- Navigation & Button Fix --- */
.navbar { padding: 30px 0; transition: var(--transition); z-index: 1050; }
.navbar.scrolled { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 15px 0; }
.navbar-brand img { height: 60px; transition: var(--transition); }
.navbar.scrolled .navbar-brand img { height: 50px; }
.nav-link { color: #fff !important; font-weight: 700; margin: 0 18px; transition: var(--transition); }
.navbar.scrolled .nav-link { color: #333 !important; }

/* Standardized Login Button Shade */
.btn-yellow { 
    background-color: var(--primary-yellow) !important; 
    border: none !important; 
    color: #000 !important; 
    font-weight: 700 !important; 
    padding: 10px 35px; 
    border-radius: 12px; 
    transition: var(--transition); 
}
.btn-yellow:hover { background-color: #e69a1f !important; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(251, 176, 59, 0.3); }

/* --- Hero Section --- */
.hero-section { height: 100vh; background: linear-gradient(135deg, #7b6011 0%, #ba941e 50%, #fbb03b 100%); display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.hero-title { font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; }

/* --- Common UI --- */
.section-padding { padding: var(--section-spacer) 0; }
.text-yellow { color: var(--primary-yellow) !important; }
.font-800 { font-weight: 800; }
.bg-light-gray { background-color: #f9f9f9; }
.img-premium { border-radius: 35px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); transition: var(--transition); width: 100%; }
.img-premium:hover { transform: scale(1.02); }

/* --- Product Cards & Pricing --- */
.product-box { background: #fff; border-radius: 40px; padding: 60px; margin-bottom: 60px; border: 1px solid #f1f1f1; transition: var(--transition); }
.product-box:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.05); border-color: var(--primary-yellow); }
.pricing-tag {
    display: inline-block;
    background: #fff7e6;
    color: #d48806;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid #ffe58f;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.product-box h4 { font-weight: 700; color: var(--primary-yellow); margin-bottom: 5px; }
.product-box h3 { font-weight: 800; margin-bottom: 20px; font-size: 1.8rem; }
.feature-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; }
.feature-list li { width: 50%; margin-bottom: 12px; font-size: 0.85rem; display: flex; align-items: flex-start; }
.feature-list li i { color: var(--primary-yellow); margin-right: 12px; margin-top: 6px; }

/* Alternating logic */
.product-box:nth-child(even) .row { flex-direction: row-reverse; }

/* --- Industry & Service Cards --- */
.card-premium { background: #fff; border-radius: 30px; padding: 50px 40px; border: 1px solid #f0f0f0; transition: var(--transition); height: 100%; }
.card-premium:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,0,0,0.06); border-color: var(--primary-yellow); }
.icon-box { width: 65px; height: 65px; background: #fff7e6; color: var(--primary-yellow); display: flex; align-items: center; justify-content: center; border-radius: 18px; font-size: 26px; margin-bottom: 30px; }

/* --- Why Choose US --- */
.usp-card { background: #fff; padding: 25px; border-radius: 20px; border: 1px solid #f0f0f0; transition: var(--transition); display: flex; align-items: center; margin-bottom: 20px; height: 100%; }
.usp-card:hover { transform: scale(1.05); border-color: var(--primary-yellow); }
.usp-icon { min-width: 40px; height: 40px; background: #fff7e6; color: var(--primary-yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 20px; font-size: 1rem; }

/* --- Contact Section --- */
.contact-wrapper { background: #fff; border-radius: 40px; padding: 70px; box-shadow: 0 40px 100px rgba(0,0,0,0.05); border: 1px solid #f5f5f5; }
.form-control { background: #f8f9fa; border: 2px solid transparent; border-radius: 15px; padding: 18px 25px; height: auto; transition: var(--transition); }
.form-control:focus { background: #fff; border-color: var(--primary-yellow); box-shadow: 0 10px 20px rgba(251, 176, 59, 0.1); outline: none; }

/* --- Footer --- */
footer { background: #1a1a1a; color: #999; padding: 100px 0 40px; }
.footer-logo img { height: 60px; margin-bottom: 25px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li a { color: #999; text-decoration: none; transition: 0.3s; margin-bottom: 10px; display: block; }
.footer-links li a:hover { color: var(--primary-yellow); padding-left: 5px; }
.social-links a { color: #999; font-size: 1.2rem; margin-right: 25px; transition: 0.3s; }
.social-links a:hover { color: var(--primary-yellow); }

/* --- Policy Modal Enhancements --- */
.policy-content h5 {
    color: var(--dark-bg);
    font-weight: 800;
    margin-top: 30px;
    font-size: 1.1rem;
    border-left: 4px solid var(--primary-yellow);
    padding-left: 15px;
}
.policy-content p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 15px;
}
.policy-content strong { color: #000; }
.policy-content ul {
    padding-left: 20px;
    margin-bottom: 25px;
}
.policy-content ul li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    list-style-type: disc;
}