/* ========================================
   CSS-ONLY UI/UX IMPROVEMENTS
   No HTML structure changes
   ======================================== */

/* === MODERN TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
}

h1, h2, h3, h4, h5, h6,
.main-title,
.title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* === IMPROVED HEADER === */
#header {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header-wrap {
    padding: 1rem 2rem;
}

#menu-primary-menu > li > a {
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

#menu-primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #042181;
    transition: width 0.3s ease;
}

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

/* === IMPROVED BUTTONS === */
.widget-button,
button,
input[type="submit"] {
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(4, 33, 129, 0.15);
}

.widget-button:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(4, 33, 129, 0.25);
}

/* === IMPROVED SPACING === */
.tf-section {
    padding: 80px 2rem;
}

.widget-service-wrap,
.widget-choose-us-wrap {
    gap: 2rem;
}

/* === IMPROVED CARDS === */
.widget-service-item,
.widget-choose-us-item,
.widget-testimonial-item {
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.widget-service-item:hover,
.widget-choose-us-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.widget-service-item .content,
.widget-choose-us-item .content {
    padding: 2rem;
}

/* === IMPROVED INPUTS === */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #042181;
    box-shadow: 0 0 0 3px rgba(4, 33, 129, 0.1);
    outline: none;
}

/* === IMPROVED FOOTER === */
.footer {
    padding-top: 80px;
}

.footer-content {
    padding-bottom: 60px;
}

.footer .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer .service ul li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer .service ul li:hover {
    padding-left: 32px;
}

/* === SECTION TITLES === */
.widget-title-section,
.widget-title-section-1 {
    margin-bottom: 3rem;
}

.main-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.sub-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* === IMPROVED TESTIMONIALS === */
.widget-testimonial-item {
    padding: 2rem;
    border-radius: 16px;
}

.widget-testimonial-item .heading {
    margin-bottom: 1.5rem;
}

.widget-testimonial-item .name {
    font-weight: 700;
    font-size: 17px;
}

.widget-testimonial-item p {
    line-height: 1.7;
    font-size: 15px;
}

/* === IMPROVED HERO === */
.home-01 {
    padding: 120px 2rem 80px;
}

.home-01 h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.home-01 p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* === IMPROVED ABOUT SECTION === */
.widget-about-us ul li {
    padding: 1rem 0;
    font-size: 16px;
}

.widget-about-us .poster img {
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* === IMPROVED GET QUOTE === */
.get-quote-box {
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.comment-wrap-input {
    gap: 1rem;
}

/* === SMOOTH TRANSITIONS === */
a,
button,
.widget-button,
.widget-service-item,
.widget-choose-us-item,
input,
textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === IMPROVED HOVER EFFECTS === */
.widget-post .image img {
    transition: transform 0.4s ease;
}

.widget-post:hover .image img {
    transform: scale(1.05);
}

/* === GO TO TOP BUTTON === */
.go-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #042181;
    box-shadow: 0 4px 16px rgba(4, 33, 129, 0.3);
    transition: all 0.3s ease;
}

.go-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(4, 33, 129, 0.4);
}

/* === RESPONSIVE IMPROVEMENTS === */
@media (max-width: 1024px) {
    .tf-section {
        padding: 60px 1.5rem;
    }
    
    .header-wrap {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .home-01 {
        padding: 100px 1.5rem 60px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .widget-service-item .content,
    .widget-choose-us-item .content {
        padding: 1.5rem;
    }
    
    .get-quote-box {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .tf-section {
        padding: 40px 1rem;
    }
    
    .widget-button,
    button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .main-title {
        font-size: 28px;
    }
}

/* === IMPROVED ALIGNMENT === */
.widget-service-wrap,
.widget-choose-us-wrap,
.widget-blog-update-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* === IMPROVED SHADOWS === */
.widget-service-item,
.widget-choose-us-item,
.get-quote-box,
.widget-testimonial-item {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.widget-service-item:hover,
.widget-choose-us-item:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* === IMPROVED ICONS === */
.widget-service-item .icon,
.widget-choose-us-item .image {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* === IMPROVED TEXT HIERARCHY === */
.widget-service-item .text a,
.widget-choose-us-item .text a {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.widget-service-item p,
.widget-choose-us-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

/* === IMPROVED FOOTER BOTTOM === */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom p {
    font-size: 14px;
}

/* === IMPROVED WIDGET SOCIAL === */
.widget-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.widget-social a:hover {
    transform: translateY(-3px);
}

/* === IMPROVED PAGE TITLE === */
.page-title {
    padding: 120px 2rem 100px;
}

.page-title h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
}

/* === IMPROVED CONTENT TEXT === */
.content-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* === IMPROVED CONTACT INFO === */
.site-main .contact-info h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 1rem;
}

.site-main .contact-info .location > div {
    padding: 1rem 0;
}

/* === PREMIUM LOOK === */
.widget-service-item,
.widget-choose-us-item,
.widget-testimonial-item,
.get-quote-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* === IMPROVED LOADING STATES === */
.widget-button:active,
button:active {
    transform: translateY(0);
}

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

/* === IMPROVED CONTRAST === */
.widget-service-item .text a,
.widget-choose-us-item .text a,
.main-title,
.title {
    color: #042181;
}

p,
.widget-service-item p,
.widget-choose-us-item p {
    color: #4a5568;
}


/* ========================================
   NEW SECTIONS - CTA & CONTENT+IMAGE
   ======================================== */

/* === CTA SECTION === */
.section-cta-new {
    background: linear-gradient(135deg, #042181 0%, #0a3aa8 100%);
    padding: 80px 2rem;
    text-align: center;
}

.widget-cta-new {
    max-width: 900px;
    margin: 0 auto;
}

.cta-headline {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-text {
    font-family: 'Hind', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: #C0F8E8;
    color: #042181;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(192, 248, 232, 0.3);
}

.cta-primary:hover {
    background: #FFFFFF;
    color: #042181;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(192, 248, 232, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #FFFFFF;
    padding: 16px 32px;
    font-weight: 700;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #FFFFFF;
    color: #042181;
    transform: translateY(-3px);
}

/* === CONTENT + IMAGE SECTION === */
.section-content-image {
    padding: 100px 2rem;
    background: #FFFFFF;
}

.widget-content-image {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-image-left {
    flex: 1;
}

.content-image-left img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.content-image-right {
    flex: 1;
}

.content-heading {
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.3;
    color: #042181;
    margin-bottom: 20px;
}

.content-image-right p {
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4F556A;
    margin-bottom: 16px;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.content-list li {
    font-family: 'Hind', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #042181;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-list li span {
    font-size: 20px;
    color: #C0F8E8;
}

.content-cta {
    background: #042181;
    color: #C0F8E8;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(4, 33, 129, 0.2);
}

.content-cta:hover {
    background: #C0F8E8;
    color: #042181;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(4, 33, 129, 0.3);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .section-cta-new {
        padding: 60px 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .section-content-image {
        padding: 60px 1.5rem;
    }
    
    .widget-content-image {
        flex-direction: column;
        gap: 40px;
    }
    
    .content-image-left,
    .content-image-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-cta-new {
        padding: 40px 1rem;
    }
    
    .cta-headline {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .section-content-image {
        padding: 40px 1rem;
    }
    
    .content-heading {
        font-size: 24px;
    }
}
