/* ----------------------------- */
/* GLOBAL */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    color: #333;
}

a {
    text-decoration: none;
}

/* ----------------------------- */
/* NAVBAR */
#mainNav,
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 12px 0;
}

.navbar.scrolled,
#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.brand-logo {
    height: 60px;
    width: auto;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff !important;
}

.brand-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: #fffefe !important;
}

.nav-link {
    color: #fffdfd !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: #000 !important;
}

.nav-link:hover {
    color: #d32f2f !important;
}

/* "Get a Quote" button */
.btn-cta {
    background-color: #d32f2f;
    color: white;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #b71c1c;
    transform: scale(1.05);
}

/* ----------------------------- */
/* HERO SECTION */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

/* HERO TEXT */
.services-hero-text {
    font-family: "Poppins", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero-subtext {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.5;
}

.services-highlight-text {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
}

/* ----------------------------- */
/* SERVICES SECTION */
.services-container {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Bubble */
.services-header {
    text-align: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ddd;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.service-card h5 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Spacing between rows */
.row.g-4 {
    margin-bottom: 2rem;
}

/* Centered CTA Button below cards */
.services-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}
