body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
}

.section-padding {
    padding: 100px 0;
}
.tracking-wide { letter-spacing: 2px; }
.tracking-wider { letter-spacing: 3px; }

.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}
.navbar.scrolled {
    background-color: rgba(33, 37, 41, 0.95) !important;
    padding: 10px 0;
    backdrop-filter: blur(10px);
}
.nav-link {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
    color:#e7e6e6;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0d6efd;
    transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.logo-img {
   width: 100px; object-fit: cover;
}

.hero-section {
    background: linear-gradient(rgba(10, 15, 20, 0.7), rgba(10, 15, 20, 0.8)), 
                url('../images/header-bg.png') center/cover no-repeat;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-overlay { z-index: 1; }
.hero-section .container { z-index: 2; }

.hero-content {
    animation: fadeInDown 1s ease-out;
}

/* Services */
.bg-grey {
    --bs-bg-opacity: 1;
    background-color: rgb(237 237 237) !important;
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.service-card:hover, .service-card.active-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-bottom: 4px solid #0d6efd;
}
.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.service-card:hover .icon-wrapper {
    transform: scale(1.1);
}

/* Pricing */
.pricing-card {
    transition: all 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.scale-up {
    z-index: 2;
}
@media (max-width: 991px) {
    .scale-up {
        transform: scale(1);
    }
}

/* Form inputs */
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
    border: 1px solid #0d6efd !important;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-container {
    background-color: #e6e7e6; /* Light gray background matching the image */
    padding: 10px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 4px;
    box-sizing: border-box;
  }

  .pricing-row {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid #fff; /* Horizontal dividing line */
  }

  /* Remove border from the last row */
  .pricing-row:last-child {
    border-bottom: none;
  }

  .icon {
    color: #103a8f; 
    font-size: 32px;
    width: 60px;
    display: flex;
    justify-content: flex-start;
  }

  .text-container {
    flex-grow: 1;
    color: #2c2c2c; 
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
  }

  .vertical-divider {
    width: 2px;
    height: 35px;
    background-color: #fff;
    margin: 0 10px;
  }

  .price-container {
    align-items: flex-start;
    color: #103a8f; /* Dark blue price color */
    font-weight: 900;
    width: 75px;
    justify-content: flex-end;
  }

  .dollar-sign {
    font-size: 20px;
    margin-top: 5px;
    margin-right: 3px;
  }

  .amount {
    font-size: 24px;
    line-height: 0.9;
  }

  .menu-container {
            width: 90%;
            max-width: 600px;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            overflow: hidden;
            border: 1px solid #eaeaea;
        }

        /* --- Add-ons Section --- */
        .addons-section {
            padding: 25px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 15px 30px;
            margin-bottom: 25px; /* Spacing before the bottom section */
        }

        /* Top header/logo omission handling */
        .top-edge {
            padding: 10px 25px;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            background: linear-gradient(to right, #f2dede, white 40%);
            height: 10px;
            display: block;
        }

        /* Item layout within the grid */
        .addon-item {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            grid-gap: 12px;
        }

        /* Icon square frame */
        .icon-frame {
            width: 44px;
            height: 44px;
            border: 2px solid #e74c3c; /* Red border */
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        /* Style for SVG icons */
        .addon-icon {
            width: 100%;
            height: 100%;
            fill: #e74c3c;
            /* In case some icons are larger, we preserve aspect ratio */
            object-fit: cover;
        }

        /* Specific styles for odd/even to help with layout consistency */
        .addon-item:nth-child(odd) {
            border-right: none;
        }

        /* Text element for service name */
        .service-name {
            font-size: 14px;
            font-weight: 700;
            color: #333;
            text-transform: uppercase;
            line-height: 1.2;
        }

        /* Text element for price */
        .price {
            font-size: 20px;
            font-weight: 900;
            color: #e74c3c;
            text-align: right;
            line-height: 1;
        }

        /* Divider between the two main areas */
        .section-divider {
            grid-column: span 2;
            height: 1px;
            background-color: #ddd;
            margin: 15px 0;
        }

        /* --- Detailing Section --- */
        .detailing-section {
            background-color: #fbeae3; /* Light peach band */
            padding: 30px 25px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 25px 30px;
        }

        /* Detailing section item layout */
        .detailing-item {
            display: grid;
            grid-template-columns: auto 1fr;
            align-items: center;
            grid-gap: 15px;
        }

        /* Free-floating large red icons */
        .detailing-icon {
            width: 50px;
            height: 50px;
            fill: #e74c3c;
        }

        /* Left-side labels info block */
        .service-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        /* Detailing section service name style */
        .detailing-service-name {
            font-size: 16px;
            font-weight: 800;
            color: #333;
            text-transform: uppercase;
            line-height: 1.1;
        }

        /* Wrapper for the price info line */
        .price-line {
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        /* "from" label style */
        .from-label {
            font-size: 11px;
            color: #e74c3c;
            font-weight: 500;
            line-height: 1;
        }

        /* Large red bold detailing price style */
        .detailing-price {
            font-size: 24px;
            font-weight: 900;
            color: #e74c3c;
            line-height: 1;
        }

        /* For the 3-column items on the left vs 2-column on the right */
        .detailing-section .detailing-item:nth-child(n+4) {
             grid-column: 2;
        }

        .pricing-lr{
            display: flex;
            justify-content: space-between;
        }

         .pricing-lr .icon img{
            width: 40px;
            height: 40px;
        }

        @media screen and (max-width: 820px) {
            .pricing-lr {
                display: grid;
                grid-template-columns: 1fr;
            }
        }

        footer .text-secondary{
            color: #e9e7e7 !important;
        }