@charset "utf-8";
.main-visual{
    min-height: 600px;
    padding-top: 100px;
    padding-bottom: 60px;
    background-image: url("img/main.webp");
    background-size:cover;
    background-position: center;
    color: ivory;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.top-title{
    font-size: 40px;
    margin-bottom: 10px;
    color: ivory;
}
.top-subtitle{
    font-size: 18px;
    margin-bottom: 20px;
}
.top-text{
    color: ivory;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow{
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 26px;
    opacity: 0;
    animation: heroFadeUp .6s ease forwards;
    animation-delay: .1s;
}
.hero-negatives{
    margin-bottom: 24px;
}
.hero-neg{
    font-size: 18px;
    color: ivory;
    opacity: 0;
    margin-bottom: 10px;
    line-height: 1.8;
    animation: heroFadeUp 3s ease-in forwards;
}
.hero-neg:nth-child(1){ animation-delay: .1s; }
.hero-neg:nth-child(2){ animation-delay: .45s; }
.hero-neg:nth-child(3){ animation-delay: .8s; margin-bottom: 0; }
.hero-positive.top-title{
    font-size: 28px;
    line-height: 2.0;
    opacity: 0;
    animation: heroFadeUp 6s ease forwards;
    animation-delay: 1.3s;
}
.main{
    padding: 60px 0;
    color: var(--color-text-light);
    text-align: center;
}
.main h2{
    margin-bottom: 25px;
}
.main-image{
    width: 450px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-card);
}
.main h3{
    margin-bottom: 10px;
}

.contact-btn.standout {
    display: inline-block;
    margin-top: 65px;
    padding: 10px 20px;
    background: var(--color-primary);
    color: #ffffff;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(10, 61, 98, 0.3);
    transition: 0.25s ease;
    border: 2px solid var(--color-primary);
}
.contact-btn.standout:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(10, 61, 98, 0.4);
    background: var(--color-accent);
    border-color: var(--color-accent);
}
.contact-btn.standout {
    animation: breathing 3s ease-in-out infinite;
}

@keyframes breathing {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}
.contact-subtext {
    margin-top: 10px;
    font-size: 15px;
    color: #fff;
    opacity: 0.85;
    letter-spacing: 0.5px;
}
.services {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}
.services h2 {
    margin-bottom: 50px;
}
.service-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.service-card {
    background: #fff;
    padding: 3rem;
    width: 350px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    text-align: left;
    transition: all 0.25s ease;
}
.service-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-left: 6px;
    color: var(--color-primary);
}
.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding-left: 12px;
    color: var(--color-text-light);
}
.service-card .more {
    color: var(--color-accent-dark);
    font-weight: bold;
    text-decoration: none;
    transition: all 0.25s ease;
    padding-left: 12px;
}
.service-card .more:hover {
    background: var(--color-accent);
    color: #fff;
}
.service-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    margin-bottom: 18px;
}
.card-icon {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.service-description {
    font-size: 18px;
    line-height: 2;
    color: var(--color-text-light);
    margin: 4px 0 80px;
    padding: 50px 80px;
}
.service-copy{
    display: block;
    margin-bottom: 50px;
    padding: 0 16px;
}
