/* ─── Landing Page Refined Theme (Navy, Gold, White) ─── */

.hero {
    background: var(--gradient-primary);
    padding-top: 100px;
    padding-bottom: 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,224L80,213.3C160,203,320,181,480,181.3C640,181,800,203,960,192C1120,181,1280,139,1360,117.3L1440,96L1440,320L1360,320C1280,320,1120,320,960,320C800,320,640,320,480,320C320,320,160,320,80,320L0,320Z"></path></svg>');
    background-size: cover;
}

.hero-tag {
    background: rgba(255,255,255,0.1);
    color: var(--color-gold-light);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.hero h1 span {
    color: var(--color-gold-light);
    position: relative;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold-light);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 90px; height: 90px;
    background: #fcfbf8;
    color: var(--color-gold);
    font-size: 2.8rem;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 30px;
    border: 1px solid var(--color-border);
}

.section-title {
    color: var(--color-primary);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 20%; right: 20%;
    height: 4px;
    background: var(--color-gold);
    border-radius: 2px;
}

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

.hero-content { animation: fadeInUp 0.8s ease-out; }
