/* Custom Forms and Modal Styling */

/* Logo Size & Styling Overrides */
.header-logo img {
    height: 75px !important;
    max-height: 85px !important;
    width: auto !important;
    border-radius: 8px !important;
    object-fit: contain !important;
    transition: transform 0.3s ease;
}

.footer-logo img {
    height: 65px !important;
    max-height: 75px !important;
    width: auto !important;
    border-radius: 8px !important;
    object-fit: contain !important;
}

.header-logo a:hover img {
    transform: scale(1.05);
}

/* Service Carpenter Hover Effect (Matching Exact User Screenshot Mockup) */
.service-carpenter {
    display: flex;
    gap: 20px;
    padding: 30px 25px 25px 30px;
    z-index: 2;
    position: relative;
    box-shadow: 0px 8px 30px rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    background-size: cover;
    background-position: center;
}

.service-carpenter:before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #1e293b;
    opacity: 0.92;
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.service-carpenter:after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    opacity: 1;
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.service-carpenter:hover:after {
    transform: scaleY(0);
}

.service-carpenter .box-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4F7FE;
    transition: all 0.4s ease;
}

.service-carpenter:hover .box-icon {
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.service-carpenter .box-icon i {
    font-size: 32px;
    color: #BA8756;
    transition: all 0.4s ease;
}

.service-carpenter:hover .box-icon i {
    transform: rotateY(180deg) scale(1.1);
    color: #BA8756;
}

.service-carpenter .media-body {
    flex: 1;
}

.service-carpenter .box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
    transition: color 0.4s ease;
}

.service-carpenter .box-title a {
    color: inherit;
}

.service-carpenter:hover .box-title,
.service-carpenter:hover .box-title a {
    color: #ffffff !important;
}

.service-carpenter .box-text {
    color: #64748b;
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.service-carpenter:hover .box-text {
    color: #cbd5e1 !important;
}

.service-carpenter .line-btn {
    color: #BA8756;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.service-carpenter:hover .line-btn {
    color: #FF9D15 !important;
}

/* Horizontal Premium Service Cards (Matching User Mockup) */
.services-section-light {
    background-color: #f8fafc !important;
    padding: 85px 0 !important;
}

.service-card-horizontal {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
    border-color: rgba(186, 135, 86, 0.4);
}

.service-card-horizontal .icon-box {
    width: 85px;
    height: 85px;
    min-width: 85px;
    background: #F4F7FE;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.35s ease;
}

.service-card-horizontal:hover .icon-box {
    background: linear-gradient(135deg, #BA8756 0%, #FF9D15 100%);
    box-shadow: 0 8px 20px rgba(186, 135, 86, 0.3);
}

.service-card-horizontal .icon-box i {
    font-size: 32px;
    color: #BA8756;
    transition: all 0.35s ease;
}

.service-card-horizontal:hover .icon-box i {
    color: #ffffff;
    transform: scale(1.1);
}

.service-card-horizontal .card-content {
    flex: 1;
}

.service-card-horizontal .card-title {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card-horizontal:hover .card-title {
    color: #BA8756;
}

.service-card-horizontal .card-text {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.service-card-horizontal .learn-more-btn {
    color: #BA8756;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.service-card-horizontal .learn-more-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card-horizontal:hover .learn-more-btn {
    color: #FF9D15;
}

.service-card-horizontal:hover .learn-more-btn i {
    transform: translateX(5px);
}

/* Premium Service Cards & Hover Animations */
.premium-services-sec {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
    position: relative;
    overflow: hidden;
}

.premium-services-sec::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(186, 135, 86, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.premium-service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #BA8756 0%, #FF9D15 100%);
    transition: height 0.3s ease;
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
    border-color: rgba(186, 135, 86, 0.35);
}

.premium-service-card:hover::before {
    height: 7px;
}

.premium-service-card .card-icon-box {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #BA8756 0%, #9E6F42 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(186, 135, 86, 0.3);
    margin-bottom: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-service-card:hover .card-icon-box {
    transform: scale(1.12) rotate(4deg);
    box-shadow: 0 12px 25px rgba(186, 135, 86, 0.45);
}

.premium-service-card .card-icon-box i {
    font-size: 28px;
    color: #ffffff;
}

.premium-service-card .card-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.premium-service-card:hover .card-title {
    color: #BA8756;
}

.premium-service-card .card-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.premium-service-card .card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #BA8756 0%, #9E6F42 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(186, 135, 86, 0.25);
    transition: all 0.3s ease;
}

.premium-service-card .card-btn i {
    transition: transform 0.3s ease;
}

.premium-service-card:hover .card-btn {
    background: linear-gradient(135deg, #FF9D15 0%, #BA8756 100%);
    box-shadow: 0 10px 25px rgba(255, 157, 21, 0.35);
}

.premium-service-card:hover .card-btn i {
    transform: translateX(6px);
}

/* Performance & Fast Rendering Optimizations */
html {
    scroll-behavior: smooth;
}

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    content-visibility: auto;
}

.preloader, .preloader-inner, #preloader, .preloaderCls {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Footer Solid Styling & Performance */
footer.footer-wrapper {
    background: #161921 !important;
    color: #cbd5e1 !important;
    position: relative !important;
    z-index: 5 !important;
}

footer.footer-wrapper .widget_title {
    color: #ffffff !important;
}

footer.footer-wrapper a,
footer.footer-wrapper .info-box_link,
footer.footer-wrapper .footer-text,
footer.footer-wrapper .about-text {
    color: #cbd5e1 !important;
}

footer.footer-wrapper a:hover {
    color: #BA8756 !important;
}

/* Navigation Menu Optimization */
.main-menu > ul > li {
    margin: 0 14px !important;
}

.main-menu > ul > li > a {
    padding: 30px 0 !important;
    font-weight: 600 !important;
}

.header-layout1 .logo-bg {
    width: 220px !important;
    pointer-events: none !important;
}

.header-layout1 .header-logo {
    padding-right: 20px !important;
}

/* Hero Section Optimization */
[data-ani] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-style5 {
    padding: 60px 0 80px 0 !important;
}

.hero-style5 .hero-title,
.hero-style5 .sub-title,
.hero-style5 .hero-text {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-5 .themeholy-hero-slide {
    padding-bottom: 0 !important;
}

.hero-5 img[src*="hero_overlay"],
.themeholy-hero-bg img {
    display: none !important;
}

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

.auth-modal {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-modal-overlay.active .auth-modal {
    transform: scale(1);
}

.auth-modal-header {
    background: #000000;
    padding: 24px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-modal-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    padding: 6px 12px;
    margin: -6px -6px -6px 0;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 100;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.auth-modal-close:hover,
.auth-modal-close:active {
    color: #A9E448;
    background: rgba(255, 255, 255, 0.2);
}

.auth-modal-tabs {
    display: flex;
    border-bottom: 1px solid #eeeeee;
}

.auth-tab-btn {
    flex: 1;
    padding: 16px;
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 15px;
    color: #666666;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.auth-tab-btn.active {
    color: #000000;
    border-bottom: 3px solid #A9E448;
    background: rgba(169, 228, 72, 0.05);
}

.auth-modal-body {
    padding: 28px;
}

.auth-form-pane {
    display: none;
}

.auth-form-pane.active {
    display: block;
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-group-custom label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
    border-color: #000000;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(169, 228, 72, 0.2);
}

.form-submit-btn {
    width: 100%;
    background: #A9E448;
    color: #000000;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background: #000000;
    color: #ffffff;
}

/* Dashboard Section Styles */
.dashboard-section {
    padding: 80px 0;
    background: #f7f9fb;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.dashboard-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.dashboard-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
}

.dashboard-tab-btn {
    padding: 12px 28px;
    border-radius: 30px;
    background: #efefef;
    border: 1px solid #dddddd;
    font-weight: 600;
    color: #444444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dashboard-tab-btn.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.dashboard-pane {
    display: none;
}

.dashboard-pane.active {
    display: block;
}

/* File Upload styling */
.file-upload-drag-zone {
    border: 2px dashed #cccccc;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.file-upload-drag-zone:hover {
    border-color: #000000;
    background: rgba(169, 228, 72, 0.03);
}

.file-upload-drag-zone i {
    font-size: 32px;
    color: #888888;
    margin-bottom: 10px;
}

.file-upload-drag-zone p {
    margin: 0;
    font-size: 14px;
    color: #555555;
}

.file-upload-drag-zone input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.file-preview-item {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #dddddd;
    position: relative;
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Alert styles */
.form-alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
    font-weight: 500;
}

.form-alert.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-alert.danger {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile & Tablet Responsive Media Queries for Modal */
@media (max-width: 576px) {
    .auth-modal {
        width: 92%;
        margin: 15px auto;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
    }
    .auth-modal-header {
        padding: 16px 20px;
    }
    .auth-modal-header h3 {
        font-size: 15px;
    }
    .auth-modal-body {
        padding: 20px;
        overflow-y: auto;
        max-height: calc(90vh - 110px);
    }
    .auth-tab-btn {
        padding: 12px;
        font-size: 14px;
    }
}

/* =========================================================
   LUXURIOUS DARK GLASSMORPHIC SERVICES SECTION
   ========================================================= */
#service-sec {
    background: #090d16 !important;
    background-image: 
        radial-gradient(at 0% 0%, rgba(169, 228, 72, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(186, 135, 86, 0.08) 0px, transparent 50%) !important;
    position: relative;
    padding: 100px 0 !important;
}

#service-sec .title-area .sub-title {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(169, 228, 72, 0.1) !important;
    border: 1px solid rgba(169, 228, 72, 0.3) !important;
    color: #A9E448 !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 0 20px rgba(169, 228, 72, 0.15) !important;
}

#service-sec .title-area .sub-title img {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
}

#service-sec .title-area .sec-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.6px !important;
}

.service-carpenter {
    background: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-radius: 24px !important;
    padding: 36px 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    z-index: 1;
    height: 100% !important;
}

.service-carpenter::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, #A9E448 0%, #BA8756 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    z-index: 3 !important;
}

.service-carpenter::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at top right, rgba(169, 228, 72, 0.12) 0%, transparent 60%) !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    pointer-events: none !important;
    z-index: 2 !important;
}

.service-carpenter:hover {
    transform: translateY(-10px) scale(1.02) !important;
    background: rgba(15, 23, 42, 0.95) !important;
    border-color: rgba(169, 228, 72, 0.45) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(169, 228, 72, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.service-carpenter:hover::before,
.service-carpenter:hover::after {
    opacity: 1 !important;
}

.service-carpenter .box-icon {
    width: 74px !important;
    height: 74px !important;
    min-width: 74px !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, rgba(169, 228, 72, 0.18) 0%, rgba(186, 135, 86, 0.12) 100%) !important;
    border: 1px solid rgba(169, 228, 72, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin-bottom: 24px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

.service-carpenter .box-icon i {
    font-size: 32px !important;
    color: #A9E448 !important;
    transition: all 0.4s ease !important;
}

.service-carpenter:hover .box-icon {
    background: linear-gradient(135deg, #A9E448 0%, #BA8756 100%) !important;
    border-color: #A9E448 !important;
    transform: scale(1.12) rotate(6deg) !important;
    box-shadow: 0 10px 25px rgba(169, 228, 72, 0.5) !important;
}

.service-carpenter:hover .box-icon i {
    color: #000000 !important;
    transform: scale(1.1) !important;
}

.service-carpenter .box-content,
.service-carpenter .media-body {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.service-carpenter .box-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 10px !important;
    transition: color 0.3s ease !important;
}

.service-carpenter .box-title a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.service-carpenter:hover .box-title a {
    color: #A9E448 !important;
}

.service-carpenter .box-text {
    font-size: 15px !important;
    color: #94a3b8 !important;
    line-height: 1.65 !important;
    margin-bottom: 24px !important;
    flex-grow: 1 !important;
    transition: color 0.3s ease !important;
}

.service-carpenter:hover .box-text {
    color: #cbd5e1 !important;
}

.service-carpenter .box-btn,
.service-carpenter .line-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #A9E448 !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.service-carpenter .box-btn i,
.service-carpenter .line-btn i {
    font-size: 13px !important;
    transition: transform 0.3s ease !important;
}

.service-carpenter:hover .box-btn,
.service-carpenter:hover .line-btn {
    background: #A9E448 !important;
    color: #000000 !important;
    border-color: #A9E448 !important;
    box-shadow: 0 6px 20px rgba(169, 228, 72, 0.4) !important;
}

.service-carpenter:hover .box-btn i,
.service-carpenter:hover .line-btn i {
    transform: translateX(5px) !important;
    color: #000000 !important;
}

@media (max-width: 768px) {
    #service-sec {
        padding: 60px 0 !important;
    }
    #service-sec .title-area .sec-title {
        font-size: 30px !important;
    }
    .service-carpenter {
        padding: 28px 22px !important;
    }
    .service-carpenter .box-icon {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
    }
    .service-carpenter .box-icon i {
        font-size: 26px !important;
    }
    .service-carpenter .box-title {
        font-size: 20px !important;
    }
}

/* =========================================================
   TESTIMONIALS SECTION ENHANCEMENTS
   ========================================================= */
.testi-block {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 32px 28px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.testi-block:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(186, 135, 86, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(186, 135, 86, 0.15) !important;
}

.testi-block_avater {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    border: 3px solid #BA8756 !important;
    box-shadow: 0 6px 16px rgba(186, 135, 86, 0.2) !important;
}

.testi-block_avater img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.testi-block_text {
    font-size: 15px !important;
    color: #334155 !important;
    line-height: 1.7 !important;
    font-style: italic !important;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
}

.testi-block_profile .box-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 2px !important;
}

.testi-block_desig {
    color: #BA8756 !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
}

.testi-sec4 {
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    padding: 100px 0 !important;
}

.testi-sec4::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(9, 13, 22, 0.92) 100%) !important;
    z-index: 1 !important;
}

.testi-sec4 .container {
    position: relative !important;
    z-index: 2 !important;
}

.testi-sec4 .title-area .sec-title {
    color: #ffffff !important;
    font-size: 40px !important;
    font-weight: 800 !important;
}

.testi-sec4 .title-area .sub-title {
    background: rgba(186, 135, 86, 0.15) !important;
    border: 1px solid rgba(186, 135, 86, 0.35) !important;
    color: #BA8756 !important;
    font-weight: 700 !important;
}
