@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #D35400;     /* Orange/Rust */
  --secondary-color: #F39C12;   /* Yellow/Orange */
  --accent-color: #E67E22;      /* Lighter Orange */
  --light-color: #ECF0F1;       /* Light Gray */
  --dark-color: #2C3E50;        /* Dark Navy */
  --gradient-primary: linear-gradient(135deg, #F39C12 0%, #D35400 100%);
  --hover-color: #A04000;
  --background-color: #F8F9F9;
  --text-color: #34495E;
  --border-color: rgba(211, 84, 0, 0.15);
  --divider-color: rgba(243, 156, 18, 0.3);
  --shadow-color: rgba(44, 62, 80, 0.1);
  --highlight-color: #F1C40F;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--main-font); color: var(--primary-color); }
.text-white { color: #ffffff !important; }
.text-dark { color: var(--text-color) !important; }
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }

/* Layout Helpers */
.container { width: 90%; max-width: 1150px; margin: 0 auto; }
.pad-section { padding-top: 10dvh; padding-bottom: 10dvh; }
.bg-light-gray { background-color: var(--light-color); }
.bg-dark { background-color: var(--dark-color); }

/* Neumorphism (Warm Theme) */
.neumorph-card {
    background: var(--background-color);
    border-radius: 20px;
    box-shadow: 9px 9px 18px var(--shadow-color), -9px -9px 18px #ffffff;
    border: 1px solid var(--border-color);
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.neumorph-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 12px 12px 24px var(--shadow-color), -12px -12px 24px #ffffff;
}

.neumorph-input {
    background: var(--background-color);
    border: none;
    border-radius: 10px;
    box-shadow: inset 4px 4px 8px var(--shadow-color), inset -4px -4px 8px #ffffff;
    padding: 18px;
    font-family: var(--alt-font);
    color: var(--text-color);
}
.neumorph-input:focus {
    outline: none;
    box-shadow: inset 6px 6px 12px var(--shadow-color), inset -6px -6px 12px #ffffff;
    border-left: 3px solid var(--primary-color);
}
.neumorph-img { border-radius: 18px; box-shadow: 12px 12px 25px var(--shadow-color); width: 100%; display: block; }

/* Header */
.top-header {
    background-color: var(--dark-color);
    color: #ffffff; padding: 18px 5%;
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 1000;
}
.burger-checkbox { display: none; }
.burger-icon { display: none; font-size: 28px; cursor: pointer; color: #fff; }
.nav-menu-list { display: flex; list-style: none; gap: 30px; }
.top-header a { color: #ffffff; text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 14px; letter-spacing: 0.5px;}
.nav-hover:hover { color: var(--secondary-color); }

/* Buttons */
.btn-warm, .btn-dark {
    display: inline-block; padding: 16px 35px; border-radius: 8px;
    text-decoration: none; font-family: var(--main-font); font-weight: bold;
    text-align: center; cursor: pointer; border: none; transition: all 0.3s;
    text-transform: uppercase; letter-spacing: 1px;
}
.btn-warm { background: var(--gradient-primary); color: #ffffff; }
.btn-warm:hover { background: var(--hover-color); color: #ffffff; box-shadow: 0 5px 15px rgba(211, 84, 0, 0.4); }
.btn-dark { background-color: var(--dark-color); color: #ffffff; }
.btn-dark:hover { background-color: #1A252F; box-shadow: 0 5px 15px var(--shadow-color); }

/* Hero */
.hero-vital {
    position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
    background: url('./img/bg.jpg') no-repeat center center/cover;
}
.hero-shadow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(44, 62, 80, 0.7); z-index: 1;
}
.hero-center { position: relative; z-index: 2; color: #ffffff; }
.hero-center h1 { color: #ffffff; }

/* Flex Blocks */
.flex-wrap-normal, .flex-wrap-reverse { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.w-40 { width: calc(40% - 20px); }
.w-50 { width: calc(50% - 20px); }
.w-60 { width: calc(60% - 20px); }

/* Divider */
.divider-vital { display: flex; align-items: center; justify-content: center; padding: 35px 0; }
.line-vital { height: 2px; background-color: var(--secondary-color); flex-grow: 1; max-width: 20%; opacity: 0.5; }
.text-vital { padding: 0 25px; font-family: var(--main-font); color: var(--dark-color); font-weight: bold; text-transform: uppercase;}

/* CTA Banners */
.cta-vital { position: relative; padding: 12dvh 0; background-attachment: fixed; background-size: cover; background-position: center; }
.cta-center { position: relative; z-index: 2; }

/* Grids */
.grid-features-vital { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.icon-vital { font-size: 42px; color: var(--primary-color); margin-bottom: 20px; }

.grid-testimonials-vital { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 35px; }

.contact-box { padding: 40px; }

.faq-vital { max-width: 800px; margin: 0 auto; }
.faq-card { background: var(--light-color); }

/* Footer */
.vital-footer { background-color: var(--dark-color); color: #ffffff; padding: 50px 0 25px; }
.footer-flex-vital { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.footer-nav-vital ul { display: flex; list-style: none; gap: 25px; }
.vital-footer a { color: #ffffff; text-decoration: none; }
.hover-vital:hover { color: var(--secondary-color); }

/* Responsive */
@media (max-width: 768px) {
    .burger-icon { display: block; }
    .nav-menu-list {
        display: none; flex-direction: column; position: absolute; top: 100%; left: 0;
        width: 100%; background-color: var(--dark-color); padding: 25px; text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .burger-checkbox:checked ~ .nav-menu-list { display: flex; }
    .w-40, .w-50, .w-60 { width: 100%; }
    .flex-wrap-reverse { flex-direction: column-reverse; }
    .footer-flex-vital { flex-direction: column; text-align: center; gap: 25px; }
    .footer-nav-vital ul { flex-direction: column; }
    .contact-box { padding: 20px; }
}