/* ============================================================
   CUSTOM STYLES - ScrapTrade
   ============================================================ */

/* ===== BUTTON OVERRIDES ===== */
.btn-primary {
    background: var(--primary-color);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.3);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== BG UTILITIES ===== */
.bg-light {
    background: var(--bg-light) !important;
}

.bg-primary-dark {
    background: var(--primary-dark) !important;
}

/* ===== TEXT UTILITIES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary-gold {
    color: var(--secondary-color) !important;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }
    .d-none-mobile {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .text-center-xs {
        text-align: center !important;
    }
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   ABOUT, SERVICES & CONTACT PAGE STYLES
   ============================================================ */

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #ffffff 0%, #bfe2c1 100%) !important;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero .highlight {
    color: var(--primary-color);
}

.breadcrumb {
    background: transparent;
    padding: 0 0 16px 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
}

.hero-text {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
}

/* ===== STORY SECTION ===== */
.story-section .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
}

.story-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.story-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.story-image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.story-image-grid img:first-child {
    height: 100%;
}

/* ==========================================
   ABOUT STORY IMAGE HOVER EFFECT
========================================== */

.story-image-grid {
    display: grid;
    gap: 1.5rem;
}

.story-image-grid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    cursor: pointer;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        filter .45s ease;

    transform: scale(1);
    overflow: hidden;
}

/* Hover Effect */
.story-image-grid img:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow:
        0 20px 45px rgba(0,0,0,.18),
        0 10px 20px rgba(45,106,79,.18);

    filter: brightness(1.05) saturate(1.08);
}

/* Click Effect */
.story-image-grid img:active {
    transform: scale(.98);
}

/* Keyboard Accessibility */
.story-image-grid img:focus-visible {
    outline: 3px solid #2d6a4f;
    outline-offset: 5px;
}

/* ===== MISSION VISION VALUES ===== */
.mv-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mv-card-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.mv-card-highlight .mv-icon i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.mv-card-highlight h3 {
    color: var(--white) !important;
}

.mv-card-highlight p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.mv-card-highlight .values-list li {
    color: rgba(255, 255, 255, 0.85);
}

.mv-card-highlight .values-list li i {
    color: var(--secondary-color);
}

.mv-icon i {
    font-size: 36px;
    color: var(--primary-color);
    background: rgba(45, 106, 79, 0.06);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 15px;
}

.values-list li {
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-list li i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

/* ===== WHY CHOOSE US ===== */
.why-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-icon i {
    font-size: 32px;
    color: var(--primary-color);
    background: rgba(45, 106, 79, 0.06);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== TEAM SECTION ===== */
.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-img {
    height: 280px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-color);
}

.team-info span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.team-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================================
   SERVICE DETAIL CARDS
   ============================================================ */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #e8f5e9;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-detail-card:hover .service-image {
    transform: scale(1.05);
}

.service-icon-overlay {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.35);
    border: 3px solid var(--white);
    transition: var(--transition);
    z-index: 3;
}

.service-detail-card:hover .service-icon-overlay {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-content {
    padding: 22px 24px 24px;
}

.service-detail-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.service-detail-content > p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}

.service-detail-content ul li {
    padding: 4px 0;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-content ul li i {
    color: var(--primary-color);
    font-size: 13px;
    flex-shrink: 0;
    width: 16px;
}

/* ===== PROCESS CARDS ===== */
.process-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.12;
    line-height: 1;
}

.process-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 8px;
    color: var(--text-color);
}

.process-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.contact-info-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
    min-width: 24px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.contact-info-item p,
.contact-info-item a {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(45, 106, 79, 0.06);
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 16px;
}

.contact-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-form-wrapper h3 .highlight {
    color: var(--primary-color);
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-radius: 8px;
    border: 2px solid #e0e8e0;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-color);
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
    outline: none;
}

.contact-form-wrapper .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.contact-form-wrapper .btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.3);
}

.contact-form-wrapper .btn-primary i {
    transition: transform 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover i {
    transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 34px;
    }
    .story-image-grid img {
        height: 200px;
    }
    .service-detail-content ul {
        grid-template-columns: 1fr 1fr;
    }
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 40px 0 30px;
    }
    .page-hero h1 {
        font-size: 28px;
    }
    .story-image-grid {
        grid-template-columns: 1fr 1fr;
    }
    .story-image-grid img {
        height: 160px;
    }
    .story-image-grid img:first-child {
        height: 160px;
    }
    .service-detail-content ul {
        grid-template-columns: 1fr;
    }
    .service-image-wrapper {
        height: 180px;
    }
    .service-icon-overlay {
        width: 48px;
        height: 48px;
        font-size: 18px;
        bottom: -14px;
        right: 16px;
    }
    .service-detail-content {
        padding: 18px 20px 20px;
    }
    .service-detail-content h3 {
        font-size: 17px;
    }
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 20px;
    }
    .contact-info-wrapper h3,
    .contact-form-wrapper h3 {
        font-size: 20px;
    }
    .mv-card {
        padding: 24px 20px;
    }
    .mv-card h3 {
        font-size: 20px;
    }
    .process-card {
        padding: 20px 16px;
    }
    .process-number {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 24px;
    }
    .hero-text {
        font-size: 16px;
    }
    .story-image-grid {
        grid-template-columns: 1fr;
    }
    .story-image-grid img {
        height: 200px;
    }
    .service-image-wrapper {
        height: 160px;
    }
    .service-icon-overlay {
        width: 42px;
        height: 42px;
        font-size: 16px;
        bottom: -12px;
        right: 14px;
        border-width: 2px;
    }
    .service-detail-content {
        padding: 16px;
    }
    .service-detail-content h3 {
        font-size: 16px;
    }
    .service-detail-content ul li {
        font-size: 12px;
        padding: 3px 0;
    }
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 16px;
    }
    .contact-info-wrapper h3,
    .contact-form-wrapper h3 {
        font-size: 18px;
    }
    .contact-info-item i {
        font-size: 16px;
        min-width: 18px;
    }
    .contact-info-item p,
    .contact-info-item a {
        font-size: 13px;
    }
    .contact-social a {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .mv-card {
        padding: 20px 16px;
    }
    .mv-icon i {
        width: 56px;
        height: 56px;
        line-height: 56px;
        font-size: 28px;
    }
    .mv-card h3 {
        font-size: 18px;
    }
    .process-card {
        padding: 16px 12px;
    }
    .process-number {
        font-size: 28px;
    }
    .process-card h4 {
        font-size: 16px;
    }
    .process-card p {
        font-size: 13px;
    }
}

/* ============================================================
   SCRAP PRICES PAGE STYLES
   ============================================================ */

.price-update-badge {
    display: inline-block;
    background: rgba(45, 106, 79, 0.06);
    color: var(--text-muted);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.price-update-badge i {
    color: var(--primary-color);
}

/* Price Table */
.price-table-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.price-table {
    margin-bottom: 0;
}

.price-table thead th {
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 16px;
}

.price-table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.price-table tbody tr:hover {
    background: rgba(45, 106, 79, 0.02);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.material-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.material-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.material-name {
    font-weight: 500;
    color: var(--text-color);
}

.price-value {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
}

.trend {
    font-size: 13px;
    font-weight: 600;
}

.trend.up {
    color: #4caf50;
}

.trend.down {
    color: #e63946;
}

.trend.stable {
    color: #ffc107;
}

/* Price Disclaimer */
.price-disclaimer {
    margin-top: 24px;
}

.price-disclaimer .alert {
    border-radius: var(--radius);
    border: 1px solid rgba(45, 106, 79, 0.1);
    background: rgba(45, 106, 79, 0.04);
}

.price-disclaimer .alert-link {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================================
   SELL SCRAP PAGE STYLES
   ============================================================ */

.sell-form-wrapper {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.sell-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sell-form-wrapper h3 .highlight {
    color: var(--primary-color);
}

.sell-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.sell-form-wrapper .form-control,
.sell-form-wrapper .form-select {
    border-radius: 8px;
    border: 2px solid #e0e8e0;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sell-form-wrapper .form-control:focus,
.sell-form-wrapper .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.sell-form-wrapper .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sell-form-wrapper .btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.3);
}

/* Sell Info Sidebar */
.sell-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.info-card h4 i {
    margin-right: 8px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 6px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list li i {
    color: var(--primary-color);
    font-size: 14px;
}

.phone-number {
    font-size: 24px;
    font-weight: 700;
}

.phone-number a {
    color: var(--primary-color);
}

.phone-number a:hover {
    color: var(--primary-light);
}

.accepted-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.accepted-tags .badge {
    padding: 6px 14px;
    font-weight: 500;
    font-size: 12px;
}

/* ============================================================
   BUY SCRAP PAGE STYLES
   ============================================================ */

.inventory-card {
    background: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.inventory-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.inventory-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--white);
}

.inventory-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.inventory-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.inventory-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.inventory-meta i {
    color: var(--primary-color);
    margin-right: 4px;
}

/* Why Buy Cards */
.why-buy-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-buy-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.why-buy-icon i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.why-buy-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-buy-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================================
   STEP CARDS (Sell Scrap)
   ============================================================ */

.step-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.step-icon i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================================
   PRICES FILTERS
   ============================================================ */

.prices-filters {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.prices-filters .form-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.prices-filters .form-control,
.prices-filters .form-select {
    border-radius: 8px;
    border: 2px solid #e0e8e0;
    padding: 8px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.prices-filters .form-control:focus,
.prices-filters .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    .sell-form-wrapper {
        padding: 24px 20px;
    }
    .sell-form-wrapper h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .price-table-wrapper {
        padding: 12px;
    }
    .price-table thead th,
    .price-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }
    .material-icon {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
    .price-value {
        font-size: 14px;
    }
    .sell-form-wrapper {
        padding: 20px 16px;
    }
    .sell-form-wrapper h3 {
        font-size: 20px;
    }
    .phone-number {
        font-size: 20px;
    }
    .prices-filters {
        padding: 16px;
    }
    .inventory-card {
        padding: 24px 18px;
    }
    .step-card {
        padding: 24px 16px;
    }
}

@media (max-width: 576px) {
    .price-table {
        font-size: 12px;
    }
    .price-table thead th,
    .price-table tbody td {
        padding: 8px 10px;
    }
    .material-info {
        gap: 8px;
    }
    .material-name {
        font-size: 12px;
    }
    .trend {
        font-size: 11px;
    }
    .sell-form-wrapper {
        padding: 16px 12px;
    }
    .sell-form-wrapper h3 {
        font-size: 18px;
    }
    .inventory-meta {
        flex-direction: column;
        gap: 4px;
    }
    .price-update-badge {
        font-size: 12px;
        padding: 4px 12px;
    }
}

/* ============================================================
   LOCATIONS PAGE STYLES
   ============================================================ */

.location-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.location-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.location-icon i {
    font-size: 24px;
    opacity: 0.8;
}

.location-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    flex: 1;
}

.location-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-status.available {
    background: #4caf50;
    color: var(--white);
}

.location-status.coming-soon {
    background: #ffc107;
    color: var(--text-color);
}

.location-body {
    padding: 20px 24px;
}

.location-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-body p i {
    color: var(--primary-color);
    width: 18px;
}

.location-hours h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin: 12px 0 6px;
}

.location-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-hours ul li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 2px 0;
    display: flex;
    gap: 12px;
}

.location-hours ul li span {
    font-weight: 500;
    color: var(--text-color);
    min-width: 60px;
}

.location-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.location-services .badge {
    background: rgba(45, 106, 79, 0.06);
    color: var(--primary-color);
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
}

.location-footer {
    padding: 12px 24px 20px;
}

/* Service Areas */
.service-areas {
    margin-top: 24px;
}

.area-badge {
    background: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.area-badge i {
    color: var(--primary-color);
    margin-right: 6px;
}

.area-badge:hover {
    border-color: var(--primary-color);
    background: rgba(45, 106, 79, 0.02);
}

/* ============================================================
   YARD FINDER PAGE STYLES
   ============================================================ */

.finder-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.finder-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.finder-wrapper h3 .highlight {
    color: var(--primary-color);
}

.finder-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.distance-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.distance-btn {
    padding: 6px 16px;
    border: 2px solid #e0e8e0;
    border-radius: 50px;
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    color: var(--text-muted);
}

.distance-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.distance-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.yard-map-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.yard-map-wrapper .map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.yard-map-wrapper .map-overlay .overlay-content {
    color: var(--white);
    text-align: center;
}

.yard-map-wrapper .map-overlay .overlay-content i {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.8;
}

.yard-map-wrapper .map-overlay .overlay-content span {
    font-size: 16px;
    opacity: 0.9;
}

.yard-results {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.yard-results h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.yard-result-item {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.yard-result-item:hover {
    border-color: var(--primary-color);
    background: rgba(45, 106, 79, 0.02);
}

.yard-result-item:last-child {
    margin-bottom: 0;
}

.yard-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

.yard-result-header h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.yard-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.yard-status.open {
    background: #4caf50;
    color: var(--white);
}

.yard-status.closed {
    background: #e63946;
    color: var(--white);
}

.yard-result-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.yard-result-item p i {
    color: var(--primary-color);
    width: 18px;
}

/* ============================================================
   SCHEDULE PICKUP PAGE STYLES
   ============================================================ */

.schedule-form-wrapper {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.schedule-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.schedule-form-wrapper h3 .highlight {
    color: var(--primary-color);
}

.schedule-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.schedule-form-wrapper .form-control,
.schedule-form-wrapper .form-select {
    border-radius: 8px;
    border: 2px solid #e0e8e0;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.schedule-form-wrapper .form-control:focus,
.schedule-form-wrapper .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.schedule-form-wrapper .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.schedule-form-wrapper .btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.3);
}

/* Schedule Info Sidebar */
.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-info .info-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.schedule-info .info-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.schedule-info .info-card h4 i {
    margin-right: 8px;
}

.schedule-info .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-info .info-list li {
    padding: 6px 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-info .info-list li i {
    color: var(--primary-color);
    font-size: 14px;
}

.schedule-info .phone-number {
    font-size: 24px;
    font-weight: 700;
}

.schedule-info .phone-number a {
    color: var(--primary-color);
}

.schedule-info .phone-number a:hover {
    color: var(--primary-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    .finder-wrapper,
    .schedule-form-wrapper {
        padding: 24px 20px;
    }
    .finder-wrapper h3,
    .schedule-form-wrapper h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .location-header {
        padding: 16px 18px;
    }
    .location-body {
        padding: 16px 18px;
    }
    .location-footer {
        padding: 12px 18px 16px;
    }
    .location-header h3 {
        font-size: 16px;
    }
    .yard-map-wrapper .map-responsive iframe {
        height: 300px;
    }
    .yard-map-wrapper .map-overlay .overlay-content i {
        font-size: 28px;
    }
    .yard-map-wrapper .map-overlay .overlay-content span {
        font-size: 14px;
    }
    .schedule-form-wrapper {
        padding: 20px 16px;
    }
    .schedule-form-wrapper h3 {
        font-size: 20px;
    }
    .schedule-info .info-card {
        padding: 18px 16px;
    }
    .schedule-info .phone-number {
        font-size: 20px;
    }
    .distance-options {
        gap: 6px;
    }
    .distance-btn {
        font-size: 12px;
        padding: 4px 12px;
    }
}

@media (max-width: 576px) {
    .location-header {
        flex-wrap: wrap;
    }
    .location-status {
        font-size: 10px;
        padding: 2px 10px;
    }
    .yard-result-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .finder-wrapper {
        padding: 16px 12px;
    }
    .finder-wrapper h3 {
        font-size: 18px;
    }
    .schedule-form-wrapper {
        padding: 16px 12px;
    }
    .schedule-form-wrapper h3 {
        font-size: 18px;
    }
    .schedule-form-wrapper .form-control,
    .schedule-form-wrapper .form-select {
        font-size: 13px;
        padding: 8px 12px;
    }
    .schedule-info .phone-number {
        font-size: 18px;
    }
}

/* ============================================================
   SCRAP CALCULATOR STYLES
   ============================================================ */

.calculator-wrapper {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.calculator-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.calculator-wrapper h3 .highlight {
    color: var(--primary-color);
}

.calculator-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.calculator-form .form-group {
    margin-bottom: 18px;
}

.calculator-form .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 6px;
}

.calculator-form .form-control,
.calculator-form .form-select {
    border-radius: 8px;
    border: 2px solid #e0e8e0;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.calculator-form .form-control:focus,
.calculator-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.unit-options {
    display: flex;
    gap: 8px;
}

.unit-btn {
    padding: 8px 20px;
    border: 2px solid #e0e8e0;
    border-radius: 8px;
    background: var(--white);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    color: var(--text-muted);
}

.unit-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.unit-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

/* Results */
.results-wrapper {
    animation: fadeInUp 0.5s ease;
}
#resultImageWrapper {
    text-align: center;
}

.result-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-color);
}

.result-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.result-badge {
    background: rgba(45, 106, 79, 0.06);
    color: var(--primary-color);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.result-details {
    margin-bottom: 20px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.result-row:last-child {
    border-bottom: none;
}

.result-label {
    color: var(--text-muted);
    font-size: 14px;
}

.result-value {
    font-weight: 600;
    color: var(--text-color);
}

.total-row {
    padding-top: 14px;
    margin-top: 4px;
    border-top: 2px solid var(--primary-color);
}

.total-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.result-actions .btn {
    padding: 12px;
    font-weight: 600;
}

.result-actions .btn-primary {
    background: var(--primary-color);
    border: none;
}

.result-actions .btn-primary:hover {
    background: var(--primary-light);
}

.result-note {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(255, 193, 7, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.15);
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-note i {
    color: #ffc107;
    font-size: 18px;
}

/* ============================================================
   MARKETPLACE STYLES
   ============================================================ */

.filters-wrapper {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.filters-wrapper .form-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.filters-wrapper .form-control,
.filters-wrapper .form-select {
    border-radius: 8px;
    border: 2px solid #e0e8e0;
    padding: 8px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filters-wrapper .form-control:focus,
.filters-wrapper .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.listing-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.listing-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.listing-badge.selling {
    background: #4caf50;
    color: var(--white);
}

.listing-badge.buying {
    background: #2196f3;
    color: var(--white);
}

.listing-image {
    height: 200px;
    overflow: hidden;
    background: #e8f5e9;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-body {
    padding: 18px 20px 20px;
}

.listing-body h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.listing-meta {
    display: flex;
    gap: 14px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.listing-meta i {
    color: var(--primary-color);
    margin-right: 4px;
}

.listing-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 8px 0;
}

.listing-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.listing-seller {
    font-size: 13px;
    color: var(--text-muted);
}

.listing-seller i {
    color: var(--primary-color);
    margin-right: 4px;
}

/* Post Listing */
.post-listing-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.post-listing-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.post-listing-wrapper h3 .highlight {
    color: var(--primary-color);
}

.post-listing-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.listing-type-options {
    display: flex;
    gap: 12px;
}

.type-btn {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e8e0;
    border-radius: 8px;
    background: var(--white);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.type-btn:hover {
    border-color: var(--primary-color);
}

.type-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.type-btn i {
    font-size: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    .calculator-wrapper,
    .post-listing-wrapper {
        padding: 24px 20px;
    }
    .calculator-wrapper h3,
    .post-listing-wrapper h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .listing-type-options {
        flex-direction: column;
    }
    .result-header {
        flex-wrap: wrap;
        gap: 8px;
    }
    .result-header h4 {
        font-size: 18px;
    }
    .total-value {
        font-size: 20px;
    }
    .calculator-wrapper {
        padding: 20px 16px;
    }
    .calculator-wrapper h3 {
        font-size: 20px;
    }
    .post-listing-wrapper {
        padding: 20px 16px;
    }
    .post-listing-wrapper h3 {
        font-size: 20px;
    }
    .filters-wrapper {
        padding: 16px;
    }
}

@media (max-width: 576px) {
    .result-row {
        font-size: 13px;
        padding: 8px 0;
    }
    .result-value {
        font-size: 13px;
    }
    .unit-options {
        gap: 4px;
    }
    .unit-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    .listing-body h4 {
        font-size: 15px;
    }
    .listing-meta {
        font-size: 12px;
        gap: 8px;
    }
    .listing-price {
        font-size: 17px;
    }
    .listing-footer {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
}


/* ============================================================
   AUTH PAGES STYLES (Login, Register)
   ============================================================ */

.auth-wrapper {
    background: var(--white);
    padding: 40px 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
}

.auth-header h1 .highlight {
    color: var(--primary-color);
}

.auth-header p {
    color: var(--text-muted);
    font-size: 16px;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 6px;
}

.auth-form .form-control {
    border-radius: 8px;
    border: 2px solid #e0e8e0;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.password-wrapper {
    position: relative;
}

.password-wrapper .form-control {
    padding-right: 48px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    padding: 4px 8px;
}

.password-toggle:hover {
    color: var(--text-color);
}

.auth-form .form-check {
    padding-left: 28px;
}

.auth-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.auth-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.forgot-link {
    color: var(--text-muted);
    font-size: 14px;
}

.forgot-link:hover {
    color: var(--primary-color);
}

.auth-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-form .btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.auth-footer p {
    color: var(--text-muted);
    font-size: 14px;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.auth-footer a:hover {
    color: var(--primary-light);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0 16px;
    color: var(--text-muted);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.auth-divider span {
    padding: 0 16px;
}

.demo-credentials {
    background: var(--bg-light);
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

.demo-credentials p {
    margin: 0;
}

.demo-credentials strong {
    color: var(--text-color);
}

/* ============================================================
   DASHBOARD STYLES
   ============================================================ */

.dashboard-sidebar {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.user-profile {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 16px;
}

.user-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 28px;
    color: var(--white);
}

.user-profile h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-profile p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dashboard-nav a {
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-nav a i {
    width: 20px;
    font-size: 16px;
}

.dashboard-nav a:hover {
    background: rgba(45, 106, 79, 0.04);
    color: var(--primary-color);
}

.dashboard-nav a.active {
    background: var(--primary-color);
    color: var(--white);
}

.dashboard-nav a.logout {
    color: #e63946;
    margin-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 16px;
}

.dashboard-nav a.logout:hover {
    background: rgba(230, 57, 70, 0.04);
}

.dashboard-content {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 30px;
}

.dashboard-header {
    margin-bottom: 28px;
}

.dashboard-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.dashboard-header p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 0;
}

.stat-card {
    background: var(--bg-light);
    padding: 20px 16px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.recent-activity {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.recent-activity h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--bg-light);
    transition: var(--transition);
}

.activity-item:hover {
    background: rgba(45, 106, 79, 0.03);
}

.activity-icon {
    font-size: 18px;
    margin-top: 2px;
}

.activity-content {
    flex: 1;
}

.activity-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}

.activity-content p strong {
    color: var(--text-color);
}

.activity-time {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   ORDERS PAGE STYLES
   ============================================================ */

.orders-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 30px;
}

.orders-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.orders-wrapper h2 .highlight {
    color: var(--primary-color);
}

.orders-wrapper > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.orders-table {
    margin-bottom: 0;
}

.orders-table thead th {
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-color);
    font-weight: 600;
    font-size: 13px;
    padding: 12px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.orders-table tbody tr:hover {
    background: rgba(45, 106, 79, 0.02);
}

.order-status {
    display: inline-block;
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.order-status.completed {
    background: rgba(76, 175, 80, 0.12);
    color: #4caf50;
}

.order-status.processing {
    background: rgba(33, 150, 243, 0.12);
    color: #2196f3;
}

.order-status.pending {
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
}

.order-status.cancelled {
    background: rgba(230, 57, 70, 0.12);
    color: #e63946;
}

.orders-pagination {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* ============================================================
   PROFILE PAGE STYLES
   ============================================================ */

.profile-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 30px;
}

.profile-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.profile-wrapper h2 .highlight {
    color: var(--primary-color);
}

.profile-wrapper > p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 24px;
}

.profile-form .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 6px;
}

.profile-form .form-control {
    border-radius: 8px;
    border: 2px solid #e0e8e0;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.profile-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

/* ============================================================
   RESPONSIVE - DASHBOARD
   ============================================================ */

@media (max-width: 992px) {
    .dashboard-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    .dashboard-content,
    .orders-wrapper,
    .profile-wrapper {
        padding: 24px 20px;
    }
    .auth-wrapper {
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {
    .auth-header h1 {
        font-size: 26px;
    }
    .dashboard-header h2 {
        font-size: 20px;
    }
    .stat-number {
        font-size: 20px;
    }
    .orders-table thead th,
    .orders-table tbody td {
        padding: 8px 10px;
        font-size: 12px;
    }
    .orders-wrapper h2,
    .profile-wrapper h2 {
        font-size: 20px;
    }
    .activity-item {
        padding: 10px 12px;
    }
}

@media (max-width: 576px) {
    .auth-wrapper {
        padding: 24px 16px;
    }
    .auth-header h1 {
        font-size: 22px;
    }
    .dashboard-content,
    .orders-wrapper,
    .profile-wrapper {
        padding: 16px 12px;
    }
    .orders-table {
        font-size: 12px;
    }
    .orders-table thead th,
    .orders-table tbody td {
        padding: 6px 8px;
        font-size: 11px;
    }
    .stat-card {
        padding: 14px 12px;
    }
    .stat-number {
        font-size: 17px;
    }
    .stat-label {
        font-size: 12px;
    }
    .activity-content p {
        font-size: 13px;
    }
}

/* ============================================================
   BLOG STYLES
   ============================================================ */

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

.blog-body {
    padding: 20px;
}

.blog-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-body h3 a {
    color: var(--text-color);
    transition: var(--transition);
}

.blog-body h3 a:hover {
    color: var(--primary-color);
}

.blog-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
    gap: 8px;
}

.blog-date {
    font-size: 13px;
    color: var(--text-muted);
}

.blog-date i {
    color: var(--primary-color);
    margin-right: 4px;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(4px);
}

/* Featured Post */
.featured-post {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.featured-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.featured-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.featured-excerpt {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.featured-meta i {
    color: var(--primary-color);
    margin-right: 4px;
}

/* Blog Detail */
.blog-article {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.article-header {
    margin-bottom: 24px;
}

.article-category {
    display: inline-block;
    background: rgba(45, 106, 79, 0.08);
    color: var(--primary-color);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.article-meta i {
    color: var(--primary-color);
    margin-right: 4px;
}

.article-image {
    margin-bottom: 24px;
}

.article-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.article-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 0 12px;
}

.article-content p {
    margin-bottom: 16px;
}

.article-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.article-content ul li {
    margin-bottom: 6px;
}

.article-footer {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.article-tags .tag {
    padding: 4px 14px;
    border-radius: 50px;
    background: var(--bg-light);
    font-size: 12px;
    color: var(--text-muted);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.article-share span {
    font-size: 14px;
    color: var(--text-muted);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: var(--white);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #000;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.email {
    background: #6c757d;
}

/* ============================================================
   FAQS STYLES
   ============================================================ */

.faq-search-wrapper {
    background: var(--bg-light);
    padding: 24px 28px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-search .input-group {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border-radius: 50px;
    overflow: hidden;
}

.faq-search .form-control {
    border: 2px solid #e0e8e0;
    border-right: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 50px 0 0 50px;
}

.faq-search .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.faq-search .btn {
    border-radius: 0 50px 50px 0;
    padding: 14px 24px;
}

.faq-search-results {
    margin-top: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.faq-search-results p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
}

.faq-categories {
    margin-bottom: 30px;
    overflow-x: auto;
}

.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 22px;
    border: 2px solid #e0e8e0;
    border-radius: 50px;
    background: var(--white);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    white-space: nowrap;
}

.category-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.faq-category-section {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(45, 106, 79, 0.08);
}

.faq-item {
    border: 1px solid #e0e8e0;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(45, 106, 79, 0.2);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(45, 106, 79, 0.02);
}

.faq-question i {
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fafbfa;
}

.faq-answer.open {
    padding: 16px 20px 20px 20px;
    max-height: 2000px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-answer ul,
.faq-answer ol {
    margin: 8px 0 12px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer li {
    margin-bottom: 6px;
}

.no-results {
    text-align: center;
    padding: 50px 20px;
}

.no-results i {
    font-size: 48px;
    color: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 16px;
}

.no-results h3 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.no-results p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.faq-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 45px 40px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 40px;
}

.faq-contact h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-contact p {
    opacity: 0.9;
    margin-bottom: 24px;
    font-size: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.faq-contact .btn-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
}

.faq-contact .btn-outline-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}

.faq-contact .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* ============================================================
   LEGAL PAGES (Terms, Privacy)
   ============================================================ */

.legal-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.legal-updated {
    background: var(--bg-light);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.legal-updated p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(45, 106, 79, 0.06);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-content ul li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--primary-color);
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ============================================================
   RESPONSIVE - BLOG, FAQS, LEGAL
   ============================================================ */

@media (max-width: 992px) {
    .featured-title {
        font-size: 24px;
    }
    .article-header h1 {
        font-size: 28px;
    }
    .legal-content {
        padding: 30px 24px;
    }
    .legal-content h2 {
        font-size: 24px;
    }
    .blog-article {
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {
    .featured-post {
        padding: 20px;
    }
    .featured-title {
        font-size: 20px;
    }
    .featured-excerpt {
        font-size: 14px;
    }
    .featured-meta {
        gap: 12px;
        font-size: 13px;
    }
    .blog-image {
        height: 180px;
    }
    .blog-body h3 {
        font-size: 16px;
    }
    .article-header h1 {
        font-size: 24px;
    }
    .article-meta {
        gap: 12px;
        font-size: 13px;
    }
    .article-content {
        font-size: 15px;
    }
    .article-content h3 {
        font-size: 20px;
    }
    .faq-search-wrapper {
        padding: 16px 18px;
    }
    .faq-question {
        font-size: 15px;
        padding: 14px 16px;
    }
    .faq-category-title {
        font-size: 20px;
    }
    .faq-contact {
        padding: 30px 24px;
    }
    .faq-contact h3 {
        font-size: 22px;
    }
    .legal-content {
        padding: 24px 18px;
    }
    .legal-content h2 {
        font-size: 22px;
        margin-top: 30px;
    }
    .legal-content h3 {
        font-size: 18px;
    }
    .blog-article {
        padding: 24px 18px;
    }
    .category-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }
}

@media (max-width: 576px) {
    .featured-title {
        font-size: 18px;
    }
    .featured-meta {
        flex-direction: column;
        gap: 6px;
    }
    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .article-header h1 {
        font-size: 20px;
    }
    .article-meta {
        flex-direction: column;
        gap: 6px;
    }
    .article-content {
        font-size: 14px;
    }
    .article-share {
        flex-wrap: wrap;
    }
    .faq-question {
        font-size: 14px;
        padding: 12px 14px;
    }
    .faq-answer.open {
        padding: 12px 14px 16px 14px;
        font-size: 14px;
    }
    .faq-contact {
        padding: 24px 16px;
    }
    .faq-contact h3 {
        font-size: 20px;
    }
    .faq-contact-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .legal-content {
        padding: 18px 14px;
    }
    .legal-content h2 {
        font-size: 20px;
        margin-top: 24px;
    }
    .legal-content h3 {
        font-size: 16px;
    }
    .legal-content p,
    .legal-content ul li {
        font-size: 14px;
    }
    .blog-article {
        padding: 18px 14px;
    }
    .category-tab {
        font-size: 13px;
        padding: 6px 14px;
    }
}

/* ============================================================
   SERVICES PAGE STYLES - ADD THESE
   ============================================================ */

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: #f8faf8;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero .highlight {
    color: #2d6a4f;
}

.hero-text {
    font-size: 18px;
    color: #6b7a6b;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0 0 16px 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #2d6a4f;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #2d6a4f;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Service Detail Card */
.service-detail-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: transparent;
}

.service-image-wrapper {
    position: relative;
}

.service-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #2d6a4f, #1a4a36);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.service-icon-overlay {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #2d6a4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    border: 3px solid white;
    box-shadow: 0 4px 20px rgba(45, 106, 79, 0.35);
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon-overlay {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-content {
    padding: 22px 24px 24px;
}

.service-detail-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.service-detail-content > p {
    color: #6b7a6b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}

.service-detail-content ul li {
    padding: 4px 0;
    font-size: 13px;
    color: #6b7a6b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-content ul li i {
    color: #2d6a4f;
    font-size: 13px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.bg-light {
    background: #f8f9fa !important;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: #2d6a4f;
    opacity: 0.12;
    line-height: 1;
}

.process-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 8px;
    color: #1a1a2e;
}

.process-card p {
    font-size: 14px;
    color: #6b7a6b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #2d6a4f;
    color: white;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: #2d6a4f;
    border-color: white;
    transform: translateY(-2px);
}

.btn-primary {
    background: white;
    color: #2d6a4f;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}

/* Section Tag */
.section-tag {
    display: inline-block;
    background: rgba(45, 106, 79, 0.08);
    color: #2d6a4f;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.section-title .highlight {
    color: #2d6a4f;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2d6a4f, #d4af37);
    margin: 12px auto 20px;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .service-detail-content ul {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .service-detail-content {
        padding: 16px;
    }
    
    .service-detail-content h3 {
        font-size: 16px;
    }
}

/* Categories Grid Styles */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.category-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.category-card p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 40px;
}

.category-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 15px;
    min-height: 30px;
}

.price-tag {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    color: #2c3e50;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.price-tag.featured {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

.price-tag strong {
    color: #27ae60;
}

.trend {
    font-size: 12px;
}

.price-more {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 8px;
}

.no-prices {
    color: #95a5a6;
    font-size: 13px;
    margin: 10px 0;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-link:hover {
    gap: 12px;
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(4px);
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: 2px solid #3498db;
    color: #3498db;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-outline-primary i {
    transition: transform 0.3s ease;
}

.btn-outline-primary:hover i {
    transform: translateX(4px);
}

.mt-4 {
    margin-top: 30px;
}

.text-center {
    text-align: center;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.section-title .highlight {
    color: #3498db;
}

.section-line {
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #1a1a2e;
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Testimonial Styles */
.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stars {
    color: #f1c40f;
    margin-bottom: 15px;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
    margin: 0 0 20px 0;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author .name {
    font-weight: 700;
    color: #1a1a2e;
}

.author .role {
    font-size: 14px;
    color: #7f8c8d;
}


.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .carousel-content {
        padding: 30px;
        margin: 0 15px;
    }
    
    .carousel-content h1 {
        font-size: 28px;
    }
    
    .carousel-item {
        min-height: 400px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

/* Contact Page Styles */
.contact-info-wrapper {
    background: var(--white, #ffffff);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 1px solid #e9ecef;
}

.contact-info-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.contact-info-wrapper > p {
    color: #6b7a6b;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item i {
    font-size: 20px;
    color: #2d6a4f;
    margin-top: 3px;
    min-width: 24px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.contact-info-item p {
    margin: 0;
    color: #6b7a6b;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-item a {
    color: #6b7a6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #2d6a4f;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(45, 106, 79, 0.06);
    color: #2d6a4f;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
}

.contact-social a:hover {
    background: #2d6a4f;
    color: white;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white, #ffffff);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    height: 100%;
    border: 1px solid #e9ecef;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.contact-form-wrapper h3 .highlight {
    color: #2d6a4f;
}

.contact-form-wrapper > p {
    color: #6b7a6b;
    margin-bottom: 24px;
    font-size: 15px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-radius: 8px;
    border: 2px solid #e0e8e0;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: #2d6a4f;
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
    outline: none;
}

.contact-form-wrapper .form-label {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.text-danger {
    color: #e63946;
}

.contact-form-wrapper .btn-primary {
    background: #2d6a4f;
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    color: white;
}

.contact-form-wrapper .btn-primary:hover {
    background: #1a4a36;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.3);
}

.btn-lg {
    padding: 14px 35px;
    font-size: 16px;
}

.w-100 {
    width: 100%;
}

.map-section {
    padding: 0 0 80px 0;
}

.map-responsive {
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .contact-info-wrapper h3,
    .contact-form-wrapper h3 {
        font-size: 20px;
    }
    
    .map-section {
        padding: 0 0 40px 0;
    }
}

@media (max-width: 576px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 16px;
    }
}

/* Location Card Styles */
.location-card {
    background: var(--white, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.location-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #2d6a4f, #1a4a36);
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.location-icon {
    font-size: 24px;
    opacity: 0.9;
    flex-shrink: 0;
}

.location-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    flex: 1;
}

.location-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-status.open {
    background: #4caf50;
    color: white;
}

.location-status.coming_soon {
    background: #ffc107;
    color: #1a1a2e;
}

.location-main-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    background: #ffd700;
    color: #1a1a2e;
    text-transform: uppercase;
}

.location-body {
    padding: 20px 24px;
}

.location-body p {
    font-size: 14px;
    color: #6b7a6b;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-body p i {
    color: #2d6a4f;
    width: 18px;
    margin-top: 3px;
}

.location-body p a {
    color: #6b7a6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-body p a:hover {
    color: #2d6a4f;
}

.location-hours {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.location-hours h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 6px 0;
}

.location-hours h4 i {
    color: #2d6a4f;
    margin-right: 6px;
}

.location-hours p {
    font-size: 13px;
    color: #6b7a6b;
    margin-bottom: 2px;
    padding-left: 24px;
}

.location-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.location-services .badge {
    padding: 4px 12px;
    font-weight: 500;
    font-size: 11px;
    border-radius: 50px;
}

.location-footer {
    padding: 12px 24px 20px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.py-5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .location-header {
        padding: 16px 18px;
    }
    
    .location-header h3 {
        font-size: 16px;
    }
    
    .location-body {
        padding: 16px 18px;
    }
    
    .location-footer {
        padding: 12px 18px 16px;
    }
}

@media (max-width: 576px) {
    .location-header {
        flex-wrap: wrap;
    }
    
    .location-status {
        font-size: 10px;
        padding: 2px 10px;
    }
}

/* Yard Finder Styles */
.yard-finder-hero {
    /* Using page-hero from main CSS */
}

.finder-wrapper {
    background: var(--white, #ffffff);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}

.finder-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.finder-wrapper h3 .highlight {
    color: #2d6a4f;
}

.finder-wrapper > p {
    color: #6b7a6b;
    margin-bottom: 24px;
    font-size: 15px;
}

.finder-wrapper .form-label {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.finder-wrapper .form-control {
    border-radius: 8px;
    border: 2px solid #e0e8e0;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.finder-wrapper .form-control:focus {
    border-color: #2d6a4f;
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
    outline: none;
}

.input-group {
    display: flex;
    gap: 0;
}

.input-group .form-control {
    border-radius: 8px 0 0 8px;
    flex: 1;
}

.input-group .btn {
    border-radius: 0 8px 8px 0;
    padding: 12px 20px;
    background: #2d6a4f;
    color: white;
    border: none;
}

.input-group .btn:hover {
    background: #1a4a36;
}

.distance-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.distance-btn {
    padding: 6px 16px;
    border: 2px solid #e0e8e0;
    border-radius: 50px;
    background: var(--white, #ffffff);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #6b7a6b;
}

.distance-btn:hover {
    border-color: #2d6a4f;
    color: #2d6a4f;
}

.distance-btn.active {
    border-color: #2d6a4f;
    background: #2d6a4f;
    color: white;
}

.finder-wrapper .btn-primary {
    background: #2d6a4f;
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    color: white;
}

.finder-wrapper .btn-primary:hover {
    background: #1a4a36;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 106, 79, 0.3);
}

.btn-lg {
    padding: 14px 35px;
    font-size: 16px;
}

.w-100 {
    width: 100%;
}

.mt-3 {
    margin-top: 16px;
}

.yard-results {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.yard-results h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.yard-result-item {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.yard-result-item:hover {
    border-color: #2d6a4f;
    background: rgba(45, 106, 79, 0.02);
}

.yard-result-item:last-child {
    margin-bottom: 0;
}

.yard-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 6px;
}

.yard-result-header h5 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #1a1a2e;
}

.yard-status {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.yard-status.open {
    background: #4caf50;
    color: white;
}

.yard-status.closed {
    background: #e63946;
    color: white;
}

.yard-result-item p {
    font-size: 13px;
    color: #6b7a6b;
    margin-bottom: 4px;
}

.yard-result-item p i {
    color: #2d6a4f;
    width: 18px;
}

.yard-map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.map-responsive {
    border-radius: 16px;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-radius: 16px;
}

.map-overlay.hidden {
    display: none;
}

.overlay-content {
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
    opacity: 0.8;
}

.overlay-content span {
    font-size: 16px;
    opacity: 0.9;
}

.btn-outline-primary {
    display: inline-block;
    padding: 6px 16px;
    border: 2px solid #2d6a4f;
    color: #2d6a4f;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #2d6a4f;
    color: white;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}

.invalid-feedback {
    color: #e63946;
    font-size: 13px;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .finder-wrapper {
        padding: 20px;
    }
    
    .finder-wrapper h3 {
        font-size: 20px;
    }
    
    .yard-map-wrapper .map-responsive iframe {
        height: 350px;
    }
    
    .overlay-content i {
        font-size: 32px;
    }
    
    .overlay-content span {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .finder-wrapper {
        padding: 16px;
    }
    
    .distance-options {
        gap: 4px;
    }
    
    .distance-btn {
        font-size: 12px;
        padding: 4px 12px;
    }
    
    .yard-result-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.site-footer {
    background: #1a1a2e;
    color: #e9ecef;
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3498db;
}

.footer-description {
    color: #adb5bd;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #e9ecef;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #3498db;
    transform: translateY(-3px);
    color: #ffffff;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #3498db;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #adb5bd;
}

.footer-contact a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: #3498db;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    font-size: 18px;
}

.footer-bottom {
    padding: 20px 0;
    margin-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #6c757d;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #3498db;
}
/* ============================================================ */
/* FOOTER LOGO - ROUNDED AND SMALLER                          */
/* ============================================================ */

.footer-column .logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-column .logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-column .logo img:hover {
    border-color: var(--secondary-color, #d4af37);
    transform: scale(1.05);
}

/* Optional: Add a subtle shadow */
.footer-column .logo img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-column .logo img {
        width: 120px;
        height: 120px;
    }
}
/* ============================================================ */
/* FOOTER - MORE LINK                                         */
/* ============================================================ */

.footer-more-link {
    margin-top: 5px;
}

.footer-more-link .more-link {
    color: var(--secondary-color, #d4af37);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.footer-more-link .more-link:hover {
    gap: 10px;
    color: #ffffff;
}

.footer-more-link .more-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-more-link .more-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}
@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }    
    
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-color: #1a1a2e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-breadcrumbs {
    margin-bottom: 20px;
}

.hero-breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 5px;
}

.hero-breadcrumbs li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.hero-breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.4);
}

.hero-breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.hero-breadcrumbs a:hover {
    color: #3498db;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.hero-search {
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-cta.primary {
    background: #3498db;
    color: #ffffff;
}

.hero-cta.primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .search-form {
        flex-direction: column;
        background: transparent;
        padding: 0;
        border: none;
        border-radius: 0;
    }
    
    .search-input {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        padding: 14px 20px;
    }
    
    .search-btn {
        border-radius: 50px;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Animation for stats */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animated {
    animation: countUp 0.8s ease forwards;
}

.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    margin: 0;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content {
    text-align: center;
}

.newsletter-header {
    margin-bottom: 30px;
}

.newsletter-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.newsletter-header h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.newsletter-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #ffffff;
    color: #764ba2;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-btn:active {
    transform: scale(0.98);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin: 15px 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.form-checkbox label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox a {
    color: #ffffff;
    text-decoration: underline;
}

.form-checkbox a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-message {
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
}

.newsletter-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #d4edda;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.newsletter-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #f8d7da;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 20px;
    }
    
    .newsletter-header h2 {
        font-size: 24px;
    }
    
    .form-group {
        flex-direction: column;
        background: transparent;
        padding: 0;
        border: none;
        border-radius: 0;
    }
    
    .newsletter-input {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        padding: 14px 20px;
    }
    
    .newsletter-btn {
        border-radius: 50px;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .form-checkbox {
        align-items: center;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.category-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, <?php echo $color ?? '#3498db'; ?>, <?php echo $color ?? '#2ecc71'; ?>);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.category-card p {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 40px;
}

.category-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 15px;
    min-height: 30px;
}



.price-tag {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 13px;
    color: #2c3e50;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.price-tag.featured {
    background: #fff3cd;
    border: 1px solid #ffc107;
}

.price-tag strong {
    color: #27ae60;
}

.trend {
    font-size: 12px;
}

.price-more {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 8px;
}

.no-prices {
    color: #95a5a6;
    font-size: 13px;
    margin: 10px 0;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-link:hover {
    gap: 12px;
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(4px);
}

.alert-danger {
    padding: 15px 20px;
    border-radius: 8px;
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.text-center {
    text-align: center;
}

.col-12 {
    width: 100%;
}

.mt-4 {
    margin-top: 30px;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: 2px solid #3498db;
    color: #3498db;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.btn-outline-primary i {
    transition: transform 0.3s ease;
}

.btn-outline-primary:hover i {
    transform: translateX(4px);
}
/* ============================================================ */
/* CATEGORY IMAGE - CLEAN HOVER EFFECT                         */
/* ============================================================ */

.category-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HOVER EFFECT 1: ZOOM + OVERLAY ===== */
.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.category-card:hover .category-image-overlay {
    opacity: 1;
}

.category-overlay-icon {
    color: #ffffff;
    font-size: 32px;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.category-card:hover .category-overlay-icon {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* ===== HOVER EFFECT 2: SHIMMER ===== */
.category-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 30%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 70%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: left 0.8s ease;
    z-index: 3;
    pointer-events: none;
}

.category-card:hover .category-image-wrapper::before {
    left: 150%;
}

/* ===== HOVER EFFECT 3: GLOW BORDER ===== */
.category-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.category-card:hover .category-image-wrapper::after {
    border-color: var(--category-color, #3498db);
    box-shadow: inset 0 0 30px rgba(var(--category-color-rgb, 52, 152, 219), 0.2);
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .category-card h3 {
        font-size: 18px;
    }
}
.price-display-wrapper {
    margin: 20px 0;
}

.price-table-responsive {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.price-table thead {
    background: #1a1a2e;
    color: #ffffff;
}

.price-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.price-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}

.price-table tbody tr:hover {
    background: #f8f9fa;
}

.price-table .price {
    color: #27ae60;
    font-weight: 700;
    font-size: 16px;
}

.grade-badge {
    display: inline-block;
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    background: #e9ecef;
    color: #2c3e50;
}

.alert-warning {
    padding: 15px 20px;
    border-radius: 8px;
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.text-danger {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .price-table th,
    .price-table td {
        padding: 10px 14px;
        font-size: 13px;
    }
}

 .stats-section {
        padding: 20px 0;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #e9ecef;
    }
    
    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border-color: #3498db;
    }
    
    .stat-icon {
        font-size: 32px;
        line-height: 1;
        flex-shrink: 0;
    }
    
    .stat-content {
        display: flex;
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 24px;
        font-weight: 700;
        color: #2c3e50;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 13px;
        color: #7f8c8d;
        margin-top: 2px;
    }
    
    @media (max-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        
        .stat-card {
            padding: 15px;
        }
        
        .stat-icon {
            font-size: 24px;
        }
        
        .stat-number {
            font-size: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .stats-grid {
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        .stat-card {
            flex-direction: column;
            text-align: center;
            padding: 15px 10px;
        }
    }

/*-- ============================================ -->
<!-- CAROUSEL STYLES & INITIALIZATION            -->
<!-- ============================================ --*/
/* Hero Carousel */
.carousel-item {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.carousel-content {
    max-width: 600px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    margin: 0 20px;
}

.carousel-content .badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(52, 152, 219, 0.8);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.carousel-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.carousel-content h1 .highlight {
    color: #3498db;
}

.carousel-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}


/* Hero Carousel Styles - Complete */
.hero-carousel-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 500px;
}

.hero-carousel-section .carousel {
    min-height: 500px;
}

.hero-carousel-section .carousel-item {
    min-height: 500px;
    position: relative;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.carousel-bg::before {
    content: '';
    position: absolute;
    inset: 0;    
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    max-width: 600px;
    color: var(--white, #ffffff);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-carousel-section .carousel-content .badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(52, 152, 219, 0.8);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}

.hero-carousel-section .carousel-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-carousel-section .carousel-content h1 .highlight {
    color: var(--secondary-color, #d4af37);
}

.hero-carousel-section .carousel-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.7;
}

.hero-carousel-section .carousel-content .btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-carousel-section .carousel-content .btn-primary {
    background: var(--secondary-color, #d4af37);
    color: var(--text-color, #1a1a2e);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-carousel-section .carousel-content .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.hero-carousel-section .carousel-content .btn-outline {
    background: transparent;
    color: var(--white, #ffffff);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-carousel-section .carousel-content .btn-outline:hover {
    background: var(--white, #ffffff);
    color: var(--text-color, #1a1a2e);
    border-color: var(--white, #ffffff);
    transform: translateY(-2px);
}

/* Carousel Controls */
.hero-carousel-section .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-carousel-section:hover .carousel-control {
    opacity: 1;
}

.hero-carousel-section .carousel-control-prev {
    left: 20px;
}

.hero-carousel-section .carousel-control-next {
    right: 20px;
}

.hero-carousel-section .carousel-control .carousel-control-icon {
    color: white;
    font-size: 20px;
}

/* Carousel Indicators */

/*
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: #3498db;
    width: 30px;
    border-radius: 6px;
}
*/
.hero-carousel-section .carousel-indicators {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-carousel-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white, #ffffff);
    background: transparent;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-indent: -9999px;
}

.hero-carousel-section .carousel-indicators button.active {
    background: var(--secondary-color, #d4af37);
    border-color: var(--secondary-color, #d4af37);
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-carousel-section .carousel-item {
        min-height: 450px;
    }
    .carousel-content {
        min-height: 450px;
        padding: 40px 30px;
    }
    .hero-carousel-section .carousel-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-carousel-section .carousel-item {
        min-height: 400px;
    }
    .carousel-content {
        min-height: 400px;
        padding: 30px 20px;
        max-width: 100%;
    }
    .hero-carousel-section .carousel-content h1 {
        font-size: 28px;
    }
    .hero-carousel-section .carousel-content p {
        font-size: 15px;
    }
    .hero-carousel-section .carousel-content .btn-group .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    .hero-carousel-section .carousel-control {
        display: none !important;
    }
    
    .hero-carousel-section .carousel-indicators {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
}
     
}

@media (max-width: 576px) {
    .hero-carousel-section .carousel-item {
        min-height: 350px;
    }
    .carousel-content {
        min-height: 350px;
        padding: 20px 16px;
    }
    .hero-carousel-section .carousel-content h1 {
        font-size: 22px;
    }
    .hero-carousel-section .carousel-content p {
        font-size: 13px;
    }
    .hero-carousel-section .carousel-content .badge {
        font-size: 10px;
        padding: 3px 12px;
    }
    .hero-carousel-section .carousel-content .btn-group {
        flex-direction: column;
    }
    .hero-carousel-section .carousel-content .btn-group .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
   
}
  .hero-carousel-section .carousel-item {
    min-height: 500px;
    position: relative;
} 

.hero-carousel-section .carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
}
}

/* ============================================================ */
/* PROCESS SECTION - SELLING STYLES                            */
/* ============================================================ */

.process-icon-wrapper {
    margin-bottom: 15px;
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary-light);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.4);
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    text-align: left;
}

.process-list li {
    padding: 4px 0;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.process-list li i {
    color: var(--primary-color);
    font-size: 14px;
}

/* ============================================================ */
/* DEFAULT INFO PANEL - SCRAP CALCULATOR                       */
/* ============================================================ */

.default-info-wrapper {
    height: 100%;
}

.default-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.default-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(45, 106, 79, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.default-info-icon i {
    font-size: 36px;
    color: #2d6a4f;
}

.default-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.default-info-card p {
    font-size: 15px;
    color: #6b7a6b;
    margin-bottom: 20px;
}

.default-info-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 350px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2c3e50;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 8px;
}

.feature-item i {
    font-size: 16px;
    flex-shrink: 0;
}

.default-info-steps {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 350px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7a6b;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6b7a6b;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    background: #2d6a4f;
    color: #ffffff;
}

.step-indicator.active .step-text {
    color: #1a1a2e;
    font-weight: 600;
}
/* Responsive */
@media (max-width: 768px) {
    .default-info-card {
        padding: 30px 20px;
    }
    
    .default-info-features {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .default-info-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .default-info-features {
        grid-template-columns: 1fr;
    }
    
    .default-info-icon {
        width: 60px;
        height: 60px;
    }
    
    .default-info-icon i {
        font-size: 28px;
    }
    
    .default-info-card h3 {
        font-size: 20px;
    }
}

/* ============================================================ */
/* CTA SECTION WITH BACKGROUND IMAGE                           */
/* ============================================================ */

.cta-section-with-bg {
    position: relative;
    background-image: url('../images/cta-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 80px 0;
    overflow: hidden;
    min-height: 300px;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(45, 106, 79, 0.75) 100%);
    z-index: 1;
}

/* For mobile - remove fixed background attachment */
@media (max-width: 768px) {
    .cta-section-with-bg {
        background-attachment: scroll;
        padding: 60px 0;
    }
}

