@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bebas Neue';
    src: url('BebasNeue-Regular.woff2') format('woff2'),
        url('BebasNeue-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.woff2') format('woff2'),
        url('../fonts/Poppins-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}




:root {
    --primary-color: linear-gradient(73deg, rgba(240, 140, 60, 1) 0%, rgba(225, 98, 57, 1) 50%);
    --secondary-color: #050505;
    --text-color: #4a4a4a;
    --heading-color: #ee6b42;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --success-color: #28a745;
    --transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea {
	margin: 0;
	padding: 0;
	font-family: 'Poppins';
}
* {
	margin: 0;
	padding: 0;
    box-sizing: border-box;
}
a{
	text-decoration: none;
    transition: var(--transition);
}
a:hover {
	text-decoration: none;
}
a:focus {
	text-decoration: none;
}
ul {
	list-style: none;
	padding: 0;
}
body{
	font-family: 'Poppins', sans-serif !important;
    color: var(--text-color);
    line-height: 1.6;
}

/* ************************************ */
/*RESPONSIVE NAVIGATION*/
.mobile-menu{
    display: none;
  }
  .mobile-menu .circle {
   width: 40px;
   height: 40px;
   line-height: 40px;
   color: #fff;
   border-radius: 50%;
   background: #005879;
   margin: 0 auto;
   font-size: 16px;
   position: fixed;
   right: 40px;
   top: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 2;
 }
 .mobile-menu .mobile-cross {
   width: 40px;
   height: 40px;
   line-height: 40px;
   color: #fff;
   border-radius: 50%;
   background: #005879;
   margin: 0 auto;
   font-size: 16px;
   position: fixed;
   right: 0px;
   top: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 99999;
 }
 .mobile-menu .nveMenu {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   width: 280px;
   height: 100%;
   background: #fff;
   opacity: 0;
   visibility: hidden;
   z-index: 999;
   transform: translateX(-320px);
   transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
   padding: 40px 20px;
 }
 .mobile-menu .nveMenu.is-opened {
   opacity: 1;
   visibility: visible;
   transform: translateX(0);
 }
 .mobile-menu .overlay {
     position: fixed;
     top: 0;
     right: 0;
     width: calc(100% - 280px);
     height: 100%;
     background: rgba(0, 0, 0, 0.71);
     opacity: 0;
     visibility: hidden;
     transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
   }
   .mobile-menu .overlay.is-on {
     opacity: 1;
     visibility: visible;
     z-index: 999;
   }
   .mobile-menu .navlinks li {
     display: block;
     padding: 12px 0;
   }
   .mobile-menu .navlinks li a {
     text-transform: uppercase;
     color: #666;
     font-weight: 700;
   }
   .mobile-menu .navlinks li a:hover {
     text-decoration: none;
   }
 /*RESPONSIVE NAVIGATION*/
 

/* ************************************ */
/* HEADER STYLES */
.main-header {
    background: var(--white);
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.header-contact a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    position: relative;
}

.chat-link {
    color: var(--text-color);
}

.phone-link {
    /* font-size: 18px !important; */
}

.quote-btn {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    padding: 11px 0;
}

.quote-btn:hover {
    background-color: #0056b3 !important;
    transform: translateY(-2px);
}

/* ************************************ */
/* HERO SECTION STYLES */
.hero-section {
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--white);
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    color: #41a6da;
    line-height: 1.1;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-color);
    max-width: 540px;
    line-height: 1.5;
}

.hero-features ul {
    list-style: none;
    padding-left: 0;
}

.hero-features li {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
}

.hero-features i {
    color: #fdc307 !IMPORTANT;
}

.hero-btns .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 12px 35px !important;
}

.btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: #e16239 !important;
    color: #fffdfd !important;
    border: 1px solid #e16239 !important;
}

/* HERO IMAGE STYLES */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.circle-bg {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    background-color: #e6f2ff;
    border-radius: 50%;
    z-index: -1;
}

.hero-img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.check-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 65px;
    height: 65px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
    border: 6px solid #fff;
    z-index: 3;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 38px;
    }
    .circle-bg {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-features ul {
        text-align: left;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .hero-btns .btn {
        margin-right: 0 !important;
    }
    .circle-bg {
        width: 280px;
        height: 280px;
    }
}

/* ************************************ */
/* WHY HIRE SECTION STYLES */
.why-hire-section {
    padding: 80px 0;
    background-color: #f7f5f5;
}

.section-title {
    font-size: 39px;
    font-weight: 700;
    color: #212529;
    line-height: 1.3;
    line-height: 1.25;
}

.section-desc {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

.feature-card {
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 55px;
    margin-bottom: 25px;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    line-height: 1.5;
}

/* Icon Colors */
.icon-purple { color: #9c27b0; }
.icon-orange { color: #ff9800; }
.icon-blue { color: #2196f3; }
.icon-yellow { color: #ffc107; }
.icon-red { color: #f44336; }
.icon-green { color: #4caf50; }

.action-btns .btn {
    padding: 12px 35px !important;
    font-weight: 600;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
    }
}
.logo img {
    width: 170px;
}

/* ************************************ */
/* WHAT WE OFFER SECTION STYLES */
.what-we-offer-section {
    background-color: var(--white);
    padding: 80px 0;
}

.max-width-700 {
    max-width: 790px;
}

.line-height-1 {
    line-height: 1.2;
}

.include-icon i {
    color: var(--primary-color);
}

.offer-image-wrapper {
    padding: 20px;
}

.offer-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    z-index: 10;
    transition: var(--transition);
}

.offer-badge:hover {
    transform: translateY(-5px);
}

.badge-icon {
    width: 35px;
    height: 35px;
    background-color: #fcece7;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-size: 14px;
}

.badge-left {
    bottom: 40px;
    left: -20px;
}

.badge-top-right {
    top: 40px;
    right: -20px;
}

.badge-bottom-right {
    bottom: 80px;
    right: -30px;
}

.offer-content .btn-primary {
    padding: 12px 30px !important;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 12px;
    font-weight: 600 !important;
}

@media (max-width: 1199px) {
    .offer-badge {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        margin: 10px auto;
        max-width: 250px;
        display: flex !important;
    }
}
.offer-content h6 {
    color: #1587c3;
    padding: 0 0 10px 0;
    text-transform: uppercase;
}

.offer-content h3 {
    font-size: 30px;
    font-weight: 600;
    color: #000;
}

.offer-content p {
    color: #000;
    font-size: 15px;
    padding: 10px 0;
}

.include-item {
    gap: 13px;
    padding: 10px 0 0 0;
}

.include-icon i {
    font-size: 25px;
    color: #1587c3;
}

.include-item span {
    font-weight: 600;
    color: #000;
}

.offer-content h5 {
    color: #000;
}
h4.offer {
    color: #1587c3;
    padding: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
}

/* ************************************ */
/* PRICING SECTION STYLES */
.pricing-section {
    background-color: #fcfcfc;
    padding-top: 80px !important;
}

.sub-title {
    color: #1587c3;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.tab-switcher-wrapper {
    display: flex;
    justify-content: center;
}

.tab-switcher {
    display: flex;
    background: #fff;
    border: 2px solid #ec833b;
    border-radius: 8px;
    overflow: hidden;
}

.tab-btn {
    padding: 12px 35px;
    border: none;
    background: transparent;
    color: #1587c3;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(73deg, rgba(240, 140, 60, 1) 0%, rgba(225, 98, 57, 1) 50%);
    color: #fff;
}

.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

.pricing-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.card-header {
    background: #1587c3;
    padding: 50px 20px 90px;
    position: relative;
    text-align: center;
    color: #fff;
}

.card-header .price {
    font-size: 45px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-header .price span {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}

.card-header .wave {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 90px;
}

.card-body {
    padding: 40px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
    text-transform: uppercase;
    min-height: 50px;
}

.features-list {
    margin-bottom: 35px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 10px;
    text-align: left;
}

/* Custom Scrollbar for features list */
.features-list::-webkit-scrollbar {
    width: 6px;
}

.features-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.features-list::-webkit-scrollbar-thumb {
    background: #1587c3;
    border-radius: 10px;
}

.features-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
    line-height: 1.4;
}

.features-list li i {
    color: #1587c3;
    margin-right: 12px;
    font-size: 12px;
    margin-top: 4px;
}

.btn-card {
    background: linear-gradient(73deg, rgba(240, 140, 60, 1) 0%, rgba(225, 98, 57, 1) 50%);
    color: #fff !important;
    font-weight: 800;
    padding: 14px;
    border-radius: 35px;
    margin-bottom: 25px;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(21, 135, 195, 0.25);
    text-align: center;
}

.btn-card:hover {
    background: linear-gradient(73deg, rgba(240, 140, 60, 1) 0%, rgba(225, 98, 57, 1) 50%);
    transform: scale(1.02);
}

.card-footer-links {
    font-size: 12px;
    font-weight: 700;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.card-footer-links a {
    text-decoration: none;
    margin-bottom: 8px;
    display: inline-block;
}

.link-blue { color: #1587c3; }
.link-black { color: #555; }
.link-red { color: #ee6b42; }

@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .card-header .price {
        font-size: 36px;
    }
}



/* ************************************ */
/* MAINTENANCE CONTACT SECTION STYLES */
.maintenance-contact-section {
    background: linear-gradient(rgb(231 116 58), rgb(59 140 201 / 54%)), url(../images/footer-background.avif);
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    /* padding: 120px 0; */
}

.maintenance-form-box {
    background: #ffffff57;
    backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    width: 550px;
}

.form-title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.form-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-control-custom, .form-select-custom {
    background: #fff !important;
    border: 1px solid #ddd !important;
    padding: 10px 16px !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    width: 100%;
    color: #333;
}

.form-control-custom::placeholder {
    color: #999;
}

.phone-input-wrapper {
    display: flex;
    gap: 15px;
}

.phone-input-wrapper select {
    width: 120px;
}

.form-check-custom {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
    font-size: 15px;
    margin-top: 25px;
}

.form-check-custom input {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    accent-color: #1587c3;
    cursor: pointer;
}

.form-check-custom label {
    cursor: pointer;
}

.form-check-custom label a {
    color: #ed843b;
    font-weight: 600;
    text-decoration: none;
}

.btn-submit-maintenance {
    background: #0076a9;
    background: linear-gradient(73deg, #0076a9 0%, #1587c3 100%);
    color: #fff;
    font-weight: 800;
    padding: 18px 50px;
    border-radius: 15px;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit-maintenance:hover {
    background: #0d6efd;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(21, 135, 195, 0.4);
}

@media (max-width: 1199px) {
    .maintenance-form-box {
        padding: 40px;
    }
    .form-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .maintenance-contact-section {
        padding: 80px 0;
    }
    .form-title {
        font-size: 28px;
    }
    .phone-input-wrapper {
        flex-direction: column;
    }
    .phone-input-wrapper select {
        width: 100%;
    }
}

/* ************************************ */
/* MODAL POPUP STYLES */

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.custom-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content-wrapper {
    position: relative;
    background: #f8fdff;
    width: 90%;
    border: 6px solid #ee883b;
    max-width: 1000px;
    padding: 60px 30px;
    border-radius: 25px;
    z-index: 10001;
    color: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-modal.active .modal-content-wrapper {
    /* transform: scale(1); */
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: none;
    color: #0076a9;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    color: #ee6b42;
}

.modal-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
    color: #0076a9;
}

.modal-subtitle {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 35px;
}

.modal-subtitle .highlight {
    color: #ed833b;
    font-weight: 700;
}

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

.modal-form input, 
.modal-form select, 
.modal-form textarea {
    width: 100%;
    background: #2d334300;
    border: 1.5px solid #3d4455;
    padding: 14px 18px;
    border-radius: 12px;
    color: #000000;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.modal-form input:focus, 
.modal-form select:focus, 
.modal-form textarea:focus {
    outline: none;
    border-color: #ee6b42;
}

.modal-form input::placeholder, 
.modal-form textarea::placeholder {
    color: #ffffff;
}

.phone-group {
    display: flex;
    gap: 12px;
}

.phone-group select {
    width: 110px;
}

.modal-form select option {
    color: #333;
    background: #fff;
}

.form-check-group {
    margin-bottom: 30px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-wrapper input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #ee6b42;
    cursor: pointer;
}

.checkbox-wrapper label {
    font-size: 13.5px;
    color: #000000;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-wrapper label a {
    color: #ef883c;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-wrapper label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(73deg, rgba(240, 140, 60, 1) 0%, rgba(225, 98, 57, 1) 50%);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(225, 98, 57, 0.4);
}

@media (max-width: 575px) {
    .modal-content-wrapper {
        padding: 30px 20px;
    }
    .modal-title {
        font-size: 28px;
    }
    .modal-subtitle {
        font-size: 14px;
    }
}
.lp5-footer-inner {
    padding: 60px 0 60px 0;
}

.lp5-footer-bar {
    padding: 20px 0;
    border-top: 1px solid;
}

p.lp5-footer-copy {
    color: #fff;
}

.lp5-footer-links {
    display: flex;
    justify-content: end;
    gap: 20px;
}

a.lp5-footer-link {
    color: #fff;
}
.feature-icon img {
    width: 110px;
}
.header-contact {
    gap: 42px;
}
.chat-link::before {
    position: absolute;
    width: 26px;
    height: 30px;
    content: "";
    background: url(../images/chat-bubble.png);
    background-position: center;
    background-repeat: no-repeat;
    left: -35px;
    top: -5px;
    background-size: contain;
}
.phone-link::before {
    position: absolute;
    width: 24px;
    height: 28px;
    content: "";
    background: url(../images/call.png);
    background-position: center;
    background-repeat: no-repeat;
    left: -27px;
    top: -2px;
    background-size: contain;
}
.lp5-offer-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* STICKY SIDEBAR STYLES */
.sticky-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
}

.sidebar-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.sidebar-item i {
    background: #0076a9;
    color: #fff;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    border-radius: 15px 0 0 15px;
    z-index: 5;
    transition: background 0.3s ease;
}

.sidebar-item:hover i {
    background: #1587c3;
}

.sidebar-item .slide-text {
    background: #fff;
    color: #000;
    height: 55px;
    display: flex;
    align-items: center;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 0;
    font-weight: 600;
    box-shadow: -10px 10px 20px rgba(0,0,0,0.1);
    font-size: 16px;
}

.sidebar-item:hover .slide-text {
    max-width: 250px;
    padding: 0 25px;
}

/* Offer Item */
.offer-item {
    display: flex;
    align-items: flex-start;
}

.offer-banner {
    background: #0076a9;
    color: #fff;
    padding: 40px 15px;
    border-radius: 20px 0 0 20px;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease;
}

.offer-item:hover .offer-banner {
    background: #1587c3;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    white-space: nowrap;
    display: block;
}

.offer-slide-form {
    max-width: 0;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #333;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -15px 15px 40px rgba(0,0,0,0.2);
}

.offer-item:hover .offer-slide-form {
    max-width: 400px;
    max-height: 600px;
    padding: 30px;
    border-left: 6px solid #ee883b;
}

.sidebar-form .form-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0076a9;
    line-height: 1.3;
}

.sidebar-form input:not([type="checkbox"]), 
.sidebar-form select, 
.sidebar-form textarea {
    width: 100%;
    border: 1.5px solid #eee !important;
    padding: 12px 15px !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
    font-size: 15px !important;
    background: #f9f9f9 !important;
    color: #333 !important;
}

.sidebar-form input:not([type="checkbox"]):focus {
    border-color: #ee883b !important;
    background: #fff !important;
}


.sidebar-form .checkbox-wrapper {
    margin: 10px 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    text-align: left;
    width: 100%;
}

.sidebar-form .checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #ee883b;
    cursor: pointer;
}

.sidebar-form .checkbox-wrapper label {
    line-height: 1.4;
    color: #666;
    cursor: pointer;
    width: 100%;
}

.sidebar-form .checkbox-wrapper label a {
    color: #ee883b;
    font-weight: 700;
    display: inline-block;
}


.sidebar-form .btn-submit {
    width: 100%;
    background: #ee883b;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.sidebar-form .btn-submit:hover {
    background: #d46e2a;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .sticky-sidebar {
        display: none;
    }
}

/* Launch Your Book Modal Styling */
.launch-book-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.launch-book-modal.active {
    display: flex;
}

.launch-book-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.launch-book-modal .modal-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.launch-book-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #000;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.launch-book-modal .modal-close:hover {
    transform: rotate(90deg);
    background: #f8991b;
    color: #fff;
}

.launch-book-modal .modal-header-bg {
    height: 120px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('../images/comb-collage-2.png');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #f8991b;
}

.launch-book-modal .modal-body {
    padding: 40px;
    text-align: center;
}

.launch-book-modal .modal-title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.1;
}

.launch-book-modal .modal-title .thin {
    font-weight: 200;
    font-style: italic;
}

.launch-book-modal .modal-title .accent {
    color: #f8991b;
}

.launch-book-modal .discount-banner {
    background: #f8991b;
    color: #fff;
    padding: 12px 30px;
    display: inline-block;
    font-size: 28px;
    font-weight: 900;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(248, 153, 27, 0.4);
    letter-spacing: 1px;
}

.launch-book-modal .modal-subtitle {
    color: #ccc;
    font-size: 18px;
    margin-bottom: 30px;
}

.launch-book-modal .modal-subtitle .highlight {
    color: #f8991b;
    font-weight: 600;
}

.launch-book-modal .modal-form {
    text-align: left;
}

.launch-book-modal .form-row {
    margin-bottom: 15px;
}

.launch-book-modal .form-row.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.launch-book-modal .form-group input, 
.launch-book-modal .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}
.form-group input::placeholder {
    color: #1b1b1b;
}
.form-group textarea::placeholder {
    color: #1b1b1b;
}
.launch-book-modal .form-group input:focus, 
.launch-book-modal .form-group textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f8991b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(248, 153, 27, 0.1);
}

.launch-book-modal .btn-submit-launch {
    width: 100%;
    background: #f8991b;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.launch-book-modal .btn-submit-launch:hover {
    background: #e08918;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 153, 27, 0.3);
}

@media (max-width: 576px) {
    .launch-book-modal .modal-title { font-size: 32px; }
    .launch-book-modal .discount-banner { font-size: 20px; }
    .launch-book-modal .form-row.split { grid-template-columns: 1fr; }
    .launch-book-modal .modal-body { padding: 25px; }
}
.modal-form .row {
    align-items: center;
}