@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', 'Open Sans', sans-serif !important;
}

/* Modern Header / Navbar */
#header .header-body {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

#header .header-nav-main nav > ul > li > a {
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
    transition: color 0.3s ease, background 0.3s ease;
}

/* Plan Cards Modernization */
.plan {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    background: #ffffff;
    overflow: hidden;
}

.plan:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.plan-header {
    border-radius: 12px 12px 0 0 !important;
    background: linear-gradient(135deg, #0B2D5C, #184A8C) !important;
}

.plan-price {
    font-family: 'Inter', sans-serif !important;
}

.plan-price .price {
    font-weight: 700 !important;
}

.plan-featured .plan-header {
    background: linear-gradient(135deg, #d32f2f, #f44336) !important;
}

/* Buttons Modernization */
.btn {
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s ease !important;
}

.btn-modern.btn-red {
    background: linear-gradient(135deg, #d32f2f, #ff5252) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3) !important;
}

.btn-modern.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4) !important;
}

.btn-modern.btn-rose {
    background: linear-gradient(135deg, #c2185b, #e91e63) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3) !important;
}

.btn-modern.btn-rose:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 24, 91, 0.4) !important;
}

/* Features boxes */
.featured-box-full {
    transition: all 0.3s ease !important;
}

.featured-box-full:hover {
    background-color: rgba(0,0,0,0.85) !important;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
}

.word-rotator-words {
    border-radius: 8px;
    padding: 0 10px;
}

/* Process Image Micro-animations */
.process-image img, .process-image2 img {
    transition: transform 0.4s ease;
}

.process-image:hover img, .process-image2:hover img {
    transform: scale(1.1);
}
