/* ========================================
   ENHANCED UI/UX IMPROVEMENTS
   - Modern Typography & Hierarchy
   - Improved Spacing & Padding
   - Premium Button Styles
   - Smooth Animations
   - Mobile Responsive
   ======================================== */

/* ========== TYPOGRAPHY IMPROVEMENTS ========== */
body {
    font-family: 'Hind', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1F2937;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6,
.main-title {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.main-title {
    font-size: clamp(32px, 5vw, 48px);
    color: #000000;
    margin-bottom: 16px;
}

.sub-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F59E0B;
    display: inline-block;
    margin-bottom: 24px;
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 16px;
}

/* ========== HEADER ENHANCEMENTS ========== */
#header {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#header .sticky-area-wrap.fixed-show {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.text-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

#menu-primary-menu > li {
    margin: 0 20px;
    position: relative;
}

#menu-primary-menu > li > a {
    font-size: 15px;
    font-weight: 700;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

#menu-primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #F59E0B;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#menu-primary-menu > li:hover > a::after,
#menu-primary-menu > li.current-menu-item > a::after {
    width: 100%;
}

/* ========== HERO SECTION IMPROVEMENTS ========== */
.page-title-home1 {
    padding: 180px 20px 120px;
    position: relative;
}

.page-title-home1 h1 {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.page-title-home1 p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: #E5E7EB;
    max-width: 700px;
    margin: 0 auto 32px;
}

/* Left align banner content */
.tf-section.section-banner .widget-banner .content,
.tf-section.section-banner .widget-banner .content .main-title,
.tf-section.section-banner .widget-banner .content .sub-title,
.tf-section.section-banner .widget-banner .content p {
    text-align: left !important;
}

.tf-section.section-banner .widget-banner .content .button {
    justify-content: flex-start !important;
}

/* ========== BUTTON ENHANCEMENTS ========== */
.widget-button,
button[type="submit"],
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.widget-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.widget-button:hover::before {
    width: 300px;
    height: 300px;
}

.widget-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.widget-button:active {
    transform: translateY(0);
}

/* ========== SERVICE CARDS IMPROVEMENTS ========== */
.widget-service-item {
    border-radius: 16px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.widget-service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: #F59E0B;
}

.widget-service-item .content {
    padding: 32px;
}

.widget-service-item .icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #000000 0%, #374151 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.widget-service-item:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
}

.widget-service-item .icon span {
    font-size: 32px;
    color: #FFFFFF;
}

.widget-service-item .text a {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    transition: color 0.3s ease;
}

.widget-service-item:hover .text a {
    color: #F59E0B;
}

.widget-service-item p {
    color: #6B7280;
    line-height: 1.7;
    margin: 16px 0;
}

/* ========== SECTION SPACING ========== */
.tf-section {
    padding: 100px 20px;
}

.section-service {
    background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}

.section-about-us {
    background: #FFFFFF;
    padding: 100px 20px;
}

.section-choose-us {
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
}

.section-get-quote {
    background: linear-gradient(135deg, #000000 0%, #1F2937 100%);
    padding: 100px 20px;
}

.section-testimonial {
    background: #F9FAFB;
    padding: 100px 20px;
}

/* ========== CHOOSE US CARDS ========== */
.widget-choose-us-item {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.widget-choose-us-item:hover {
    border-left-color: #F59E0B;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateX(8px);
}

.widget-choose-us-item .widget-block-1 {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.widget-choose-us-item:hover .widget-block-1 {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    transform: scale(1.05);
}

.widget-choose-us-item .text a {
    font-size: 20px;
    font-weight: 800;
    color: #000000;
    transition: color 0.3s ease;
}

.widget-choose-us-item:hover .text a {
    color: #F59E0B;
}

/* ========== TESTIMONIAL CARDS ========== */
.widget-testimonial-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #F59E0B;
    transition: all 0.3s ease;
}

.widget-testimonial-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.widget-testimonial-item .icon-star-full {
    color: #F59E0B;
    font-size: 18px;
    margin-right: 4px;
}

/* ========== FOOTER ENHANCEMENTS ========== */
.footer {
    background: linear-gradient(180deg, #000000 0%, #1F2937 100%);
    padding-top: 80px;
}

.footer-content .title {
    font-size: 20px;
    font-weight: 800;
    color: #F59E0B;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-content .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #F59E0B;
}

.footer-content .service ul li a,
.footer-content .location p {
    transition: all 0.3s ease;
}

.footer-content .service ul li:hover a {
    color: #F59E0B;
    padding-left: 8px;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-social a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.widget-social a:hover {
    background: #F59E0B;
    border-color: #F59E0B;
    transform: translateY(-4px) scale(1.1);
}

/* ========== FORM INPUTS ========== */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #F59E0B;
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1200px) {
    .tf-section {
        padding: 80px 20px;
    }
    
    #menu-primary-menu > li {
        margin: 0 12px;
    }
}

@media (max-width: 768px) {
    .tf-section {
        padding: 60px 16px;
    }
    
    .page-title-home1 {
        padding: 140px 16px 80px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .widget-service-item,
    .widget-choose-us-item {
        margin-bottom: 24px;
    }
    
    .widget-service-item .content,
    .widget-choose-us-item {
        padding: 24px;
    }
    
    .widget-testimonial-item {
        padding: 24px;
    }
    
    .footer-content .col-md-4 {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .page-title-home1 h1 {
        font-size: 28px;
    }
    
    .widget-button {
        width: 100%;
        padding: 12px 24px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .sub-title {
        font-size: 12px;
    }
}

/* ========== SMOOTH SCROLLING ========== */
html {
    scroll-behavior: smooth;
}

/* ========== ACCESSIBILITY ========== */
*:focus-visible {
    outline: 3px solid #F59E0B;
    outline-offset: 2px;
}

/* ========== LOADING STATES ========== */
.preload-container {
    background: #FFFFFF;
    z-index: 9999;
}

/* ========== GO TO TOP BUTTON ========== */
.go-top {
    width: 50px;
    height: 50px;
    background: #F59E0B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.go-top:hover {
    background: #000000;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }


/* ========== NEW SECTIONS STYLING ========== */

/* Feature Box Hover Effect */
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15) !important;
    border-color: #F59E0B !important;
}

/* CTA Section Button Hover */
.section-cta-new .widget-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.section-cta-new .widget-button:nth-child(2):hover {
    background: #FFFFFF;
    color: #000000;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .section-why-choose-new {
        padding: 60px 16px !important;
    }
    
    .section-why-choose-new .main-title {
        font-size: 32px !important;
    }
    
    .section-why-choose-new p {
        font-size: 16px !important;
    }
    
    .feature-box {
        padding: 32px 24px !important;
    }
    
    .section-cta-new {
        padding: 60px 16px !important;
    }
    
    .section-cta-new h2 {
        font-size: 32px !important;
    }
    
    .section-cta-new p {
        font-size: 18px !important;
    }
    
    .section-cta-new .widget-button {
        width: 100%;
        padding: 16px 32px !important;
    }
}

@media (max-width: 480px) {
    .section-why-choose-new .main-title {
        font-size: 28px !important;
    }
    
    .section-cta-new h2 {
        font-size: 28px !important;
    }
}
