/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Mar 18, 2026, 1:43:37 PM
    Author     : joel
*/

:root {
    --primary: #007bff;
    --dark: #333;
    --light: #f4f7f6;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--dark); scroll-behavior: smooth; }
.container { max-width: 1100px; margin: auto; padding: 0 2rem; overflow: hidden; }

/* Nav */
nav { background: var(--white); height: 70px; display: flex; align-items: center; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 10; }
.nav-flex { display: flex; justify-content: space-between; width: 100%; align-items: center; }
.logo { font-weight: 700; font-size: 1.5rem; color: var(--primary); }
.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; }

/* Hero */
.hero { background: linear-gradient(rgba(0,123,255,0.8), rgba(0,123,255,0.8)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=1200&q=80'); 
    background-size: cover; color: white; height: 60vh; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.btn { display: inline-block; background: var(--white); color: var(--primary); padding: 0.8rem 2rem; text-decoration: none; border-radius: 5px; font-weight: bold; margin-top: 1rem; }

/* Sections */
section { padding: 4rem 0; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; margin-bottom: 3rem; color: #666; }
.bg-light { background: var(--light); text-align: center; }

/* Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.card { background: var(--white); padding: 2rem; border-radius: 10px; border: 1px solid #eee; transition: 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.refund-box { background: #fff5f5; padding: 1.5rem; border-left: 5px solid #ff4d4d; border-radius: 5px; }

/* Footer */
footer { background: var(--dark); color: white; padding: 2rem 0; text-align: center; }
.footer-links a { color: #ccc; text-decoration: none; font-size: 0.9rem; margin: 0 10px; }

/* Modal */
.modal { display: none; position: fixed; z-index: 100; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); }
.modal-content { background: white; margin: 5% auto; padding: 2rem; width: 80%; max-height: 80vh; overflow-y: auto; border-radius: 10px; }
.close { float: right; font-size: 1.5rem; cursor: pointer; }