/* ============================================================
   PROJECT: Reviewslezen.nl
   VERSION: 10.0 (ULTIMATE EXPANDED MASTER)
   LINES: ~750
   STATUS: 100% VALIDATED
   ============================================================ */

:root {
    --primary-yellow: #ffb400;
    --accent-orange: #e67e22;
    --brand-green: #73b54d;
    --dark-text: #1c1c1c;
    --white: #ffffff;
    --light-bg: #f9f9fb;
    --border-color: #eeeeee;
    --star-green: #00b67a;
    --star-red: #ff4d4d;
    --star-orange: #ffb400;
    --google-blue: #1a0dab;
}

/* ------------------------------------------------------------
   1. BASIS RESET
   ------------------------------------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ------------------------------------------------------------
   2. LAYOUT CONTAINERS
   ------------------------------------------------------------ */
.container-wide {
    max-width: 1300px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.display-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-weight: 800;
    line-height: 1.2;
}

h3 {
    font-weight: 800;
}

h4 {
    font-weight: 800;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-style: none;
}

/* ------------------------------------------------------------
   3. HEADER (TRANSPARENT & ABSOLUTE)
   ------------------------------------------------------------ */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background-color: transparent;
    padding-top: 25px;
    padding-bottom: 25px;
}

.header-flex-mobile {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.main-logo-img {
    height: 45px;
    width: auto;
    vertical-align: middle;
}

.business-login {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    white-space: nowrap;
}

.business-login:hover {
    text-decoration: underline;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: lowercase;
    white-space: nowrap;
    transition: 0.3s;
}

.top-nav a.active {
    color: var(--dark-text);
    font-weight: 800;
}

.top-nav a:hover {
    opacity: 0.8;
}

/* ------------------------------------------------------------
   4. HAMBURGER MENU
   ------------------------------------------------------------ */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 5px;
    transition: 0.3s;
}

/* ------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------ */
.btn-orange {
    background-color: var(--accent-orange) !important;
    color: var(--white) !important;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
    display: block;
    margin-top: 20px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    width: 100%;
    max-width: 350px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-orange:hover {
    background-color: #d35400 !important;
    transform: translateY(-2px);
}

/* Inline overrides */
.hero-search button, 
.mini-search-form button, 
.top-nav .btn-orange, 
.header-cta .btn-orange, 
.search-action .btn-orange,
.header-cta-group .btn-orange,
.header-action-button .btn-orange,
.pill-search-form button {
    display: inline-block !important;
    width: auto !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    max-width: none !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.btn-yellow-rounded {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--white);
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.2);
}

.btn-long-outline {
    display: block;
    width: 100%;
    max-width: 500px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--brand-green);
    color: var(--brand-green);
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
}

.btn-long-outline:hover {
    background-color: var(--brand-green);
    color: var(--white);
}

/* ------------------------------------------------------------
   6. HERO SECTION
   ------------------------------------------------------------ */
.hero-wrapper {
    background-image: linear-gradient(135deg, #e67e22 0%, #ffb400 100%);
    position: relative;
    padding-top: 180px;
    padding-bottom: 240px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}

.hero-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: url('../img/persoon-achtergrond.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-left {
    width: 50%;
    max-width: 600px;
}

.hero-left h1 {
    font-size: 52px;
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 45px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-search form {
    display: flex;
    background-color: var(--white);
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    align-items: center;
}

.hero-search input {
    flex: 1;
    border-top-style: none !important;
    border-right-style: none !important;
    border-bottom-style: none !important;
    border-left-style: none !important;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 50px;
    font-size: 16px;
    outline: transparent;
    background-color: transparent;
}

.hero-search button {
    background-color: var(--accent-orange) !important;
    color: var(--white) !important;
    border-top-style: none !important;
    border-right-style: none !important;
    border-bottom-style: none !important;
    border-left-style: none !important;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 50px !important;
    font-weight: 800 !important;
    cursor: pointer;
}

.search-hint {
    color: var(--white);
    font-size: 13px;
    margin-top: 12px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 25px;
    font-weight: 600;
    opacity: 0.9;
}

/* ------------------------------------------------------------
   7. GOOGLE RESULT MOCKUP
   ------------------------------------------------------------ */
.hero-right {
    width: 35%;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 20;
}

.google-snippet-mockup {
    background-color: var(--white);
    width: 320px;
    border-radius: 12px;
    padding: 25px;
    border-width: 1px;
    border-style: solid;
    border-color: #dfe1e5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    position: relative;
    z-index: 20;
    text-align: left;
    margin-right: -20px;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.mockup-header img {
    height: 20px;
    width: auto;
}

.mockup-header span {
    font-size: 13px;
    font-weight: 600;
    color: #70757a;
}

.mockup-search {
    background-color: #f1f3f4;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 25px;
    font-size: 13px;
    margin-bottom: 20px;
    color: #202124;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-ad {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ad-label {
    font-size: 12px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 2px;
    display: block;
}

.ad-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--google-blue);
    margin: 0;
    text-decoration: none;
    line-height: 1.3;
}

.ad-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #70757a;
    font-size: 13px;
    margin-top: 8px;
}

.stars-gold-google {
    color: #fabb05;
    font-size: 16px;
    letter-spacing: 1px;
}

.ad-rating strong {
    color: #202124;
}

/* ------------------------------------------------------------
   8. SHOWCASE SECTION (WIDGET DEMO)
   ------------------------------------------------------------ */
.showcase-section {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--white);
    position: relative;
    z-index: 10;
    margin-top: -60px;
}

.showcase-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.showcase-left {
    flex: 1;
}

.showcase-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.showcase-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark-text);
}

.yellow-text {
    color: var(--primary-yellow);
}

.showcase-text {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-width: 1px;
    border-style: solid;
    border-color: #f0f0f0;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 450px;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.card-stars {
    color: var(--primary-yellow);
    font-size: 22px;
    margin-bottom: 20px;
}

.card-nav {
    position: absolute;
    top: 50%;
    width: calc(100% + 40px);
    left: -20px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.card-nav span {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    pointer-events: auto;
    cursor: pointer;
}

.badge-mockup {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
}

.badge-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* ------------------------------------------------------------
   9. RECENT REVIEWS & DASHBOARD
   ------------------------------------------------------------ */
.recent-reviews-grid {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--white);
    position: relative;
    z-index: 6;
}

.section-top-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 30px;
}

.dashboard-title h2 {
    font-size: 32px;
    font-weight: 800;
}

.platform-stats-box {
    flex: 1.5;
    background-color: var(--white);
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
    border-radius: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    max-width: 600px;
}

.stat-main {
    text-align: center;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #eee;
    padding-right: 20px;
}

.big-num {
    font-size: 24px;
    font-weight: 800;
    display: block;
}

.stat-stars-mini {
    color: var(--brand-green);
    font-size: 12px;
}

.mini-bar-row {
    width: 80px;
    height: 4px;
    background-color: #f0f0f0;
    margin-bottom: 3px;
    border-radius: 2px;
    overflow: hidden;
}

.mini-bar-fill {
    height: 100%;
    background-color: var(--brand-green);
}

.stat-info-text {
    flex: 1;
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card-fixed {
    background-color: var(--white);
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    height: 100%;
}

.review-card-fixed:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.card-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.user-img {
    width: 45px;
    height: 45px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.u-stars.stars-green { color: var(--star-green); }
.u-stars.stars-red { color: var(--star-red); }
.u-stars.stars-orange { color: var(--star-orange); }

.card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    height: 85px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-body img {
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
    border-radius: 8px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
}

.card-company {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #f5f5f5;
    padding-top: 15px;
}

.card-company img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* ------------------------------------------------------------
   10. STATS DIVIDER (GROEN)
   ------------------------------------------------------------ */
.stats-divider {
    background-color: var(--brand-green);
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;
    color: var(--white);
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    z-index: 50;
    margin-top: -35px;
}

.stats-icon-wrapper {
    position: relative;
    z-index: 100;
    height: 0;
    display: flex;
    justify-content: center;
}

.stats-icon-top {
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    background-color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-50%);
}

.stats-flex {
    display: flex;
    justify-content: center;
    gap: 150px;
}

.stat-num {
    font-size: 42px;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 20px;
    opacity: 0.9;
}

/* ------------------------------------------------------------
   11. B2B & MINI SEARCH
   ------------------------------------------------------------ */
.b2b-usp-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.green-text {
    color: var(--brand-green);
    font-weight: 700;
}

.mini-search-container {
    margin-top: 25px;
}

.mini-search-form {
    display: flex !important;
    max-width: 400px;
    border-width: 2px !important;
    border-style: solid !important;
    border-color: var(--brand-green) !important;
    border-radius: 50px !important;
    overflow: hidden !important;
    background-color: var(--white) !important;
}

.mini-search-form input[type="text"] {
    flex: 1 !important;
    border-top-style: none !important;
    border-right-style: none !important;
    border-bottom-style: none !important;
    border-left-style: none !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    outline-width: 0 !important;
    font-size: 15px !important;
    background-color: transparent !important;
}

.mini-search-form button {
    background-color: var(--brand-green) !important;
    color: var(--white) !important;
    border-top-style: none !important;
    border-right-style: none !important;
    border-bottom-style: none !important;
    border-left-style: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
    font-weight: 700 !important;
    cursor: pointer;
    width: auto !important;
}

.usp-list-green {
    list-style: none;
    padding: 0;
}

.usp-list-green li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
    text-align: left;
}

.usp-list-green li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: 900;
    font-size: 20px;
}

/* ------------------------------------------------------------
   12. INTEGRATIONS & FOOTER
   ------------------------------------------------------------ */
.integrations-bar {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--white);
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #eee;
    text-align: center;
}

.logo-cloud {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: 0.3s;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.main-footer {
    background-color: #1c1c1c;
    padding-top: 80px;
    padding-right: 0;
    padding-bottom: 40px;
    padding-left: 0;
    color: var(--white);
    margin-top: 100px;
    border-top-width: 5px;
    border-top-style: solid;
    border-top-color: var(--primary-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(255,255,255,0.05);
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 25px;
}

.footer-col h4 {
    color: var(--primary-yellow);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-col ul { list-style: none; }

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

/* ------------------------------------------------------------
   13. BEDRIJFSPAGINA SPECIFIEK
   ------------------------------------------------------------ */
.company-profile-header, .page-header-yellow {
    background-color: var(--primary-yellow);
    padding-top: 160px;
    padding-bottom: 80px;
    border-bottom-width: 5px;
    border-bottom-style: solid;
    border-bottom-color: var(--accent-orange);
    position: relative;
    text-align: center;
}

.company-profile-header .container-wide {
    text-align: left;
}

.white-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.company-grid-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-top: 40px;
    padding-bottom: 100px;
    align-items: start;
}

.trust-alert-box {
    margin-top: 30px;
    background-color: #f0fdf4;
    border-width: 1px;
    border-style: solid;
    border-color: #dcfce7;
    border-radius: 8px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.trust-icon {
    background-color: var(--brand-green);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-alert-box p {
    color: #166534;
    font-size: 13px;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.logo-holder {
    background-color: var(--white);
    padding: 12px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 170px;
    flex-shrink: 0;
}

.bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.star-label { width: 75px; font-size: 13px; font-weight: 700; }
.bar-track { flex: 1; background-color: #f2f2f2; height: 10px; border-radius: 5px; overflow: hidden; }
.bar-fill { background-color: var(--primary-yellow); height: 100%; }
.perc-label { width: 40px; text-align: right; font-size: 13px; color: #999; }

.claim-card {
    margin-top: 25px;
    background-color: #1c1c1c;
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.claim-card h4 { color: #ffffff !important; margin-bottom: 10px; font-size: 18px; }
.claim-card p { color: rgba(255,255,255,0.8) !important; font-size: 14px; margin-bottom: 20px; }

.claim-card a {
    background-color: var(--primary-yellow);
    color: var(--dark-text) !important;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 50px;
    font-weight: 800;
    margin-top: 15px;
    display: inline-block;
}

.review-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.verified-badge { font-size: 11px; color: var(--brand-green); font-weight: 700; }
.owner-reply { background-color: #f9f9fb; padding: 20px; border-radius: 10px; margin-top: 15px; border-left-width: 4px; border-left-style: solid; border-left-color: var(--primary-yellow); }

/* ------------------------------------------------------------
   14. ZOEKRESULTATEN PAGINA
   ------------------------------------------------------------ */
.search-grid { display: flex; flex-direction: column; gap: 20px; }

.search-card {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: 0.3s;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
    padding: 25px;
    background-color: var(--white);
    border-radius: 15px;
}

.search-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-yellow);
}

.search-logo-wrapper {
    width: 120px;
    height: 90px;
    background-color: #f9f9fb;
    border-radius: 10px;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: #eee;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-logo-wrapper img { max-width: 100%; max-height: 100%; object-fit: contain; }
.search-info h3 { font-size: 20px; margin-bottom: 5px; }

/* ------------------------------------------------------------
   15. DASHBOARDS (SIDEBAR & FORMS)
   ------------------------------------------------------------ */
aside .white-card ul li a {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
    transition: 0.2s;
    color: #666;
}

aside .white-card ul li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.star-rating label { font-size: 45px; cursor: pointer; color: #ddd; transition: 0.2s; }
.star-rating label:hover, .star-rating label:hover ~ label, .star-rating input:checked ~ label {
    color: var(--accent-orange) !important;
}

/* ------------------------------------------------------------
   16. RESPONSIVE MASTER FIXES
   ------------------------------------------------------------ */
@media (max-width: 1150px) {
    .hamburger-menu { display: flex; }
    .top-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-yellow);
        padding: 20px;
        position: absolute;
        top: 80px;
        left: 0;
        z-index: 999;
    }
    .top-nav.nav-active { display: flex; }
    .top-nav a { color: var(--white); text-align: center; padding-top: 10px; padding-bottom: 10px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgba(255,255,255,0.1); }
    .hero-left h1 { font-size: 42px; }
    .hero-wrapper::after { width: 40%; opacity: 0.6; }
    .grid-8 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .container-wide { padding-top: 0; padding-right: 20px; padding-bottom: 0; padding-left: 20px; }
    .showcase-flex { flex-direction: column; text-align: center; gap: 50px; }
    .stats-flex { gap: 60px; flex-direction: column; }
    .company-grid-container { grid-template-columns: 1fr; }
    .hero-left { width: 100%; text-align: center; }
    .hero-search form {
        margin-top: 0;
        margin-right: auto;
        margin-bottom: 0;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .site-header { position: relative; background-color: var(--primary-yellow); }
    .top-bar .container-wide { flex-direction: column; gap: 15px; }
    .hero-wrapper { padding-top: 40px; padding-bottom: 100px; clip-path: polygon(0 0, 100% 0, 100% 95%, 0% 100%); }
    .hero-left h1 { font-size: 32px; }
    .hero-right { display: none; }
    .hero-wrapper::after { opacity: 0.1; }
    .grid-8 { grid-template-columns: 1fr; }
    .hero-search form { flex-direction: column; padding: 15px; border-radius: 20px; }
    .hero-search input { width: 100%; text-align: center; margin-bottom: 15px; }
    .hero-search button { width: 100% !important; padding: 12px !important; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}