/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    /* Generous padding */
    border-radius: 8px;
    /* Modern radius */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    /* #0F2C59 */
    color: white;
}

.btn-primary:hover {
    background-color: #0a1f40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 44, 89, 0.3);
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background-color: #b08d4b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-outline-white {
    border-color: white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--color-primary);
}

/* Cards */
.card {
    background: white;
    padding: 2.5rem;
    /* Increased padding 32-40px */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    transition: var(--transition-normal);
    border: none;
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Feature Cards */
.feature-card .icon-box {
    width: 64px;
    height: 64px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Aligned left as per modern request? Or center? User said center icons on top. */
    color: var(--color-primary);
    /* Blue or Gold */
    margin: 0 auto 1.5rem;
}

.feature-card {
    text-align: center;
    /* Center align content */
}

.feature-card .icon-box {
    justify-content: center;
}

.feature-card .icon-box i {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.35rem;
    /* ~22px */
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #64748b;
    /* Medium grey */
    font-size: 1rem;
    line-height: 1.6;
}

/* Stats */
.stats-section {
    padding: 5rem 0;
    background-color: var(--color-primary);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    /* ~56px */
    font-weight: 700;
    color: var(--color-accent);
    /* Gold on Blue */
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Testimonial Cards */
.testimonial-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 16px;
    background: white;
    /* Optional: border/shadow handled by generic .card */
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: rgba(197, 160, 89, 0.15);
    /* Subtle gold */
}

.quote-icon i {
    width: 50px;
    height: 50px;
}

.testimonial-card p {
    font-style: italic;
    color: #334155;
    /* Dark grey */
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: none;
    /* Removed border */
    padding-top: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--color-primary);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #64748b;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}