/*
Theme Name: BMI Calculator Pro v2
Theme URI: https://boykiloendeksi.com
Description: Modern WordPress theme with 6 health calculators (BMI, Ideal Weight, BMR, Body Fat, WHR, Calorie, Protein). Features interactive dashboard, auto-setup, and beautiful responsive design.
Version: 2.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Author: BMI Calculator Team
Author URI: https://boykiloendeksi.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bmi-calculator-pro
Tags: health, calculator, fitness, bmi, responsive-design, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f9fafb;
}

/* Custom Properties */
:root {
    --primary-color: #3B82F6;
    --secondary-color: #10B981;
    --accent-color: #F59E0B;
    --danger-color: #EF4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
    color: white;
}

.btn-primary:hover {
    filter: brightness(0.92);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    filter: brightness(0.85);
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

/* For pages using a custom calculate button */
.calculate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
    color: white;
}

.calculate-btn:hover {
    filter: brightness(0.92);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.calculate-btn:active {
    filter: brightness(0.85);
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #059669);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Cards */
.card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

/* Calculator Styles */
.calculator-container {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.calculator-form {
    display: grid;
    gap: 1.5rem;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Calculators Grid - Same as Tools Grid */
.calculators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.calculator-result {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Modern Result Layout */
.modern-result {
    background: white;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.health-score-section .calculator-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.health-score-section .input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.health-score-section .input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.health-score-section .input-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.health-score-section .input-icon {
    margin-right: 8px;
    font-size: 18px;
}

.health-score-section input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.health-score-section input[type="number"]:focus {
    outline: none;
    border-color: #007bff;
}

.health-score-section .calculate-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.health-score-section .calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.2);
}

.result-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 2rem;
}

.result-status-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.result-status-icon.animate-icon {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.result-status-icon.status-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.result-status-icon.status-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.result-status-icon.status-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.result-status-icon.status-info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.result-main-content {
    flex: 1;
}

.result-value-wrapper {
    margin-bottom: 0.75rem;
}

.result-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.calculator-result ul,
.result-advice ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.calculator-result li,
.result-advice li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #334155;
}

.result-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0;
}

.result-category {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

/* Result Advice Box */
.result-advice-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #bae6fd;
}

.advice-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.advice-header i {
    font-size: 1.75rem;
    color: #0284c7;
}

.advice-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c4a6e;
    margin: 0;
}

.advice-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advice-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
}

.advice-list li i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.result-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.result-info-badge i {
    font-size: 1.125rem;
    color: #3b82f6;
}

/* Weight Range Grid (İdeal Kilo) */
.weight-range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.range-item {
    background: #f9fafb;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.range-item:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.range-item.range-ideal {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
}

.range-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.range-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
}

.range-ideal .range-value {
    color: #1e40af;
}

/* BMR Goals Grid */
.bmr-goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.goal-item {
    background: #f9fafb;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.goal-item.goal-loss {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.goal-item.goal-gain {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #10b981;
}

.goal-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.goal-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
}

@media (max-width: 768px) {
    .weight-range-grid,
    .bmr-goals-grid {
        grid-template-columns: 1fr;
    }
}

.result-description {
    text-align: center;
    color: var(--text-secondary);
}

/* Gauge Chart */
.gauge-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

/* Notification System */
.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: #10b981;
    color: white;
}

.notification-error {
    background: #ef4444;
    color: white;
}

.notification-warning {
    background: #f59e0b;
    color: white;
}

.notification-info {
    background: #3b82f6;
    color: white;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-stat-icon {
    font-size: 1.5rem;
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Calculator Tools */
.calculator-tools {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f9fafb, #f0f9ff);
}

.tools-more-section {
    text-align: center;
    margin-top: 3rem;
}

.tools-more-btn {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-weight: 600;
}

.tools-more-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: #1d4ed8;
}

.tool-card,
.calculator-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.tool-card:hover,
.calculator-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.tool-card::before,
.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(50%, -50%);
}

.tool-card:hover::before,
.calculator-card:hover::before {
    opacity: 0.1;
}

.tool-icon,
.calculator-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon,
.calculator-card:hover .calculator-icon {
    transform: scale(1.1);
}

.tool-title,
.calculator-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tool-description,
.calculator-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .notification {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* WordPress Specific */
.wp-block-group {
    margin-bottom: 2rem;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Health Score Section */
/* Health Score Section - Modern Design */
.health-score-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    position: relative;
    overflow: hidden;
}

.health-score-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(101, 84, 192, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.health-score-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.score-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

#health-score-gauge {
    width: 100%;
    min-height: 300px;
}

.score-left .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.quick-calc-form {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.health-recommendations {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-radius: 20px;
    border-left: 5px solid #4CAF50;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recommendations-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2e7d32;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.recommendations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommendations-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #1b5e20;
    line-height: 1.6;
}

.recommendations-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Suggestions Card */
.suggestions-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid #e0f2fe;
    margin-top: 2rem;
}

#score-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#health-recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#health-recommendations li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #6b7280;
    line-height: 1.6;
}

#health-recommendations li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Modern Gauge Container */
.gauge-container {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
    min-height: 500px;
}

.health-gauge {
    width: 100%;
    height: 400px;
    position: relative;
    margin: 0 auto 3rem;
}

.gauge-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e9ecef;
    border-top: 3px solid #FDB933;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gauge-loading p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.score-details {
    margin: 2rem 0 0 0;
    padding: 2rem 0 0 0;
    border-top: 2px solid #e5e7eb;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.score-grade {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 1.5rem 0;
    line-height: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.score-bmi {
    font-size: 1.5rem;
    color: #1f2937;
    font-weight: 600;
    margin: 0;
    display: block;
}

.score-bmi span {
    font-weight: 800;
    color: #1976D2;
    font-size: 2rem;
}

/* Modern Gauge Styles */
.gauge-bg {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gauge-semicircle {
    width: 240px;
    height: 120px;
    border-radius: 240px 240px 0 0;
    background: conic-gradient(
        from 180deg,
        #FF5252 0deg,
        #FF9800 36deg,
        #FFC107 72deg,
        #8BC34A 108deg,
        #4CAF50 144deg,
        #2196F3 180deg
    );
    position: relative;
    margin: 0 auto;
}

.gauge-inner {
    width: 180px;
    height: 90px;
    background: white;
    border-radius: 180px 180px 0 0;
    position: absolute;
    bottom: 0;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.gauge-center-dot {
    width: 16px;
    height: 16px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.gauge-needle {
    width: 4px;
    height: 90px;
    background: linear-gradient(to top, #333 0%, #666 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-90deg);
    border-radius: 4px 4px 0 0;
    transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 5;
    opacity: 1;
}

.gauge-needle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #FF5252;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.score-value {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.score-label {
    font-size: 12px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.gauge-markers {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
}

.gauge-marker {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 12px;
    background: rgba(0,0,0,0.2);
    transform-origin: bottom center;
}

.status-badge {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.status-excellent {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    color: white;
}

.status-good {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
    color: white;
}

.status-normal {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
    color: white;
}

.status-warning {
    background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
    color: white;
}

.status-info {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
    color: white;
}

.status-bad {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 100%);
    color: white;
}

.vki-text {
    color: #666;
    font-size: 14px;
    margin-top: 12px;
}

.vki-value {
    color: #1976D2;
    font-weight: 700;
    font-size: 18px;
}

/* Additional Health Score Styles */
.input-icon {
    font-size: 18px;
}

.check-icon {
    color: #4CAF50;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.suggestion-item {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 12px 0;
    color: #1B5E20;
    font-size: 15px;
    line-height: 1.5;
}

.suggestion-item:not(:last-child) {
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

/* Score Placeholder Styles */
.score-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    height: 100%;
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

.placeholder-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.feature-item svg {
    flex-shrink: 0;
}

.placeholder-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.placeholder-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 350px;
}

.placeholder-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
}

.placeholder-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.placeholder-features .feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.placeholder-features .feature-item i {
    font-size: 1.25rem;
    color: #667eea;
}

.placeholder-features .feature-item span {
    color: #334155;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
    .health-score-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .score-left .section-header {
        text-align: center;
    }
    
    .gauge-container,
    .score-placeholder {
        padding: 2rem;
        min-height: 400px;
    }
    
    .health-gauge {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .score-grade {
        font-size: 2.5rem;
    }
    
    .score-bmi {
        font-size: 1.25rem;
    }
    
    .score-bmi span {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-calc-form {
        padding: 1.5rem;
    }
    
    .gauge-container {
        padding: 1.5rem;
    }
    
    /* Responsive Result Layout */
    .result-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .result-status-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .result-value {
        font-size: 2rem;
    }
    
    .result-category {
        font-size: 1.25rem;
    }
    
    .calculator-result {
        padding: 1.5rem;
    }
    
    .result-advice-box {
        padding: 1.5rem;
    }
}



/* Calculator Comparison Table Section */
.comparison-section {
    padding: 6rem 0;
    background: white;
}

.comparison-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 800px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th.feature-col {
    text-align: left;
    width: 200px;
}

.comparison-table th.calc-col {
    min-width: 150px;
}

.calc-icon-small {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.comparison-table tbody tr {
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.comparison-table tbody tr:nth-child(even):hover {
    background: #f8f9fa;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border: 1px solid #e9ecef;
    color: #2c3e50;
    font-size: 0.95rem;
}

.comparison-table td.feature-name {
    font-weight: 600;
    text-align: left;
    background: #f8f9fa;
    color: #6554C0;
}

.tooltip-trigger {
    position: relative;
    cursor: help;
    border-bottom: 1px dotted #6554C0;
}

.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #2c3e50;
    color: white;
    text-align: center;
    border-radius: 8px;
    padding: 0.5rem;
    position: absolute;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 0.8rem;
    font-weight: normal;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #2c3e50 transparent transparent transparent;
}

.tooltip-trigger:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-easy {
    background: linear-gradient(135deg, #2ed573, #7bed9f);
    color: white;
}

.badge-medium {
    background: linear-gradient(135deg, #ffa502, #ffd32a);
    color: white;
}

.badge-hard {
    background: linear-gradient(135deg, #ff6348, #ff4757);
    color: white;
}

.action-row {
    background: #f8f9fa !important;
    border-top: 3px solid var(--primary-color);
}

.action-row:hover {
    background: #f8f9fa !important;
}

.table-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.table-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(101, 84, 192, 0.3);
    color: white;
}

.comparison-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e3f2fd, #e1f5fe);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.comparison-note p {
    margin: 0;
    color: #1976d2;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Table */
@media (max-width: 968px) {
    .comparison-table-wrapper {
        margin-top: 2rem;
    }
    
    .comparison-note {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .comparison-note p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .calc-icon-small {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .table-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Health Guide Cards Section */
.health-guide-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.guide-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guide-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.guide-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.guide-card:hover .guide-icon {
    animation: none;
    transform: scale(1.1);
}

.guide-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.guide-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.guide-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(101, 84, 192, 0.3);
}

/* Guide Modal */
.guide-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.guide-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.guide-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guide-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    color: #666;
    z-index: 1;
}

.guide-modal-close:hover {
    background: #e9ecef;
    color: #000;
    transform: rotate(90deg);
}

.guide-modal-body {
    padding: 3rem;
}

.guide-modal-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-right: 3rem;
}

.guide-modal-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.guide-modal-body p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.guide-modal-body ul,
.guide-modal-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.guide-modal-body li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.75rem;
}

.guide-modal-body strong {
    color: var(--primary-color);
    font-weight: 700;
}

.guide-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .guide-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-modal {
        padding: 1rem;
    }
    
    .guide-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .guide-modal-body h2 {
        font-size: 1.5rem;
    }
}

/* Health Tips Carousel Section */
.health-tips-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.health-tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10h80v80H10z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.health-tips-section .container {
    position: relative;
    z-index: 1;
}

.health-tips-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.health-tips-section .section-title,
.health-tips-section .section-subtitle {
    color: white;
}

.tips-carousel-container {
    margin-top: 3rem;
}

.tips-carousel {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.tips-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tip-card {
    min-width: 100%;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 3rem;
}

.tip-icon {
    font-size: 4rem;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.tip-content {
    flex: 1;
}

.tip-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tip-description {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    color: #667eea;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #667eea;
    color: white;
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 968px) {
    .tip-card {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 2rem;
    }
    
    .tip-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .tip-title {
        font-size: 1.5rem;
    }
    
    .tip-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .tip-card {
        padding: 1.5rem;
    }
    
    .tip-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .tip-title {
        font-size: 1.25rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Blog Section Additional Styles */
.blog-excerpt {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.5rem;
    color: #1d4ed8;
}

.default-card .blog-thumbnail {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.default-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Print Styles */
@media print {
    .modal,
    .notification,
    .btn {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .calculator-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Brand Overrides: unify hero and primary buttons across the site */
.hero {
    background: linear-gradient(135deg, var(--brand-start) 0%, var(--brand-end) 100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
    color: white;
}

.btn-primary:hover {
    filter: brightness(0.92);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.tools-more-btn {
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
    color: #fff;
    border: none;
}

.tools-more-btn:hover {
    filter: brightness(0.92);
    transform: translateY(-2px);
}

/* Enforce brand gradient on calculator primary buttons */
.calculator-form .btn-primary {
    background: linear-gradient(135deg, var(--brand-start), var(--brand-end)) !important;
    color: #fff !important;
}

.calculator-form .btn-primary:hover {
    filter: brightness(0.92) !important;
    transform: translateY(-2px) !important;
}

/* --- Polis VKI modern result tweaks --- */
.modern-result .result-header{ gap:1.25rem; padding-bottom:1.25rem; margin-bottom:1.25rem; }
.modern-result .result-main-content .result-description{ margin-top:0.25rem; }
.result-status-icon i{ line-height:1; }
/* Slightly softer gradient and ring-like inset for better aesthetics */
.result-status-icon.status-danger{ box-shadow: 0 10px 30px rgba(239,68,68,0.28), inset 0 0 0 6px rgba(239,68,68,0.12); }
.result-status-icon.status-warning{ box-shadow: 0 10px 30px rgba(245,158,11,0.28), inset 0 0 0 6px rgba(245,158,11,0.12); }
.result-status-icon.status-success{ box-shadow: 0 10px 30px rgba(16,185,129,0.28), inset 0 0 0 6px rgba(16,185,129,0.12); }
.result-status-icon.status-info{ box-shadow: 0 10px 30px rgba(59,130,246,0.28), inset 0 0 0 6px rgba(59,130,246,0.10); }


