/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    services.css
    Created on : Dec 3, 2025, 1:02:13 a.m.
    Author     : Justin
*/

body {
    margin: 0;
    font-family: Georgia, serif;
    background-color: #142133; /* Navy blue old= #112137*/
}







/* PAGE BANNER */
.page-header {
    background-image: url("../images/banners/banner-services.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 300px;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}









/* ----------------------------
   MODERN SERVICE CARD GRID
-----------------------------*/

.services-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: 70px auto;
    padding: 0 20px;
}

/* CARD CONTAINER */
.service-card {
    background: #0f1826;
    border-radius: 18px;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(255, 204, 0, 0.15);
}

/* TOP FULL-WIDTH BANNER IMAGE */
.card-img-wide {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #222;
}

.card-img-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT UNDER THE IMAGE */
.card-content {
    padding: 28px 30px;
}

/* Title */
.service-card h3 {
    font-size: 26px;
    color: #d8d8d8;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

/* Gold accent */
.accent {
    width: 100%;
    height: 4px;
    background: #D3A417;
    margin-bottom: 20px;
    border-radius: 2px;
}

/* Description text */
.service-card p {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* List styling */
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-card ul li {
    position: relative;
    padding-left: 20px;
    margin: 10px 0;
    color: #e6e6e6;
    font-size: 15px;
}

/* Gold bullet dot */
.service-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #D3A417;
    font-size: 20px;
    line-height: 16px;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

/* Price note */
.price-note {
    margin-top: 10px;
    font-size: 18px;
    color: #ffdd55;
}







/* ADDITIONAL FEES SECTION */
.additional-fees {
    max-width: 1100px;
    margin: 60px auto 80px;
    padding: 0 20px;
    text-align: center;
}

.additional-fees h2 {
    font-size: 32px;
    color: #D3A417;
    margin-bottom: 30px;
    font-family: Georgia, serif;
}

/* Grid layout */
.fees-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* Individual fee card */
.fee-item {
    background: #0f1826;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    border: 1px solid rgba(255, 204, 0, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease; /* added */
}

/* Hover effect for fee items */
.fee-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fee-item h3 {
    color: #D3A417;
    font-size: 20px;
    margin-bottom: 10px;
}

.fee-price {
    color: #e6e6e6;
    font-size: 17px;
    margin: 0;
}

/* For long explanations (like receipts) */
.fee-item.wide {
    grid-column: span 2;
}




/* ===========================
   WHOLE PAGE FADE + SLIDE UP
=========================== */

.page-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpPage 1.1s ease forwards;
}

@keyframes fadeUpPage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







