/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary: #0B5DA2;
    --primary-light: #1A75C4;
    --primary-dark: #084480;
    --teal: #00A99D;
    --teal-light: #1FBFB4;
    --teal-dark: #008A80;
    --secondary: #00A99D;
    --accent: #E6F7F6;
    --bg-light: #F5F9FC;
    --bg-warm: #F0F9F8;
    --text-dark: #1A1A1A;
    --text-body: #222222;
    --text-muted: #333333;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-full: 50px;
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', 'Instrument Sans', sans-serif;
    --transition: all 0.3s ease;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
}

.btn-primary:hover {
    background: #e0eaf4;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary {
    background: var(--white);
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-secondary:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.btn-outline:hover {
    background: var(--teal);
    color: var(--white);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 600;
}

.btn-dark:hover {
    background: #e0eaf4;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ===========================
   Top Bar
   =========================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
}

.top-bar-text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    background: var(--white);
    padding: 22px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.navbar-logo img {
    height: 60px;
    width: auto;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-menu a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--teal);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.phone-link img {
    width: 20px;
    height: 20px;
}

.phone-link:hover {
    color: var(--teal);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   Hero Banner
   =========================== */
.hero-main {
    position: relative;
    background: url('../images/hero-bg.jpg') 50% 31%/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 0;
}

.hero-main-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-main-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
}

.hero-main-content {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(126deg, var(--primary), var(--teal));
    color: var(--white);
    padding: 10px 15px;
    border-radius: 20px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.hero-main-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 4.0625rem;
    line-height: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    color: var(--white) !important;
    font-weight: 600;
}

.hero-main-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.5;
    width: 70%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

/* ===========================
   Section Styles
   =========================== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-warm {
    background: var(--bg-warm);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.7;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ===========================
   Services Section
   =========================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--accent);
    box-shadow: var(--shadow-lg);
}

.service-card:hover h3 {
    color: var(--text-dark);
}

.service-card:hover p {
    color: var(--text-dark);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Services note */
.services-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: var(--text-body);
    font-weight: 600;
}

/* ===========================
   Because Everyone Deserves Section
   =========================== */
.section-deserves {
    background: var(--bg-light);
}

.deserves-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.deserves-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.deserves-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.3;
}

.deserves-content p {
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ===========================
   Why Choose Us - Restructured
   =========================== */
.chooseus-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.chooseus-left h2 {
    font-size: 2.3rem;
    line-height: 1.25;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.chooseus-left > p {
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 28px;
}

.chooseus-image {
    margin-top: 28px;
}

.chooseus-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
}

.chooseus-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #EEF2F7;
    border-radius: 16px;
    box-shadow: none;
    transition: var(--transition);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ===========================
   Care That Feels Like Family CTA
   =========================== */
.family-cta {
    padding: 20px 0 60px;
    background: #F5F9FC;
}

.family-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 50px 40px;
}

.avatar-stack {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.avatar-stack img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    margin-left: -10px;
    box-shadow: var(--shadow);
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.family-cta-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.family-cta-content p {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 24px;
}

.family-cta-content .btn {
    background: var(--primary);
    color: var(--white);
}

.family-cta-content .btn:hover {
    background: var(--primary-light);
}

/* ===========================
   About / CTA Section
   =========================== */
.about-section .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-section .about-image img {
    border-radius: var(--radius);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-section .about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.about-section .about-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question .faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 300;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--text-muted);
    line-height: 1;
}

.faq-item.active .faq-question .faq-icon {
    transform: none;
    border-color: var(--primary);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 0 22px;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #F5A623;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.testimonial-author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===========================
   Newsletter
   =========================== */
.newsletter-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.newsletter-box {
    background: var(--primary);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: var(--white);
}

.newsletter-text {
    flex-shrink: 0;
    max-width: 450px;
}

.newsletter-text h2 {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.newsletter-text p {
    opacity: 0.85;
    font-size: 1rem;
}

.newsletter-form-wrap {
    flex: 1;
    min-width: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 13px 20px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    outline: none;
    font-family: var(--font-body);
    min-width: 0;
}

.newsletter-input-group input::placeholder {
    color: var(--text-muted);
}

.btn-subscribe {
    background: var(--teal);
    color: var(--white);
    white-space: nowrap;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--teal-dark);
}

.privacy-note {
    font-size: 0.8rem;
    opacity: 0.7;
    color: var(--white);
}

.privacy-note a {
    text-decoration: underline;
    color: var(--teal-light);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: #DCE5EE;
    color: var(--text-body);
    padding: 60px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo img {
    height: 68px;
    width: auto;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-body);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: #667085;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-social a svg {
    width: 24px;
    height: 24px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Instrument Sans', sans-serif;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--teal);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-body);
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--teal);
}

.footer-contact a {
    color: var(--text-body);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-areas {
    border-top: 1px solid var(--border);
    padding: 20px 0 16px;
    margin-top: 10px;
}

.footer-areas h4 {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-areas p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-body);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal-links {
    font-size: 0.82rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

/* ===========================
   Forms
   =========================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,169,157,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    accent-color: var(--teal);
}

.form-checkbox label {
    font-weight: 400;
    margin-bottom: 0;
}

.form-success {
    display: none;
    background: var(--accent);
    color: var(--primary);
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-align: center;
}

/* ===========================
   Page Header
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--teal-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Contact Page
   =========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #EAF1F7;
    border-radius: var(--radius);
}

.contact-info-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 1rem;
    color: var(--text-body);
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 500;
}

/* ===========================
   About Page
   =========================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-body);
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--accent);
}

.team-card h3 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
}

/* About page expert images */
.about-experts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-experts-grid img {
    border-radius: var(--radius);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ===========================
   Locations Page
   =========================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

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

.location-map {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info {
    padding: 24px;
}

.location-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.location-address {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 8px;
}

.location-detail {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 4px;
}

.location-detail a {
    color: var(--primary);
    text-decoration: none;
}

.location-info .btn {
    margin-top: 16px;
    display: inline-block;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Banner Inner Pages */
.banner-imagge {
    position: relative;
    background: url('../images/hero-bg.jpg') 50% 31%/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 4rem 0 3rem;
}

.banner-imagge .hero-bg-image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-inner {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
}

.banner-subtitle {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.banner-title {
    color: var(--white);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.banner-description {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    max-width: 600px;
}

/* Location Contact Page */
.location-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.location-contact-info > p {
    color: var(--text-body);
    margin-bottom: 30px;
    line-height: 1.7;
}

.location-contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.location-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-contact-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.location-contact-item p {
    font-size: 0.9rem;
    color: var(--text-body);
}

.location-contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.location-contact-form {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 32px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.location-full-map {
    margin-top: 50px;
}

.location-full-map iframe {
    width: 100%;
    border: 0;
    border-radius: var(--radius);
}

.location-service-areas {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.location-service-areas h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.location-service-areas > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 700px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-area-group {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}

.service-area-group h3 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--teal);
}

.service-area-group ul {
    list-style: none;
    padding: 0;
}

.service-area-group ul li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--text-body);
    position: relative;
    padding-left: 16px;
}

.service-area-group ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
}

/* ===========================
   Jobs Page
   =========================== */
.jobs-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.job-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow-lg);
}

.job-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.job-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.job-tag-full {
    background: var(--accent);
    color: var(--teal-dark);
}

.job-tag-part {
    background: #FFF3E0;
    color: #E65100;
}

/* ===========================
   Callback Page - Hero
   =========================== */
.cb-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a3d5c 40%, var(--teal-dark) 100%);
    overflow: hidden;
    padding: 0;
}

.cb-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../images/line-pattern.svg') repeat;
    opacity: 0.04;
    pointer-events: none;
}

.cb-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    padding: 50px 0 60px;
}

.cb-hero-content {
    position: relative;
    z-index: 1;
}

.cb-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: var(--teal-light);
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
}

.cb-hero-content h1 {
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 18px;
    font-weight: 800;
}

.cb-hero-content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 30px;
}

.cb-hero-image {
    margin-top: 20px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 3px solid rgba(255,255,255,0.12);
}

.cb-hero-image img {
    width: 100%;
    display: block;
    margin-top: -37%;
    margin-bottom: -2%;
}

/* Trust badges row under hero image */
.cb-hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.cb-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.cb-hero-trust-item svg {
    color: var(--teal-light);
    flex-shrink: 0;
}

/* Form card inside hero */
.cb-hero-form {
    position: relative;
    z-index: 2;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-radius: 16px;
}


/* Why choose grid */
.cb-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ===========================
   Callback Page - Steps
   =========================== */
.cb-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 0 auto;
    max-width: 880px;
    position: relative;
    margin-top: -35px;
    z-index: 3;
    border: 1px solid var(--border);
}

.cb-step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cb-step-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.cb-step h4 {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.cb-step p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cb-step-arrow {
    color: var(--border);
    flex-shrink: 0;
}

/* ===========================
   Callback Page - Features
   =========================== */
.cb-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.cb-feature:hover {
    box-shadow: var(--shadow);
    border-color: var(--teal);
}

.cb-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(11,93,162,0.1), rgba(0,169,157,0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-feature h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cb-feature p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cb-contact-quick {
    background: linear-gradient(135deg, var(--primary-dark), var(--teal-dark));
    border-radius: var(--radius);
    padding: 22px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 880px;
    margin: 0 auto;
}

.cb-contact-quick p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.cb-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255,255,255,0.12);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
}

.cb-phone-link:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

/* Callback Form Card */
.callback-form-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.cb-form-header {
    margin-bottom: 4px;
}

.cb-form-header h2 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.cb-form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.cb-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.cb-form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cb-form-note::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--teal);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* ===========================
   Legal Pages
   =========================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.legal-content .effective-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .about-section .about-grid,
    .contact-grid,
    .cb-why-grid,
    .about-experts-grid,
    .deserves-grid,
    .chooseus-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chooseus-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-main-title {
        font-size: 3.0625rem;
        line-height: 120%;
    }

    .hero-main-content {
        width: 100%;
        padding-right: 6%;
    }

    .hero-main-content p {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-menu,
    .navbar-actions .phone-link {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navbar-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }

    .navbar-menu.active li {
        width: 100%;
    }

    .navbar-menu.active a {
        display: block;
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
    }

    .navbar-actions {
        gap: 12px;
    }

    .navbar-actions .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .hero-main {
        padding: 4rem 0;
    }

    .hero-main-title {
        font-size: 2.5rem;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .section {
        padding: 50px 0;
    }

    .services-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-contact-grid {
        grid-template-columns: 1fr;
    }

    .banner-title {
        font-size: 2rem;
    }

    .chooseus-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Callback page mobile */
    .cb-hero-inner {
        grid-template-columns: 1fr;
        padding: 30px 0 40px;
    }

    .cb-hero-content {
        padding: 0;
        text-align: center;
    }

    .cb-hero-content h1 {
        font-size: 2.2rem;
    }

    .cb-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .cb-hero-image {
        display: none;
    }

    .cb-steps {
        flex-direction: column;
        margin-top: -30px;
        gap: 20px;
        padding: 24px;
    }

    .cb-step-arrow {
        transform: rotate(90deg);
    }

    .cb-form-grid,
    .cb-why-grid {
        grid-template-columns: 1fr;
    }

    .cb-contact-quick {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2.25rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ===========================
   Video Lightbox
   =========================== */
.video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-lightbox-inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
}

.video-lightbox-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
}

.video-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}
