/* ==========================================================================
   Mophlawyer — Lawsy-Inspired Redesign Styles
   Brown Gradient Theme
   ========================================================================== */

/* --- TOP INFO BAR --- */
.top-info-bar {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-dark) 45%, var(--brown-900) 45%, var(--brown-900) 100%);
    padding: 0;
    position: relative;
    z-index: 10000;
    font-size: 16px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    color: var(--brown-900);
    font-weight: 600;
    padding: 10px 0;
}

.top-bar-left i {
    margin-right: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.top-bar-right a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-right a:hover {
    color: var(--gold-light) !important;
}

.top-bar-right a i {
    margin-right: 6px;
}

/* --- LAWSY HERO --- */
.lawsy-hero {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--brown-900) 0%, var(--brown-800) 50%, var(--brown-700) 100%);
    padding: 80px 0 40px;
    overflow: hidden;
    min-height: 520px;
}

.lawsy-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lawsy-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 10% 80%, rgba(212, 168, 83, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
}

.lawsy-hero-container {
    position: relative;
    z-index: 2;
}

.lawsy-hero-text {
    padding: 30px 0;
}

.lawsy-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease-out both;
}

.lawsy-hero-badge i {
    margin-right: 8px;
    color: var(--gold-light);
}

.lawsy-hero-title {
    color: var(--white) !important;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.text-gold {
    color: var(--gold) !important;
}

.text-gold-dark {
    color: var(--gold-light) !important;
}

.lawsy-hero-desc {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.lawsy-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Buttons */
.btn-lawsy-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
    color: var(--brown-900) !important;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-gold);
    text-decoration: none !important;
    cursor: pointer;
}

.btn-lawsy-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.5);
    color: var(--brown-900) !important;
}

.btn-lawsy-primary i {
    margin-right: 8px;
}

.btn-arrow {
    margin-left: 8px !important;
    margin-right: 0 !important;
    font-size: 14px;
}

.btn-lawsy-outline {
    display: inline-block;
    background: transparent !important;
    color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-bounce);
    text-decoration: none !important;
}

.btn-lawsy-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--gold-light);
    color: var(--gold-light) !important;
    transform: translateY(-3px);
}

.btn-lawsy-outline i {
    margin-right: 8px;
}

.btn-lawsy-outline-dark {
    display: inline-block;
    background: transparent;
    color: var(--gold-dark);
    border: 2px solid var(--gold);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: var(--transition-bounce);
}

.btn-lawsy-outline-dark:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--brown-900);
    transform: translateY(-2px);
}

/* Hero Image with Diagonal */
.lawsy-hero-image-wrap {
    position: relative;
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

.lawsy-hero-image-diagonal {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    width: 8px;
    background: linear-gradient(180deg, var(--gold), var(--gold-dark));
    transform: skewX(-6deg);
    z-index: 3;
    border-radius: 4px;
}

.lawsy-hero-carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.lawsy-hero-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.lawsy-hero-floating-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    animation: fadeInUp 0.7s ease-out 0.5s both;
}

.floating-badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-900);
    font-size: 16px;
}

.floating-badge-text {
    font-weight: 800;
    font-size: 22px;
    color: var(--brown-900);
    line-height: 1.1;
}

.floating-badge-text small {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
}

/* Hero Stats */
.lawsy-hero-stats {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.7s ease-out 0.5s both;
}

.lawsy-stat-item {
    text-align: center;
    padding: 10px 0;
}

.lawsy-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
}

.lawsy-stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-light);
}

.lawsy-stat-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

/* --- LAWSY SECTION HEADERS --- */
.lawsy-section-tag {
    display: inline-block;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.25);
    color: var(--gold-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.lawsy-section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--gold-light);
}

.lawsy-section-tag i {
    margin-right: 6px;
}

.lawsy-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--brown-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.lawsy-section-title.white {
    color: var(--white) !important;
}

.lawsy-section-title i {
    color: var(--gold);
    margin-right: 10px;
}

.lawsy-section-header p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.lawsy-section-header {
    margin-bottom: 40px;
}

/* --- LAWSY ABOUT --- */
.lawsy-about {
    padding: 70px 0;
    background: var(--white);
}

.lawsy-about-images {
    position: relative;
    margin-bottom: 30px;
}

.lawsy-about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--brown-100);
    position: relative;
}

.lawsy-about-img-main img {
    width: 100%;
}

.lawsy-about-img-main::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    border-left: 4px solid var(--gold);
    border-top: 4px solid var(--gold);
    border-radius: 8px 0 0 0;
}

.lawsy-about-experience {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--brown-900);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
    text-align: center;
    z-index: 2;
}

.exp-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.exp-txt {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.lawsy-about-content {
    padding-left: 20px;
}

.lawsy-president-info {
    background: linear-gradient(135deg, rgba(255, 253, 246, 0.95) 0%, rgba(228, 197, 128, 0.95) 100%);
    backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border-right: 5px solid var(--gold-dark);
    position: absolute;
    bottom: -24px;
    left: 15px;
    right: 15px;
    text-align: right;
    z-index: 5;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.lawsy-president-info .president-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-900);
    margin-bottom: 2px;
}

.lawsy-president-info .president-title {
    font-size: 14px;
    color: var(--brown-600);
    margin-bottom: 0;
}

.lawsy-about-content .lawsy-section-title {
    font-size: 28px;
}

.lawsy-about-desc {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.lawsy-about-checklist {
    margin-bottom: 28px;
}

.lawsy-check-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.lawsy-check-item>i {
    color: var(--gold);
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.lawsy-check-item h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brown-800);
    margin-bottom: 2px;
}

.lawsy-check-item p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

/* --- LAWSY SERVICES --- */
.lawsy-services {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-body), rgba(212, 168, 83, 0.03));
}

.lawsy-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(215, 204, 200, 0.3);
    transition: var(--transition-bounce);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.lawsy-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.lawsy-service-card:hover::before {
    transform: scaleX(1);
}

.lawsy-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 168, 83, 0.3);
}

.lawsy-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(212, 168, 83, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition-bounce);
}

.lawsy-service-icon i {
    font-size: 28px;
    color: var(--gold-dark);
    transition: var(--transition);
}

.lawsy-service-card:hover .lawsy-service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.lawsy-service-card:hover .lawsy-service-icon i {
    color: var(--brown-900);
}

.lawsy-service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--brown-800);
    margin-bottom: 10px;
    padding-bottom: 0;
}

.lawsy-service-card h4::after {
    display: none;
}

.lawsy-service-card p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.lawsy-service-link {
    color: var(--gold-dark) !important;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: var(--transition);
}

.lawsy-service-link:hover {
    color: var(--brown-800) !important;
}

.lawsy-service-link i {
    margin-left: 6px;
    transition: var(--transition);
}

.lawsy-service-card:hover .lawsy-service-link i {
    transform: translateX(4px);
}

/* --- LAWSY PROCESS STEPS --- */
.lawsy-process {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--brown-900) 0%, var(--brown-800) 100%);
    position: relative;
    overflow: hidden;
}

.lawsy-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
}

.lawsy-process .lawsy-section-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--gold-light);
}

.lawsy-process .lawsy-section-title {
    color: var(--white) !important;
}

.lawsy-process .lawsy-section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.lawsy-process-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-bounce);
    position: relative;
    margin-bottom: 24px;
}

.lawsy-process-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(212, 168, 83, 0.3);
}

.lawsy-process-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(212, 168, 83, 0.15);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.lawsy-process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-bounce);
}

.lawsy-process-card:hover .lawsy-process-icon {
    transform: scale(1.15) rotate(-5deg);
}

.lawsy-process-icon i {
    font-size: 22px;
    color: var(--brown-900);
}

.lawsy-process-card h4 {
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    padding-bottom: 0;
}

.lawsy-process-card h4::after {
    display: none;
}

.lawsy-process-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    margin: 0;
}

/* --- LAWSY FEATURED / BLOG CARDS --- */
.lawsy-featured {
    padding: 70px 0;
    background: var(--white);
}

.lawsy-blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(215, 204, 200, 0.3);
    transition: var(--transition-bounce);
    margin-bottom: 24px;
}

.lawsy-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 168, 83, 0.3);
}

.lawsy-blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brown-100), var(--brown-50));
}

.lawsy-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.lawsy-blog-card:hover .lawsy-blog-img img {
    transform: scale(1.08);
}

.lawsy-blog-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lawsy-blog-placeholder i {
    font-size: 48px;
    color: var(--brown-300);
}

.lawsy-blog-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--brown-900);
    font-size: 14px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(212, 168, 83, 0.4);
}

.lawsy-blog-badge i {
    margin-right: 4px;
}

.lawsy-blog-arrow {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-900) !important;
    font-size: 16px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-gold);
    text-decoration: none !important;
}

.lawsy-blog-card:hover .lawsy-blog-arrow {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.5);
}

.lawsy-blog-body {
    padding: 18px 20px;
}

.lawsy-blog-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.lawsy-blog-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.lawsy-blog-body h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0;
    padding-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lawsy-blog-body h4::after {
    display: none;
}

.lawsy-blog-body h4 a {
    color: var(--brown-800);
    text-decoration: none;
}

.lawsy-blog-body h4 a:hover {
    color: var(--gold-dark);
}

/* --- LAWSY NEWS + DOWNLOAD PANELS --- */
.lawsy-news-dl {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-body), rgba(212, 168, 83, 0.03));
}

.lawsy-content-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(215, 204, 200, 0.3);
    overflow: hidden;
    margin-bottom: 24px;
}

.lawsy-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--brown-800), var(--brown-700));
    position: relative;
}

.lawsy-panel-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.lawsy-panel-head h3 {
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.lawsy-panel-head h3 i {
    color: var(--gold-light);
    margin-right: 10px;
}

.lawsy-view-all-sm {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--transition);
}

.lawsy-view-all-sm:hover {
    color: var(--gold-light);
}

.lawsy-view-all-sm i {
    margin-left: 4px;
}

.lawsy-panel-body {
    padding: 8px 16px;
}

/* News Grid Items (Card Style) */
.lawsy-news-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -8px;
    padding: 12px;
}

.lawsy-news-grid-col {
    width: 33.333%;
    /* 3 items per row for desktop */
    padding: 12px;
}

@media (max-width: 991px) {
    .lawsy-news-grid-col {
        width: 50%;
        /* 2 items per row for tablets */
    }
}

@media (max-width: 575px) {
    .lawsy-news-grid-col {
        width: 100%;
        /* 1 item per row for mobile */
    }
}

.lawsy-news-card {
    background: var(--bg-body);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(215, 204, 200, 0.4);
    box-shadow: var(--shadow-xs);
    transition: var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lawsy-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 168, 83, 0.3);
}

.lawsy-news-card-img {
    height: 150px;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--gold);
}

.lawsy-news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.lawsy-news-card:hover .lawsy-news-card-img img {
    transform: scale(1.08);
}

.lawsy-news-card-icon {
    height: 150px;
    background: linear-gradient(135deg, var(--brown-100), var(--brown-50));
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--gold);
}

.lawsy-news-card-icon i {
    font-size: 40px;
    color: var(--brown-300);
}

.lawsy-news-card-info {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lawsy-news-card-info h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lawsy-news-card-info h5 a {
    color: var(--brown-900);
    text-decoration: none;
    transition: var(--transition);
}

.lawsy-news-card-info h5 a:hover {
    color: var(--gold-dark);
}

.lawsy-news-card-meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.lawsy-news-card-meta i {
    color: var(--gold);
    margin-right: 4px;
}

.lawsy-pin-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-dark);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Download List Styles */
.lawsy-download-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 0;
}

.lawsy-dl-list-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-body);
    border: 1px solid rgba(215, 204, 200, 0.4);
    box-shadow: var(--shadow-xs);
    transition: var(--transition-bounce);
    border-radius: var(--radius-sm);
    text-decoration: none !important;
}

.lawsy-dl-list-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 168, 83, 0.3);
    background: linear-gradient(135deg, var(--white), var(--brown-50));
    border-left: 4px solid var(--gold);
}

.lawsy-dl-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #E53935, #C62828);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.2);
}

.lawsy-dl-icon i {
    color: var(--white);
    font-size: 18px;
}

.lawsy-dl-info {
    flex: 1;
    min-width: 0;
}

.lawsy-dl-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lawsy-dl-info h5 a {
    color: var(--brown-800);
    text-decoration: none;
}

.lawsy-dl-info h5 a:hover {
    color: var(--gold-dark);
}

.lawsy-dl-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.lawsy-dl-meta i {
    color: var(--gold);
    margin-right: 3px;
}

/* --- LAWSY GALLERY --- */
.lawsy-gallery {
    padding: 70px 0;
    background: var(--white);
}

.lawsy-gallery-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(215, 204, 200, 0.3);
    transition: var(--transition-bounce);
    margin-bottom: 24px;
    background: var(--white);
}

.lawsy-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.lawsy-gallery-card a {
    text-decoration: none !important;
}

.lawsy-gallery-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.lawsy-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.lawsy-gallery-card:hover .lawsy-gallery-img img {
    transform: scale(1.1);
}

.lawsy-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.lawsy-gallery-overlay i {
    color: var(--white);
    font-size: 28px;
}

.lawsy-gallery-card:hover .lawsy-gallery-overlay {
    opacity: 1;
}

.lawsy-gallery-info {
    padding: 14px 18px;
}

.lawsy-gallery-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brown-800);
    margin-bottom: 6px;
}

.lawsy-gallery-info span {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 12px;
}

.lawsy-gallery-info span i {
    color: var(--gold);
    margin-right: 4px;
}

/* --- LAWSY CONTACT SECTION --- */
.lawsy-contact {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lawsy-contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brown-900), var(--brown-800));
    z-index: 0;
}

.lawsy-contact-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 168, 83, 0.08), transparent 50%);
}

.lawsy-contact .container {
    position: relative;
    z-index: 2;
}

.lawsy-contact-form {
    position: relative;
}

.lawsy-contact-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    margin-bottom: 28px;
}

.lawsy-form {
    margin-top: 10px;
}

.lawsy-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--white);
    font-size: 16px;
    font-family: 'Prompt', sans-serif;
    margin-bottom: 14px;
    transition: var(--transition);
    outline: none;
}

.lawsy-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.lawsy-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.2);
}

.lawsy-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-block-lawsy {
    width: 100%;
    text-align: center;
    padding: 16px;
    font-size: 16px;
    margin-top: 6px;
    border: none;
}

.lawsy-contact-cards {
    padding-left: 20px;
}

.lawsy-cinfo-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-sm);
}

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

.lawsy-cinfo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(212, 168, 83, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lawsy-cinfo-icon i {
    font-size: 20px;
    color: var(--gold-dark);
}

.lawsy-cinfo-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brown-800);
    margin-bottom: 4px;
    padding-bottom: 0;
}

.lawsy-cinfo-card h4::after {
    display: none;
}

.lawsy-cinfo-card p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* --- LAWSY CTA BANNER --- */
.lawsy-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.lawsy-cta::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    right: -80px;
    top: -100px;
}

.lawsy-cta-text h2 {
    color: var(--brown-900) !important;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
}

.lawsy-cta-text p {
    color: rgba(44, 24, 16, 0.7);
    font-size: 15px;
    margin: 0;
}

.lawsy-cta-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    flex-wrap: wrap;
}

.btn-lawsy-cta {
    display: inline-block;
    background: var(--brown-900);
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 16px rgba(44, 24, 16, 0.3);
}

.btn-lawsy-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(44, 24, 16, 0.4);
    color: var(--white) !important;
}

.btn-lawsy-cta i {
    margin-right: 8px;
}

.btn-lawsy-cta-outline {
    display: inline-block;
    background: transparent;
    color: var(--brown-900) !important;
    border: 2px solid var(--brown-900);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: var(--transition-bounce);
}

.btn-lawsy-cta-outline:hover {
    background: var(--brown-900);
    color: var(--white) !important;
    transform: translateY(-3px);
}

.btn-lawsy-cta-outline i {
    margin-right: 8px;
}

/* --- LAWSY PARTNERS --- */
.lawsy-partners {
    padding: 50px 0 30px;
    background: var(--bg-body);
}

.lawsy-partners .lawsy-section-header {
    margin-bottom: 24px;
}

.lawsy-partners .lawsy-section-title {
    font-size: 24px;
}

/* --- LAWSY FOOTER --- */
.lawsy-footer-main {
    padding: 50px 0 30px;
}

.lawsy-footer-logo {
    max-height: 60px;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.lawsy-footer-about p {
    font-size: 16px;
    line-height: 1.8;
}

.lawsy-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.lawsy-footer-links li a {
    color: var(--brown-300) !important;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.lawsy-footer-links li a:hover {
    color: var(--gold-light) !important;
    transform: translateX(4px);
}

.lawsy-footer-links li a i {
    margin-right: 8px;
    color: var(--gold);
    font-size: 14px;
}

.lawsy-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lawsy-footer-contact li {
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--brown-300) !important;
    line-height: 1.6;
}

.lawsy-footer-contact li i {
    color: var(--gold);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.lawsy-footer-newsletter {
    margin-top: 18px;
}

.lawsy-footer-newsletter p {
    font-size: 16px;
    color: var(--brown-400) !important;
    line-height: 1.6;
}

.lawsy-social {
    margin-bottom: 10px;
}

.lawsy-footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.lawsy-footer-bottom p {
    font-size: 16px;
    color: var(--brown-400) !important;
    margin: 0;
}

/* --- REVEAL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .top-info-bar {
        display: none;
    }

    .lawsy-hero {
        padding: 50px 0 30px;
        min-height: auto;
    }

    .lawsy-hero-title {
        font-size: 30px;
    }

    .lawsy-hero-slide img {
        height: 250px;
    }

    .lawsy-hero-floating-badge {
        left: 10px;
        bottom: 10px;
        padding: 12px 16px;
    }

    .floating-badge-text {
        font-size: 18px;
    }

    .lawsy-about {
        padding: 50px 0;
    }

    .lawsy-about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .lawsy-services {
        padding: 50px 0;
    }

    .lawsy-process {
        padding: 50px 0;
    }

    .lawsy-featured {
        padding: 50px 0;
    }

    .lawsy-news-dl {
        padding: 50px 0;
    }

    .lawsy-gallery {
        padding: 50px 0;
    }

    .lawsy-contact {
        padding: 50px 0;
    }

    .lawsy-contact-cards {
        padding-left: 0;
        margin-top: 30px;
    }

    .lawsy-cta-actions {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .lawsy-section-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .lawsy-hero-title {
        font-size: 24px;
    }

    .lawsy-hero-desc {
        font-size: 16px;
    }

    .lawsy-hero-image-diagonal {
        display: none;
    }

    .lawsy-hero-slide img {
        height: 200px;
    }

    .lawsy-stat-number {
        font-size: 24px;
    }

    .lawsy-section-title {
        font-size: 22px;
    }

    .lawsy-cta-text h2 {
        font-size: 22px;
    }

    .lawsy-cinfo-card {
        padding: 16px;
    }

    .lawsy-about-experience {
        right: 0;
        bottom: -10px;
        padding: 12px;
    }

    .exp-num {
        font-size: 24px;
    }
}

/* --- PEARL WHITE HEADER OVERRIDE --- */
#header .header-body {
    background: #FAF9F6 !important;
    /* Pearl White */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#header.sticky-active .header-body {
    background: rgba(250, 249, 246, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Fix Navigation Links for Light Background */
#header .header-nav-main nav>ul>li>a,
#header .header-nav-main nav>ul>li>a.dropdown-toggle {
    color: var(--brown-900) !important;
    font-weight: 600;
}

#header .header-nav-main nav>ul>li>a:hover,
#header .header-nav-main nav>ul>li>a.dropdown-toggle:hover {
    color: var(--gold-dark) !important;
}

/* Fix mobile hamburger button for light background */
#header .header-btn-collapse-nav {
    background: linear-gradient(135deg, var(--brown-100), var(--brown-50)) !important;
    color: var(--brown-900) !important;
    border: 1px solid var(--brown-200);
}

#header .header-btn-collapse-nav i {
    color: var(--brown-900) !important;
}

/* Fix Dropdown z-index */
#header {
    position: relative;
    z-index: 10000;
}

#header .header-body {
    position: relative;
    z-index: 10000;
}

#header .header-nav-main nav>ul>li.dropdown .dropdown-menu {
    z-index: 10001 !important;
}