:root {
    --primary: #0284c7; /* Sky 600 - Bright Trustworthy Blue */
    --primary-light: #38bdf8; /* Sky 400 */
    --secondary: #14b8a6; /* Teal 500 - Fresh accent */
    --background: #FFFFFF; /* Pure White */
    --surface: #FFFFFF;
    --text-main: #334155; /* Slate 700 - Soft dark */
    --text-muted: #64748B; /* Slate 500 */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: #0f172a; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.75rem 1.75rem; border-radius: 9999px; font-weight: 500; font-size: 1.05rem;
    text-decoration: none; transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary {
    background-color: var(--primary); color: white;
    box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.3);
}
.btn-primary:hover {
    background-color: var(--primary-light); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}
.btn-secondary {
    background-color: #f0f9ff; color: var(--primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.btn-secondary:hover {
    background-color: #e0f2fe; transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    z-index: 1000; padding: 1.2rem 0; transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05); box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.navbar.scrolled { padding: 0.75rem 0; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: #0f172a; text-decoration: none; display: flex; align-items: center; gap: 0.25rem; letter-spacing: -0.5px; }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a {
    text-decoration: none; color: var(--text-main); font-weight: 500; font-size: 1.05rem;
    transition: var(--transition); position: relative; padding: 0.5rem 0;
}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0;
    background-color: var(--primary); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }

/* Hero Section */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 80px; overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/hero_bg.png') center/cover no-repeat; z-index: -2;
}
.hero-bg::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,249,255,0.6) 100%); z-index: -1;
}
.hero-content { max-width: 800px; }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin: 1.5rem 0 2.5rem; max-width: 600px; }
.hero-buttons { display: flex; gap: 1rem; }

/* Sections General */
.section { padding: 8rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { color: var(--text-muted); font-size: 1.125rem; max-width: 600px; margin: 0 auto; margin-top: 1rem; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.service-card {
    background: var(--surface); padding: 3rem 2.5rem; border-radius: 1.5rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05); transition: var(--transition);
    border: 1px solid #f1f5f9; position: relative; overflow: hidden; text-align: center;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08); border-color: #e2e8f0; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    font-size: 3rem; margin-bottom: 1.5rem; display: inline-flex; align-items: center; justify-content: center;
    width: 80px; height: 80px; background: #e0f2fe; border-radius: 50%; color: var(--primary);
}
.service-card h3 { margin-bottom: 1rem; }
.service-card p { color: var(--text-muted); font-size: 1.05rem; }

/* Pricing Section */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--surface); padding: 3rem; border-radius: 1.5rem; box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05); border: 1px solid #f1f5f9; transition: var(--transition); }
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08); border-color: #e2e8f0; }
.pricing-card h3 { margin-bottom: 1.5rem; color: var(--primary); border-bottom: 2px solid #e0f2fe; padding-bottom: 0.5rem; }
.mt-4 { margin-top: 2.5rem; }
.price-list { list-style: none; }
.price-list li { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px dashed #e2e8f0; color: var(--text-main); font-size: 1.1rem; }
.price-list li:last-child { border-bottom: none; }
.price-list .price { font-weight: 600; color: #0f172a; }
.pricing-note { text-align: center; margin-top: 3rem; color: var(--text-muted); font-size: 0.95rem; font-style: italic; }

/* About Section */
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { font-size: 1.1rem; color: var(--text-muted); }
.about-image-wrapper { position: relative; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); line-height: 0; }
.about-image-wrapper img { width: 100%; height: auto; display: block; }
.about-image-placeholder {
    width: 100%; height: 500px; background: #e0f2fe; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.5rem; font-weight: 500;
}

.features-list { list-style: none; margin-top: 2.5rem; }
.features-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; font-size: 1.15rem; font-weight: 500; color: #0f172a; }
.features-list li span {
    color: white; background: var(--secondary); border-radius: 50%; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}

/* Location Section */
.light-blue-section { background-color: #f8fafc; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
.location-grid {
    display: grid; grid-template-columns: 1fr 1.5fr; gap: 0; background: white; border-radius: 1.5rem;
    border: 1px solid #e2e8f0; overflow: hidden; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}
.location-info { padding: 4rem 3rem; }
.location-info h3 { margin-bottom: 2rem; color: #0f172a; font-size: 1.8rem; }
.location-info p { margin-bottom: 1.5rem; color: var(--text-main); font-size: 1.1rem; }
.location-info strong { color: #0f172a; display: block; margin-bottom: 0.25rem; font-size: 1.15rem; }
.location-info a { color: var(--primary); text-decoration: none; font-weight: 600; transition: var(--transition); }
.location-info a:hover { color: var(--primary-light); text-decoration: underline; }
.map-placeholder { width: 100%; height: 100%; min-height: 400px; background: #e2e8f0; position: relative; }
.map-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-weight: 500; }

/* Footer */
footer { background-color: #ffffff; color: var(--text-main); padding: 5rem 0 2rem; border-top: 1px solid #e2e8f0; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .logo { color: #0f172a; margin-bottom: 1.5rem; font-size: 2rem; }
.footer-brand p { color: var(--text-muted); max-width: 300px; font-size: 1.1rem; }
.footer-links h4, .footer-contact h4 { margin-bottom: 1.5rem; color: #0f172a; font-size: 1.25rem; font-weight: 700; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: var(--transition); font-size: 1.1rem; font-weight: 500;}
.footer-links a:hover { color: var(--primary); padding-left: 0.5rem; }
.footer-contact p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.1rem; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #f1f5f9; color: var(--text-muted); font-size: 0.95rem; }

/* Animations */
.reveal-text { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 900px) {
    .about-container, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    .hero { padding-top: 100px; text-align: center; }
    .hero-buttons { justify-content: center; }
}
