/* public/assets/css/custom-page.css */

.custom-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.1) 100%), url('https://images.unsplash.com/photo-1621644723048-2b8109825b4c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    padding: 60px 0;
}

.custom-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.custom-hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.custom-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.blue-textured-section {
    background-color: #1a2f4c;
    background-image: url('https://www.transparenttextures.com/patterns/denim.png');
    padding: 80px 0;
    color: white;
    text-align: center;
}

.light-textured-section {
    background-color: #f4f4f4;
    background-image: url('https://www.transparenttextures.com/patterns/subtle-white-feathers.png');
    padding: 80px 0;
    color: #222;
}

.step-process {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a2f4c;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
}

.step-item {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    border-right: 2px solid #ddd;
}

.step-item:last-child {
    border-right: none;
}

.step-item span {
    font-size: 1.5rem;
    color: #1a2f4c;
    margin-right: 10px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.option-card {
    background: transparent;
    text-align: left;
}

.option-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid #ddd;
    margin-bottom: 20px;
    border-radius: 4px;
}

.option-card h3 {
    color: #1a2f4c;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-transform: none;
}

.option-card p {
    font-size: 0.95rem;
    color: #444;
}

.btn-brown {
    background: linear-gradient(to bottom, #d48e55, #9c5521);
    color: white;
    border: 1px solid #7a421a;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.btn-brown:hover {
    background: linear-gradient(to bottom, #e59a5d, #ab5d24);
}

.btn-blue {
    background: linear-gradient(to bottom, #3b5c87, #213c60);
    color: white;
    border: 1px solid #162b47;
}

.btn-blue:hover {
    background: linear-gradient(to bottom, #4a6f9f, #284770);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.stars {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.logos-section {
    background: white;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.logos-section img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.7;
}
