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

a {
    text-decoration: none;
}

/* ----------------------------- */
/* NAVBAR — IDENTICAL TO INDEX */
/* ----------------------------- */

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

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

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

/* Brand text */
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff !important; /* black on top */
}

.brand-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    color: #ffffff !important; /* FIXED — was grey */
}

/* When scrolled keep both black */
.navbar.scrolled .brand-title,
.navbar.scrolled .brand-subtitle {
    color: #000 !important;
}

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

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

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

/* Get a Quote button */
.btn-cta {
    background-color: #d32f2f;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

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

/* ----------------------------- */
/* HERO */
.hero-video-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-video-wrapper .hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* ----------------------------- */
/* ABOUT SECTION */
.about-bg-pattern {
    background: repeating-linear-gradient(
        45deg,
        rgba(211, 47, 47, 0.03),
        rgba(211, 47, 47, 0.03) 2px,
        transparent 2px,
        transparent 20px
    );
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.about-section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
}

.about-section a.link-primary {
    font-weight: 600;
    color: #d32f2f;
}

/* Images */
.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.about-img-contain {
    width: 100%;
    height: 420px;
    object-fit: contain;
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 20px;
}

/* ----------------------------- */
/* SERVICES */
.service-card {
    background: rgba(255,255,255,0.9);
    border-radius: 8px;
    box-shadow: 0px 2px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    background-color: white;
    border-radius: 50%;
    padding: 12px;
    margin-bottom: 12px;
}

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
}

/* ----------------------------- */
/* FOOTER */
footer {
    background: #222;
    color: white;
    padding: 40px 0;
    text-align: center;
}
