/* RESET & GENERAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcf9f4; /* Subtle warm cream tint */
    color: #222222;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* TOP MINI HEADER */
.top-bar {
    background-color: #051021;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    padding: 10px 8%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
}

/* MAIN NAVBAR */
.main-header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 6rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
    color: #0a2540;
}

.logo-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 600;
    color: #0a2540;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
    color: #666;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #444444;
}

.nav-links a:hover, .nav-links a.active {
    color: #0a2540;
    font-weight: 600;
}

.btn-assessment {
    background-color: #0f233c;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-assessment:hover {
    background-color: #1a365d;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 600px;
    background: url('valor\ admission\ hero.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 30, 55, 0.9), rgba(10, 30, 55, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 680px;
}

.hero-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #d1b894; /* Premium gold accent */
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 30px;
}

.hero-phone-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e9d25e;
    color: #051021;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
}

/* CARDS COMMON STYLING */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2dcd0;
}

/* MAIN CONTAINER LAYOUT */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* 4 STEPS PROCESS CARD MODULES */
.process-container-box {
    text-align: center;
    margin-bottom: 60px;
}

.process-tag {
    font-size: 11px;
    letter-spacing: 2px;
    color: #8c8273;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.process-main-title {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #0f233c;
    margin-bottom: 40px;
}

.process-steps-grid {
    font-family: 'Cinzel', serif;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    text-align: left;
    padding: 30px 20px;
    background-color: #ffffff;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f233c;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
}

/* TWO COLUMN LAYOUT (FORM & SIDEBAR) */
.form-sidebar-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    align-items: start;
}

/* FORM STYLING */
.form-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #0f233c;
    font-weight: 400;
    margin-bottom: 10px;
}

.form-subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.custom-form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #555555;
}

form input, form textarea, .custom-select-field {
    width: 100%;
    padding: 16px;
    margin-bottom: 0; /* Managed by layout block */
    border: 1px solid #e2dcd0;
    background-color: #faf8f5;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

form input:focus, form textarea:focus, .custom-select-field:focus {
    border-color: #0f233c;
}

.full-width-select {
    margin-bottom: 20px;
}

.btn-submit {
    background-color: #0f233c;
    color: white;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #1a365d;
}

.form-bottom-disclaimer {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 15px;
}

/* SIDEBAR COLUMN */
.sidebar-column {
    font-family: 'Cinzel', serif;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.talk-now-custom-card {
    background-color: #f7f3eb; /* Premium cream shade matching image card */
}

.sidebar-block-description {
    font-size: 14px;
    color: #555555;
    margin-bottom: 15px;
}

.sidebar-phone-anchor {
    display: block;
    text-align: left;
    font-weight: 600;
    text-decoration: none;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.what-to-expect-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #0f233c;
    font-weight: 400;
}

.custom-expect-checklist {
    list-style: none;
    margin-bottom: 20px;
}

.custom-expect-checklist li {
    font-size: 13.5px;
    color: #444444;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.custom-expect-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

/* CRISIS BOX SIDEBAR DARK */
.dark-crisis-sidebar-card {
    background-color: #051021;
    border: none;
}

.white-icon {
    color: #ffffff;
}

.text-white-heading {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #ffffff !important;
    font-weight: 400;
}

.text-gray-paragraph {
    font-size: 13.5px;
    color: #94a3b8 !important;
    margin-top: 15px;
    line-height: 1.6;
}

/* RED CRISIS BANNER */
.crisis-banner {
    background-color: #b92c2c;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* FOOTER STYLES */
.main-footer {
    background-color: #040d1a;
    color: #dfe4ea;
    padding: 70px 8% 30px 8%;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.logo-area.light .logo-title {
    color: #ffffff;
}
.logo-area.light .logo-subtitle {
    color: #94a3b8;
}

.brand-desc {
    margin-top: 20px;
    line-height: 1.6;
    font-size: 13.5px;
    color: #cbd5e1;
}

.footer-contact-info {
    margin-top: 25px;
}

.footer-contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.footer-links-grid h4 {
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links-grid ul {
    list-style: none;
}

.footer-links-grid ul li {
    margin-bottom: 12px;
}

.footer-links-grid ul li a {
    color: #94a3b8;
    font-size: 13px;
}

.footer-links-grid ul li a:hover {
    color: #ffffff;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 40px 0;
}

/* PATIENT TOOLS SECTION */
.tools-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.tools-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #d1b894;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.tools-header h3 {
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
}

.btn-toolkit {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 4px;
    font-weight: 500;
    font-size: 14px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tools-grid ul {
    list-style: none;
}

.tools-grid ul li {
    margin-bottom: 12px;
}

.tools-grid ul li a {
    color: #94a3b8;
    font-size: 13px;
}

.tools-grid ul li a:hover {
    color: #ffffff;
}

/* BOTTOM SECTION */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    margin-top: 20px;
}

.legal-links a {
    margin-left: 20px;
    color: #64748b;
}

.legal-links a:hover {
    color: #ffffff;
}

/* STICKY WIDGETS */
.chat-widget {
    position: fixed;
    bottom: 25px;
    z-index: 999;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-widget {
    left: 25px;
    background-color: #22c55e;
    width: 45px;
    height: 45px;
    font-size: 20px;
}

.right-widget {
    right: 25px;
    background-color: #0f233c;
    color: white;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 1024px) {
    .process-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .form-sidebar-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-links-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .main-header { padding: 15px 4%; }
    .top-bar { padding: 10px 4%; }
}

@media (max-width: 600px) {
    .process-steps-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; }
    .legal-links a { margin-left: 0; margin-right: 15px; }
    .nav-links { display: none; }
}









/* --- NAV DROPDOWN STYLING --- */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown ke andar ke links ka box */
.dropdown-content {
    display: none; /* Pehle se chhupa rahega */
    position: absolute;
    background-color: #ffffff; /* Pure white background */
    min-width: 220px; /* Box ki width */
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.15); /* Premium shadow effect */
    border-radius: 8px; /* Smooth corners */
    padding: 10px 0;
    top: 100%; /* Navbar ke thik niche khulega */
    left: 0;
    z-index: 1000;
}

/* Dropdown ke andar ke individual links */
.dropdown-content a {
    color: #444444 !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Jab dropdown ke links par mouse jaye */
.dropdown-content a:hover {
    background-color: #faf8f5; /* Aapka cream header tone */
    color: #0a2540 !important; /* Premium dark blue tone */
}

/* JAISE HI PROGRAMS PAR MOUSE JAYEGA -> DROPDOWN DIKHEGA */
.dropdown:hover .dropdown-content {
    display: block;
}