.elementor-4427 .elementor-element.elementor-element-eb7c84d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4427 .elementor-element.elementor-element-bb8b32e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4427 .elementor-element.elementor-element-ce09062{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4427 .elementor-element.elementor-element-7eaa1b1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-ff18b02 *//* --- VARIABLES --- */
:root {
    --cc-primary: #2563eb;
    --cc-primary-dark: #1e40af;
    --cc-bg: #f8fafc;
    --cc-card-bg: #ffffff;
    --cc-text: #1e293b;
    --cc-muted: #64748b;
    --cc-border: #e2e8f0;
    --cc-danger: #ef4444;
    --cc-success: #10b981;
    --cc-warning-bg: #fef9c3;
    --cc-warning-text: #854d0e;
}

/* --- CONTAINER RESET --- */
.cc-calc-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--cc-text);
}
.cc-calc-container * { box-sizing: border-box; }

/* --- BACK BUTTON --- */
.nav-header { margin-bottom: 1rem; }
.back-btn {
    text-decoration: none;
    color: var(--cc-muted);
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}
.back-btn:hover { color: var(--cc-primary); }

/* --- HEADER --- */
.calc-header { text-align: center; margin-bottom: 2rem; }
.calc-header h2 { color: var(--cc-primary); font-size: 1.8rem; margin: 0 0 0.5rem 0; }
.calc-subtitle { color: var(--cc-muted); margin: 0; }

/* --- GRID LAYOUT --- */
.calc-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    align-items: start;
}

.calc-card {
    background: var(--cc-card-bg);
    border: 1px solid var(--cc-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* --- FORMS & INPUTS --- */
.section-title { font-size: 1.1rem; border-bottom: 1px solid var(--cc-border); padding-bottom: 0.8rem; margin: 0 0 1.2rem 0; color: var(--cc-text); }
.form-group { margin-bottom: 1.2rem; position: relative; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; color: #334155; }

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #fff;
    color: var(--cc-text);
    transition: all 0.2s;
}

/* DROPDOWN FIX */
select.currency-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center; 
    background-size: 16px;
    padding-right: 45px !important; 
    text-overflow: ellipsis;
    white-space: nowrap;
}

.form-control:focus { outline: none; border-color: var(--cc-primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.input-error { border-color: var(--cc-danger) !important; background-color: #fef2f2; }

/* --- TOGGLES & BUTTONS --- */
.mode-toggle { display: flex; background: #f1f5f9; padding: 4px; border-radius: 6px; }
.mode-btn {
    flex: 1; border: none; background: transparent; padding: 8px;
    font-size: 0.9rem; font-weight: 500; color: var(--cc-muted);
    cursor: pointer; border-radius: 4px; transition: 0.2s;
}
.mode-btn.active { background: white; color: var(--cc-primary); font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }

.action-btn { width: 100%; padding: 0.75rem; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 1rem; margin-top: 0.5rem; transition: 0.2s; }
.primary-btn { background: var(--cc-primary); color: white; margin-top: 1.5rem; }
.primary-btn:hover { background: var(--cc-primary-dark); }
.outline-btn { background: transparent; border: 1px solid var(--cc-border); color: var(--cc-muted); }
.outline-btn:hover { background: #f8fafc; color: var(--cc-text); }
.sm-btn { width: auto; font-size: 0.85rem; padding: 0.5rem 1rem; margin-top: 0; }
.text-link { background: none; border: none; color: var(--cc-primary); cursor: pointer; text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.text-link:hover { text-decoration: underline; }

.extra-pay-box { border-top: 1px dashed var(--cc-border); padding-top: 1rem; margin-top: 1rem; }
.text-success { color: var(--cc-success); }
.text-danger { color: var(--cc-danger); }
.hint-text { font-size: 0.8rem; color: var(--cc-muted); margin-top: 4px; min-height: 1.2em; }
.hidden { display: none !important; }

/* --- RESULTS --- */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 1.5rem; }
.stat-item { text-align: center; background: #f8fafc; padding: 12px 5px; border-radius: 8px; border: 1px solid var(--cc-border); }
.stat-label { display: block; font-size: 0.7rem; text-transform: uppercase; color: var(--cc-muted); font-weight: 700; margin-bottom: 4px; }
.stat-val { display: block; font-size: 1.2rem; font-weight: 800; color: var(--cc-text); }

.chart-box { position: relative; height: 280px; width: 100%; margin-bottom: 1rem; }
.chart-message { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--cc-muted); font-size: 0.9rem; pointer-events: none; }
.alert-box { background: var(--cc-warning-bg); color: var(--cc-warning-text); padding: 1rem; border-radius: 6px; margin-bottom: 1rem; font-size: 0.9rem; line-height: 1.4; border: 1px solid #fde047; }
.results-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; border-top: 1px solid var(--cc-border); padding-top: 1rem; }

/* --- SCHEDULE TABLE --- */
.schedule-wrapper { margin-top: 1.5rem; animation: fadeIn 0.3s; }
.table-scroll { max-height: 350px; overflow-y: auto; border: 1px solid var(--cc-border); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th { position: sticky; top: 0; background: #f1f5f9; padding: 10px; text-align: left; font-weight: 600; color: var(--cc-text); border-bottom: 1px solid var(--cc-border); z-index: 1; }
td { padding: 8px 10px; border-bottom: 1px solid var(--cc-border); color: #475569; }
tr:nth-child(even) { background: #f8fafc; }

/* --- ABOUT & FAQ --- */
.info-wrapper { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.info-block h3 { margin: 0 0 1rem 0; font-size: 1.2rem; color: var(--cc-text); border-bottom: 2px solid var(--cc-border); padding-bottom: 0.5rem; display: inline-block; }
.info-block p { font-size: 0.95rem; line-height: 1.6; color: #475569; margin-bottom: 1rem; }

.faq-item { margin-bottom: 0.8rem; border: 1px solid var(--cc-border); border-radius: 6px; background: white; }
.faq-item summary { padding: 12px; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--cc-text); list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--cc-muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-content { padding: 12px; background: #f8fafc; border-top: 1px solid var(--cc-border); font-size: 0.9rem; line-height: 1.5; color: #475569; }

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

/* --- RESPONSIVE --- */
@media (max-width: 800px) {
    .calc-grid { grid-template-columns: 1fr; }
    .info-wrapper { grid-template-columns: 1fr; gap: 1rem; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-65ed935 *//* --- Tools Section --- */
.tools-section {
  position: relative;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fb 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 0 60px rgba(230,57,70,0.05);
  margin: 2rem auto;
  max-width: 1200px;
  box-sizing: border-box;
}

/* Section Heading */
.tools-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e63946;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: sans-serif;

  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: fadeSlideFloat 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* --- Tools Grid --- */
.tools-grid {
  display: grid;
  gap: 1.5rem;
  /* Auto-fit ensures items stretch and fill the row symmetrically */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-items: stretch; 
  padding: 0 0.5rem;
  perspective: 1000px;
}

/* --- Tool Card --- */
.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255,255,255,0.95);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  position: relative;
  text-decoration: none; /* Removes link underline */

  /* Forces all cards in a row to be the same height */
  height: 100%;
  min-height: 220px;
  box-sizing: border-box;
  overflow: hidden;

  /* Animation */
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: fadeSlideFloat 0.6s ease forwards;
}

/* Stagger animation for initial items */
.tool-card:nth-child(1) { animation-delay: 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s; }
.tool-card:nth-child(4) { animation-delay: 0.4s; }
.tool-card:nth-child(5) { animation-delay: 0.5s; }
.tool-card:nth-child(6) { animation-delay: 0.6s; }
.tool-card:nth-child(n+7) { animation-delay: 0.7s; }


/* Keyframes: Fade + Slide + Scale */
@keyframes fadeSlideFloat {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  60% { opacity: 1; transform: translateY(-5px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hover Effects */
.tool-card:hover,
.tool-card:focus-visible {
  transform: translateY(-6px) rotateX(2deg);
  border-color: #e63946;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15), 0 0 25px rgba(230,57,70,0.2);
}

/* Glossy Overlay */
.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 8px 8px 0 0;
}
.tool-card:hover::before { opacity: 1; }

/* Gradient Border */
.tool-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(270deg, #e63946, #d62828, #f77f00, #e63946, #d62828);
  background-size: 600% 600%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.tool-card:hover::after {
  opacity: 1;
  animation: gradientFlow 3s linear infinite;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Icon */
.tool-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  line-height: 1;
  transition: transform 0.4s ease, color 0.4s ease;
  color: #e63946;
  animation: floatIcon 3s ease-in-out infinite;
  z-index: 2;
}
.tool-card:hover .tool-card-icon {
  transform: scale(1.1) rotate(2deg);
  color: #b51724;
}
@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Title & Description */
.tool-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
  font-family: sans-serif;
}
.tool-card-desc {
  font-size: 0.9rem;
  color: #555;
  flex-grow: 1;
  line-height: 1.5;
  font-family: sans-serif;
}

/* --- Responsive --- */
@media (max-width: 1200px) { .tools-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }
@media (max-width: 768px)  { .tools-section { padding: 2rem 1rem; } }
@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { padding: 1.2rem; min-height: auto; }
  .tool-card-icon { font-size: 2rem; }
}/* End custom CSS */