/**
 * BOOTSTRAP-COMPATIBLE CUSTOM STYLES
 * 
 * This file contains custom components that extend Bootstrap 5.
 * Use Bootstrap utility classes where possible, and these custom
 * styles for unique components.
 * 
 * Bootstrap Classes to Use:
 * - Spacing: p-*, m-*, px-*, py-*, mt-*, mb-*, etc.
 * - Layout: container, row, col-*, d-flex, align-items-*, justify-content-*
 * - Typography: fs-*, fw-*, text-*, lh-*
 * - Colors: bg-*, text-*
 * - Borders: rounded, rounded-*, border, border-*
 * - Shadows: shadow, shadow-sm, shadow-lg
 */

/* ═══════════════════════════════════════════════════════════════════
   CUSTOM CSS VARIABLES (Extend Bootstrap Variables)
   ═══════════════════════════════════════════════════════════════════ */
:root {
    --sol-navy: #13134a;
    --sol-navy-status: #2b2e83;
    --sol-gold: #f5c842;
    --sol-gold-light: #fde98a;
    --sol-off-white: #fdfaf5;
    --sol-gray: #6b7280;
    --sol-light-gray: #e8e8f0;
    --sol-text: #1a1a3e;
    --sol-radius-lg: 24px;
    --sol-radius-md: 16px;
}

/* ═══════════════════════════════════════════════════════════════════
   GLOBAL BASE STYLES
   ═══════════════════════════════════════════════════════════════════ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--sol-text);
    line-height: 1.6;
}

/* Bootstrap Helper Classes */
.bg-beige {
    background: var(--sol-off-white) !important;
}

.bg-navy {
    background: var(--sol-navy) !important;
}

.text-navy {
    color: var(--sol-navy) !important;
}

.text-gold {
    color: var(--sol-gold) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   TYPOGRAPHY COMPONENTS
   ═══════════════════════════════════════════════════════════════════ */

/* Use these with Bootstrap heading classes: <h1 class="sol-title"> */
.sol-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--sol-navy);
    line-height: 1.15;
}

.sol-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--sol-navy);
}

.sol-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
}

/* ═══════════════════════════════════════════════════════════════════
   BUTTON COMPONENTS
   Use: <a href="#" class="btn sol-btn-pill sol-btn-white">
   ═══════════════════════════════════════════════════════════════════ */
.sol-btn-pill {
    border-radius: 100px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.sol-btn-white {
    background: #fff;
    color: var(--sol-navy);
}

.sol-btn-white:hover {
    background: var(--sol-gold);
    transform: translateY(-3px);
    color: var(--sol-navy);
}

.sol-btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.sol-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.arrow-circle-white {
    width: 28px;
    height: 28px;
    background: var(--sol-navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.sol-btn-white:hover .arrow-circle-white {
    background: #fff;
    color: var(--sol-navy);
}

.sol-btn-outline-white .arrow-circle-white {
    background: #fff;
    color: var(--sol-navy);
}

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR COMPONENT
   Use: <nav class="navbar navbar-expand-lg sol-nav">
   ═══════════════════════════════════════════════════════════════════ */
.sol-nav {
    padding: 20px 0;
    z-index: 1050;
}

.sol-nav-inner {
    background: #fff;
    border-radius: 100px;
    height: 72px;
    padding: 0 0 0 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
}

/* Use Bootstrap's navbar-nav and nav-link classes */
.sol-nav .nav-link {
    color: var(--sol-text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.sol-nav .nav-link.active,
.sol-nav .nav-link:hover {
    color: var(--sol-navy);
}

.sol-nav-cta {
    height: 100%;
    background: var(--sol-navy);
    padding: 0 45px 0 75px;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    margin-left: auto;
}

.sol-cta-btn {
    background: #fff;
    color: var(--sol-navy);
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.sol-cta-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--sol-navy);
}

/* Bootstrap Navbar Toggler (replaces hamburger) */
.sol-nav .navbar-toggler {
    border: none;
    padding: 0.25rem;
}

.sol-nav .navbar-toggler:focus {
    box-shadow: none;
}

/* Use Bootstrap's .collapse and .navbar-collapse for mobile menu */

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   Use: <section class="sol-hero">
   ═══════════════════════════════════════════════════════════════════ */
.sol-hero {
    background: var(--sol-navy);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.sol-hero-img-box {
    position: absolute;
    right: -430px;
    top: -45px;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 105;
    overflow: visible;
}

.sol-hero-img-box img {
    height: 110%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
    transform: translateY(5%);
}

.sol-hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 580px;
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT / STATS SECTION
   Use: <section id="about" class="py-5">
   ═══════════════════════════════════════════════════════════════════ */
#about {
    margin-top: -60px;
    z-index: 10;
    position: relative;
}

.sol-about-card {
    background: var(--sol-off-white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.sol-about-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.sol-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--sol-navy);
    line-height: 1;
}

.sol-stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════════
   SERVICE CARDS
   Use: <div class="col-md-4"><div class="card sol-service-card">
   ═══════════════════════════════════════════════════════════════════ */
.sol-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.sol-service-card:hover {
    transform: translateY(-10px);
    border-color: #00a4fb;
    box-shadow: 0 20px 50px rgba(19, 19, 74, 0.12);
}

.sol-service-card:hover .sol-service-name {
    color: var(--sol-navy);
}

.sol-service-card:hover .sol-service-icon {
    background: rgba(0, 164, 251, 0.08);
    transform: scale(1.1);
}

.sol-service-icon {
    width: 60px;
    height: 60px;
    background: rgba(188, 188, 235, 0.07);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.sol-service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════════
   EXPERT CARDS
   Use: <div class="sol-expert-card">
   ═══════════════════════════════════════════════════════════════════ */
.sol-expert-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    margin-bottom: 24px;
}

.expert-card-inner {
    display: flex;
    padding: 24px;
    gap: 24px;
}

.expert-img-box {
    width: 180px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--sol-off-white);
}

.expert-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info {
    flex: 1;
}

.ex-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--sol-navy);
    margin-bottom: 4px;
}

.ex-court {
    font-size: 0.9rem;
    color: var(--sol-navy-status);
    font-weight: 600;
    margin-bottom: 12px;
}

.ex-list {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: #555;
}

.ex-list li::before {
    content: "• ";
    color: var(--sol-gold);
    font-weight: bold;
}

.ex-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--sol-gray);
    margin-bottom: 20px;
}

.expert-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.ex-exp-box {
    background: var(--sol-off-white);
    padding: 8px 16px;
    border-radius: 12px;
}

.ex-years {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--sol-navy);
    line-height: 1;
}

.ex-years-label {
    font-size: 0.65rem;
    color: var(--sol-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ex-status-dot {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.ex-consult-btn {
    background: var(--sol-navy);
    color: #fff;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.ex-consult-btn:hover {
    background: var(--sol-navy-status);
    color: #fff;
    transform: translateY(-2px);
}

.btn-arrow {
    width: 22px;
    height: 22px;
    background: #fff;
    color: var(--sol-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG CARDS
   Use: <div class="card sol-blog-card">
   ═══════════════════════════════════════════════════════════════════ */
.sol-blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
    padding: 12px;
}

.sol-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.blog-image-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 16px;
}

.blog-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta-row {
    display: flex;
    align-items: center;
    padding: 16px 8px;
    gap: 12px;
}

.blog-author-avatar {
    width: 36px;
    height: 36px;
    background: #e0e0e0;
    border-radius: 50%;
    flex-shrink: 0;
}

.blog-author-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--sol-navy);
}

.blog-date {
    font-size: 0.75rem;
    color: var(--sol-gray);
    margin-left: auto;
}

.blog-content-box {
    background: var(--sol-off-white);
    padding: 20px;
    border-radius: 16px;
}

.blog-main-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sol-navy-status);
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-see-more {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--sol-navy);
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════
   VIDEO SECTION
   Use: <section class="sol-video-section">
   ═══════════════════════════════════════════════════════════════════ */
.sol-video-section {
    background: url('../images/Hammers.jpg') no-repeat center center / cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 40px 40px 0 0;
}

.sol-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 19, 74, 0.75);
}

.sol-video-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.sol-play-btn-centric {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    color: var(--sol-navy);
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.sol-play-btn-centric:hover {
    transform: scale(1.1);
}

.sol-video-features {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 50px;
}

.v-feature-item {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0 40px;
    text-align: center;
}

.v-feature-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   Use: <div class="sol-testi-card-premium">
   ═══════════════════════════════════════════════════════════════════ */
.sol-testi-header {
    font-size: 3rem;
    font-weight: 800;
    color: var(--sol-navy);
    font-family: 'Playfair Display', serif;
}

.sol-testi-header span {
    color: var(--sol-navy-status);
}

.sol-testi-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--sol-navy);
}

.sol-testi-nav-btn.sol-active {
    background: var(--sol-navy);
    color: #fff;
    border-color: var(--sol-navy);
}

.sol-testi-card-premium {
    background: var(--sol-off-white);
    border-radius: 24px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    gap: 30px;
}

.testi-img-part {
    width: 350px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.testi-img-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-content-part {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.testi-quote-mark {
    font-size: 4rem;
    color: var(--sol-navy);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.8;
    margin-bottom: 20px;
}

.testi-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.testi-author {
    margin-top: auto;
}

.author-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--sol-navy);
}

.author-label {
    font-size: 0.85rem;
    color: var(--sol-gray);
}

/* ═══════════════════════════════════════════════════════════════════
   CONSULTATION FORM
   Use with Bootstrap modal: <div class="modal sol-consult-modal">
   ═══════════════════════════════════════════════════════════════════ */
.sol-consult-section {
    padding: 80px 0;
    background: #fff;
}

.sol-consult-modal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.sol-consult-modal .form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    font-size: 0.95rem;
}

.sol-consult-modal .form-control:focus {
    border-color: var(--sol-navy);
    box-shadow: 0 0 0 0.2rem rgba(19, 19, 74, 0.1);
}

.sol-consult-outer {
    border-radius: 0;
    padding: 40px;
}

.sol-consult-brand {
    background: #fff;
    padding: 60px;
}

.sol-consult-form-box {
    padding: 40px;
}

.sol-title-form {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--sol-navy);
}

.sol-input-premium {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 12px 14px;
    background: #fdfdfd;
    font-size: 0.9rem;
}

.sol-input-premium:focus {
    border-color: var(--sol-navy);
    box-shadow: none;
}

.sol-btn-navy-premium {
    background: var(--sol-navy);
    color: #fff;
    border-radius: 4px;
    padding: 14px;
    font-size: 1.1rem;
    border: none;
}

/* ═══════════════════════════════════════════════════════════════════
   FORM PAGES (Onboarding)
   Use: <section class="law-form-section">
   ═══════════════════════════════════════════════════════════════════ */
.law-form-section {
    background-color: var(--sol-off-white);
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.form-card {
    background: #fff;
    width: 100%;
    max-width: 800px;
    border-radius: var(--sol-radius-lg);
    box-shadow: 0 15px 40px rgba(19, 19, 74, 0.06);
    overflow: hidden;
    animation: fadeIn 0.5s ease;
}

.form-header {
    background: var(--sol-navy);
    padding: 40px;
    text-align: center;
}

.form-header h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #fff;
    font-size: 2.2rem;
    margin: 0;
}

.form-body {
    padding: 40px;
}

.form-label {
    font-weight: 700;
    color: var(--sol-navy);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Use Bootstrap form-control and form-select, these add extra styling */
.law-form-section .form-control,
.law-form-section .form-select {
    border: 1px solid var(--sol-light-gray);
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.law-form-section .form-control:focus,
.law-form-section .form-select:focus {
    border-color: var(--sol-navy);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(19, 19, 74, 0.05);
}

.continue-btn {
    background: var(--sol-navy);
    color: #fff;
    padding: 14px 45px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.continue-btn:hover {
    background: var(--sol-navy-status);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 19, 74, 0.2);
    color: #fff;
}

/* Why Join Page */
.why-join-body {
    text-align: center;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--sol-navy);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.why-list {
    text-align: left;
    list-style: none;
    padding: 0;
    display: inline-block;
}

.why-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.why-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sol-navy);
    font-weight: 900;
}

/* Upload Photo */
.upload-note {
    color: var(--sol-gray);
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-align: center;
}

.upload-box {
    border: 2px dashed var(--sol-light-gray);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.upload-box:hover {
    border-color: var(--sol-navy);
    background: #fcfcfc;
}

/* Consent */
.consent-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
    background: #f9f9ff;
    padding: 25px;
    border-radius: 12px;
}

.consent-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

/* Custom Checkbox */
.custom-checkbox {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 24px;
    width: 24px;
    background-color: #eee;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.custom-checkbox:hover input~.checkmark {
    background-color: #ccc;
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--sol-navy);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

/* Thank You Page */
.thankyou-wrapper {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--sol-off-white);
}

.thankyou-card {
    text-align: center;
    max-width: 600px;
    padding: 60px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.thankyou-card .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--sol-navy);
    margin-bottom: 15px;
}

.thankyou-card .sub-title {
    color: var(--sol-navy-status);
    font-weight: 700;
    margin-bottom: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   Use: <footer class="sol-footer">
   ═══════════════════════════════════════════════════════════════════ */
.sol-footer {
    background: #000;
    color: #fff;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 80px 0 40px;
}

.sol-footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.sol-footer-link:hover {
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN (Bootstrap Breakpoints)
   ═══════════════════════════════════════════════════════════════════ */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .sol-hero-img-box {
        right: -350px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .sol-title {
        font-size: 2.2rem;
    }

    #about {
        margin-top: -30px;
    }

    .sol-about-card {
        padding: 40px 20px;
    }

    .sol-stat-num {
        font-size: 2.5rem;
    }

    /* Expert Cards - Stack vertically */
    .expert-card-inner {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .expert-img-box {
        width: 100%;
        height: 260px;
    }

    .ex-name {
        font-size: 1.5rem;
    }

    .expert-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ex-consult-btn {
        width: 100%;
        justify-content: space-between;
    }

    /* Video Section */
    .sol-video-section {
        border-radius: 0;
        min-height: 400px;
    }

    .sol-video-title {
        font-size: 2.2rem;
    }

    .v-feature-divider {
        display: none;
    }

    .v-feature-item {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Testimonials */
    .sol-testi-header {
        font-size: 2.5rem;
    }

    .sol-testi-card-premium {
        flex-direction: column;
        padding: 15px;
    }

    .testi-img-part {
        width: 100%;
        height: 300px;
    }

    .testi-content-part {
        padding: 30px 10px;
    }

    .testi-quote-mark {
        font-size: 3rem;
    }

    /* Consultation */
    .sol-consult-outer {
        padding: 15px;
        border-radius: 0;
    }

    .sol-consult-brand {
        padding: 40px 20px;
    }

    .sol-consult-form-box {
        padding: 30px 20px;
    }

    .sol-title-form {
        font-size: 1.8rem;
    }

    /* Navbar */
    .sol-nav {
        padding: 15px 0;
    }

    .sol-nav-inner {
        padding: 0 20px;
        height: 64px;
    }

    .sol-nav-cta {
        display: none;
        /* Hide on mobile, use collapse menu */
    }

    /* Footer */
    .sol-footer {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 60px 0 30px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

    /* Form Pages */
    .law-form-section {
        padding: 30px 15px;
    }

    .form-header {
        padding: 30px 20px;
    }

    .form-header h1 {
        font-size: 1.6rem;
    }

    .form-body {
        padding: 30px 20px;
    }

    .continue-btn {
        width: 100%;
        justify-content: center;
    }

    .why-title {
        font-size: 1.25rem;
    }

    .upload-box {
        padding: 30px 15px;
    }

    .consent-box {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .thankyou-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .thankyou-card .main-title {
        font-size: 2.2rem;
    }

    /* Hero */
    .sol-hero-img-box {
        display: none;
        /* Hide hero image on very small screens */
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .sol-hero-title {
        font-size: 2.4rem;
    }

    .sol-title {
        font-size: 1.8rem;
    }

    .sol-stat-num {
        font-size: 2rem;
    }

    .expert-img-box {
        height: 220px;
    }
}


/* style.css */