/* Global Vars */
:root {
    --brand-yellow: #fecb00;
    --brand-blue: #1d3585;
    --brand-dark: #111827;
    --text-gray: #4b5563;
}

/* Poppins - Normal (Non-Italic) Fonts */

@font-face {
    font-family: 'Poppins';
    src: url('/assets/vendor/fonts/poppins/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/vendor/fonts/poppins/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/vendor/fonts/poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/vendor/fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/vendor/fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/vendor/fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/vendor/fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/vendor/fonts/poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/vendor/fonts/poppins/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}


body { font-family: 'Poppins', sans-serif; overflow-x: hidden; }

/* =========================================
   1. Navbar Section (#main-navbar)
   ========================================= */
h1,h2,h3,h4,h5,h6{
    color: var(--brand-blue);
}
#main-navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}
#main-navbar li.nav-item.dropdown:hover .dropdown-menu{
    display:block;
}
#main-navbar .brand-logo-placeholder {
    width: 40px; 
    height: 40px; 
    background: red; 
    border-radius: 50%; 
    margin-right: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-weight: bold;
}
#main-navbar .navbar-brand span {
    line-height: 1.2;
}
#main-navbar .nav-link {
    font-weight: 500;
    color: #333 !important;
    margin-left: 15px;
    font-size: 0.95rem;
}
#main-navbar .nav-link:hover {
    color: var(--brand-blue) !important;
}
#main-navbar .btn-call {
    background-color: var(--brand-yellow);
    color: #000;
    font-weight: 700; 
    border-radius: 5px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}
#main-navbar .btn-call:hover {
    background-color: #e5b800;
}

/* =========================================
   2. Hero Section (#hero-section)
   ========================================= */
#hero-section {
background: radial-gradient(1200px 600px at 75% 20%, rgba(0, 0, 0, .45), rgba(0, 0, 0, .65)), url("/image.php?src=assets/images/home-banner.webp&width=1351&height=610&quality=80");
    background-size: cover;
    background-position: top right;

    padding: 80px 0;
    position: relative;
    min-height: 600px;
}
#hero-section h1 {
    font-weight: 700;
    font-size: 3rem;
    color: white;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}
#hero-section .hero-badge {
    background-color: white;
    color: #d32f2f;
    padding: 5px 15px;
    font-weight: 700;
    display: inline-block;
    border-radius: 4px;
    font-size: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
#hero-section .hero-form-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
#hero-section .hero-form-card h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #000;
}
#hero-section .form-control, 
#hero-section .form-select {
    font-size: 0.9rem;
    margin-bottom: 10px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}
#hero-section .form-control:focus, 
#hero-section .form-select:focus {
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 0.2rem rgba(254, 203, 0, 0.25);
}
#hero-section .btn-submit {
    background-color: var(--brand-yellow);
    color: black;
    font-weight: 700;
    width: 100%;
    border: none;
    padding: 10px;
    margin-top: 10px;
}
#hero-section .btn-submit:hover {
    background-color: #e5b800;
}

/* =========================================
   3. Intro Section (#intro-section)
   ========================================= */
#intro-section .intro-text {
    margin: 0 auto 40px auto;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}
#intro-section .feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#intro-section .feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #333;
    text-align: left;
}
#intro-section .feature-list li::before {
    content: "•";
    color: black;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 5px;
}

/* =========================================
   4. Why Choose Us Section (#why-choose-section)
   ========================================= */
#why-choose-section {
    background-color: var(--brand-blue);
    color: white;
}
#why-choose-section .icon-circle {
    background-color: white;
    color: var(--brand-blue);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    transition: transform 0.3s;
}
#why-choose-section .icon-circle:hover {
    transform: scale(1.1);
}

/* =========================================
   5. Treatments Section (#treatments-section)
   ========================================= */
#treatments-section {
    background-color: #fff;
}
#treatments-section h3 {
    color: var(--brand-blue);
}
#treatments-section ul {
    list-style-type: disc;
    padding-left: 20px;
}
#treatments-section li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #333;
}

/* =========================================
   6. How It Works Section (#process-section)
   ========================================= */
#process-section {
    background-color: var(--brand-blue);
    color: white;
}
#process-section .step-card {
    background: transparent;
    border: none;
    color: white;
    height: 100%;
}
#process-section .step-header {
    background-color: var(--brand-yellow);
    color: black;
    font-weight: 700;
    padding: 8px;
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
}
#process-section .step-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid var(--brand-yellow);
}

/* =========================================
   7. Footer Section (#footer-section)
   ========================================= */
#footer-section {
    background-color: var(--brand-dark);
    color: white;
    padding: 70px 0 20px 0;
    font-size: 0.9rem;
}
#footer-section h5 {
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    font-size: 1.1rem;
}
#footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.2s;
}
#footer-section a:hover {
    color: var(--brand-yellow);
}
#footer-section .footer-btn {
    background-color: var(--brand-yellow);
    color: black;
    font-weight: 800;
    width: 100%;
    padding: 12px;
    border: none;
    margin-top: 5px;
    font-size: 1.1rem;
    border-radius: 4px;
}
#footer-section .footer-btn:hover {
    background-color: #e5b800;
}
#footer-section .copyright {
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 0.85rem;
    color: #9ca3af;
}
.fill-white {
    fill: white;
}
.float-btns {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
/* Responsive Tweaks (Targeting IDs) */
@media (max-width: 768px) {
    #hero-section h1 { font-size: 2rem; }
    #hero-section { padding: 40px 0; }
    #intro-section .intro-text { padding: 0 15px; }
}