/* Main CSS */
:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --secondary: #111827;
    --text-dark: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --transition: all 0.3s ease;
    --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 400;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Utilities */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.section-padding {
    padding: 80px 0;
}

.card-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header */
.navbar {
    padding: 1rem 0;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary) !important;
    margin: 0 10px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.offcanvas {
    background-color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    background-color: var(--secondary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    background-image: url('../images/site/hero-1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Sub-page Headers */
.page-header {
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
}

/* Services */
.service-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-img-div {
    height: 250px;
    background-color: #e5e7eb;
    background-size: cover;
    background-position: center;
}

.service-body {
    padding: 2rem;
    flex: 1;
}

/* Reviews */
.review-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

/* Contact */
.contact-info-box {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    height: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 20px;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

footer a {
    color: #9ca3af;
}

footer a:hover {
    color: var(--white);
}

footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
}

footer .social-link:hover {
    background: var(--primary);
}

/* Animation Utils */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }
}