:root {
    --brand-teal: #017E84;
    --brand-teal-hover: #00666b;
    --brand-plum: #714B67;
    --bg-light: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #475569;
    --border-soft: #E2E8F0;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    padding-top: 76px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-weight: 700; letter-spacing: -0.02em; color: var(--text-dark); }
p { color: var(--text-muted); }
.text-teal { color: var(--brand-teal) !important; }
.text-plum { color: var(--brand-plum) !important; }
.bg-light-gray { background-color: var(--bg-light); }

/* Navbar */
.navbar { background: rgba(255, 255, 255, 0.98) !important; backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-soft); }
.navbar-brand { font-weight: 800; font-size: 1.5rem; color: var(--brand-plum) !important; letter-spacing: -0.5px; }
.nav-link { font-weight: 500; color: var(--text-dark) !important; padding: 0.5rem 1.2rem !important; transition: 0.3s; }
.nav-link:hover, .nav-link.active { color: var(--brand-teal) !important; }

/* Buttons */
.btn-primary-theme { background-color: var(--brand-teal); color: #ffffff; font-weight: 600; padding: 0.8rem 2.2rem; border-radius: 0.5rem; border: none; transition: all 0.3s ease; }
.btn-primary-theme:hover { background-color: var(--brand-teal-hover); color: #ffffff; transform: translateY(-3px); box-shadow: 0 10px 20px -5px rgba(1, 126, 132, 0.3); }

/* --- FIXED WAVES --- */
.hero-gradient { background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%); position: relative; padding-top: 5rem; padding-bottom: 6rem; }
.wave-bottom { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 2; }
.wave-bottom svg { display: block; width: 100%; height: 8vw; min-height: 60px; max-height: 150px; object-fit: cover; }

/* Cards & Forms */
.enterprise-card { background: #ffffff; border: 1px solid var(--border-soft); border-radius: 1rem; padding: 2.5rem; box-shadow: var(--shadow-soft); transition: all 0.3s ease; height: 100%; }
.enterprise-card:hover { transform: translateY(-8px); border-color: var(--brand-teal); box-shadow: 0 20px 40px -10px rgba(1, 126, 132, 0.15); }
.card-icon { font-size: 2.5rem; color: var(--brand-plum); margin-bottom: 1.5rem; display: inline-block; transition: 0.3s; }

.form-control, .form-select { background-color: #F8FAFC; border: 1px solid var(--border-soft); padding: 0.9rem 1.2rem; border-radius: 0.5rem; font-size: 0.95rem; color: var(--text-dark); transition: all 0.3s; }
.form-control:focus, .form-select:focus { background-color: #ffffff; border-color: var(--brand-teal); box-shadow: 0 0 0 4px rgba(1, 126, 132, 0.1); outline: none; }
.form-label { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; margin-bottom: 0.5rem; }
.contact-info-box { background: #ffffff; border: 1px solid var(--border-soft); border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-soft); }

.map-container iframe { width: 100%; height: 350px; border-radius: 0.75rem; border: 1px solid var(--border-soft); }

/* Testimonials */
.testimonial-box { border-left: 4px solid var(--brand-teal); padding-left: 1.5rem; font-style: italic; font-size: 1.1rem; color: var(--text-muted); }

/* Fixed Footer with Top Wave */
.enterprise-footer { background-color: #252733; color: #f8fafc; padding: 6rem 0 2rem; position: relative; margin-top: 4rem; }
.wave-top-footer { position: absolute; top: -2px; left: 0; width: 100%; line-height: 0; transform: rotate(180deg); z-index: 2;}
.wave-top-footer svg { display: block; width: 100%; height: 6vw; min-height: 50px; object-fit: cover; }
.footer-heading { color: #ffffff; font-weight: 700; margin-bottom: 1.5rem; }
.footer-link { color: #94a3b8; text-decoration: none; transition: all 0.3s; display: block; margin-bottom: 0.75rem; }
.footer-link:hover { color: var(--brand-teal); transform: translateX(5px); }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; transition: all 0.3s ease; margin-right: 10px; }
.social-icon:hover { background: var(--brand-teal); transform: translateY(-5px); }

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }