/* assets/css/style.css */
:root {
    --primary: #FF5722;
    /* Deep Orange */
    --primary-hover: #E64A19;
    --secondary: #3F51B5;
    /* Indigo */
    --bg-light: #F8F9FA;
    --text-dark: #212529;
    --text-muted: #6C757D;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.font-family-playfair {
    font-family: 'Playfair Display', serif;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

/* Colors & Buttons */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
    color: white;
}

.btn-primary-custom {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(255, 87, 34, 0.2);
}

.btn-outline-primary-custom {
    color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background-color: var(--primary);
    color: white;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.05) 0%, rgba(255, 87, 34, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero-stats h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
}

.hero-stats p {
    font-weight: 500;
    letter-spacing: 1px;
}

/* Calculator Card */
.calculator-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-display {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8A65 100%);
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

/* Cards & Utilities */
.card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.icon-box.bg-light-primary {
    background-color: rgba(255, 87, 34, 0.1);
    color: var(--primary);
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #283593 100%);
    color: white;
}

/* Animations */
.animate-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Border Helpers */
.border-left-primary {
    border-left: 4px solid var(--primary) !important;
}

.border-left-success {
    border-left: 4px solid #28a745 !important;
}

.border-left-info {
    border-left: 4px solid #17a2b8 !important;
}

.border-left-warning {
    border-left: 4px solid #ffc107 !important;
}

.border-left-secondary {
    border-left: 4px solid #6c757d !important;
}

.border-bottom-primary {
    border-bottom: 3px solid var(--primary) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px !important;
    }

    .hero-stats h2 {
        font-size: 2rem;
    }
}