/* 
=============================================
Custom Styles - Modern Design Updates
Based on seaandair.com.ua design inspiration
=============================================
*/

/* ============================================
   Menu Modern Styles with Border Radius
============================================ */

/* Main Menu Improvements */
.main-menu__list > li > a {
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-menu__list > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(133, 158, 63, 0.1), transparent);
    transition: left 0.5s ease;
}

.main-menu__list > li > a:hover::before {
    left: 100%;
}

.main-menu__list > li > a:hover {
    background-color: rgba(133, 158, 63, 0.1);
    transform: translateY(-2px);
}

/* Dropdown Menu Styling */
.main-menu__list > li.dropdown ul {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
    margin-top: 10px;
}

.main-menu__list > li.dropdown ul li {
    border-bottom: 1px solid rgba(133, 158, 63, 0.1);
}

.main-menu__list > li.dropdown ul li:last-child {
    border-bottom: none;
}

.main-menu__list > li.dropdown ul li a {
    padding: 12px 25px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.main-menu__list > li.dropdown ul li a:hover {
    background-color: var(--logistiq-base);
    color: #ffffff;
    padding-left: 35px;
}

/* Header Top Section */
.main-header-one__top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Hover Effect */
.logo-box a {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

/* ============================================
   Container & Truck Cards Styling
============================================ */

.container-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.container-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(133, 158, 63, 0.2);
}

.container-card__header {
    background: linear-gradient(135deg, var(--logistiq-base) 0%, #6d8230 100%);
    padding: 25px;
    color: #ffffff;
}

.container-card__header h3 {
    color: #ffffff;
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
}

.container-type {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.container-card__body {
    padding: 30px 25px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: var(--logistiq-gray);
    font-size: 15px;
}

.spec-value {
    font-weight: 600;
    color: var(--logistiq-black);
    font-size: 16px;
}

/* Featured Card */
.container-card.featured {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid var(--logistiq-base);
}

.container-card.featured .container-card__header {
    background: linear-gradient(135deg, #434343 0%, #2d2d2d 100%);
}

/* ============================================
   Loading Scheme Cards
============================================ */

.loading-scheme-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--logistiq-base);
    transition: all 0.3s ease;
}

.loading-scheme-card:hover {
    border-left-width: 8px;
    box-shadow: 0 8px 25px rgba(133, 158, 63, 0.15);
}

.loading-scheme-card h4 {
    color: var(--logistiq-black);
    margin-bottom: 20px;
    font-size: 20px;
}

.scheme-info p {
    font-weight: 600;
    color: var(--logistiq-base);
    margin-bottom: 15px;
}

.scheme-info ul {
    list-style: none;
    padding-left: 0;
}

.scheme-info ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--logistiq-gray);
}

.scheme-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--logistiq-base);
    font-weight: bold;
}

/* ============================================
   Info Block
============================================ */

.info-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 35px;
    border-left: 5px solid var(--logistiq-base);
}

.info-block h3 {
    color: var(--logistiq-black);
    margin-bottom: 20px;
    font-size: 22px;
}

.info-block p {
    margin-bottom: 12px;
    line-height: 1.8;
}

/* ============================================
   Adaptive Map Points (Responsive)
============================================ */

.banner-one__location {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1030px;
    height: 470px;
    margin: 0 auto;
    z-index: 7;
}

/* Using percentage-based positioning for responsiveness */
.banner-one__location-single.style1 {
    position: absolute;
    top: 35.5%;
    left: 46.9%;
}

.banner-one__location-single.style2 {
    position: absolute;
    top: 29.8%;
    left: 54.4%;
}

.banner-one__location-single.style3 {
    position: absolute;
    top: 33.6%;
    left: 52.7%;
}

.banner-one__location-single.style4 {
    position: absolute;
    top: 33.8%;
    left: 52.4%;
}

.banner-one__location-single.style5 {
    position: absolute;
    top: 36%;
    left: 53.4%;
}

.banner-one__location-single.style6 {
    position: absolute;
    top: 39.4%;
    left: 43%;
}

.banner-one__location-single.style7 {
    position: absolute;
    top: 41.5%;
    left: 41.7%;
}

/* Enhanced Location Points */
.banner-one__location-single .round-box {
    width: 24px;
    height: 24px;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.banner-one__location-single:hover .round-box {
    transform: scale(1.4);
}

.banner-one__location-single .round-box .bdr {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--logistiq-base);
    position: relative;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(133, 158, 63, 0.7), 0 0 0 0 rgba(133, 158, 63, 0.7);
}

.banner-one__location-single .round-box .bdr::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--logistiq-base);
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(133, 158, 63, 0.7), 0 0 0 0 rgba(133, 158, 63, 0.7);
    }
    40% {
        box-shadow: 0 0 0 10px rgba(133, 158, 63, 0), 0 0 0 0 rgba(133, 158, 63, 0.7);
    }
    80% {
        box-shadow: 0 0 0 10px rgba(133, 158, 63, 0), 0 0 0 20px rgba(133, 158, 63, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(133, 158, 63, 0), 0 0 0 0 rgba(133, 158, 63, 0);
    }
}

.banner-one__location-single .content-box {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
}

.banner-one__location-single:hover .content-box {
    opacity: 1;
    visibility: visible;
    top: 40px;
}

.banner-one__location-single .text-box {
    background: #ffffff;
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    border: 2px solid var(--logistiq-base);
    position: relative;
}

.banner-one__location-single .text-box::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--logistiq-base);
}

.banner-one__location-single .text-box::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ffffff;
}

.banner-one__location-single .text-box h4 {
    color: var(--logistiq-black);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Buttons & CTAs
============================================ */

.thm-btn {
    border-radius: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(133, 158, 63, 0.3);
}

.thm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(133, 158, 63, 0.4);
}

/* ============================================
   Truck Service Cards from Index
============================================ */

.truck-service-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.truck-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.truck-service-card__img-container {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.truck-service-card__img {
    transition: transform 0.5s ease;
}

.truck-service-card:hover .truck-service-card__img {
    transform: scale(1.08);
}

.truck-service-card__availability {
    border-radius: 20px;
}

.truck-service-card__btn {
    border-radius: 30px;
}

/* ============================================
   Responsive Design
============================================ */

@media (max-width: 1200px) {
    .banner-one__location {
        max-width: 900px;
        height: 410px;
    }
}

@media (max-width: 991px) {
    .banner-one__location {
        max-width: 700px;
        height: 350px;
    }
    
    .container-card__header h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .banner-one__location {
        display: none; /* Hide map points on mobile for better UX */
    }
    
    .container-card {
        margin-bottom: 20px;
    }
    
    .loading-scheme-card {
        margin-bottom: 20px;
    }
    
    .main-menu__list > li > a {
        padding: 8px 15px;
    }
}

@media (max-width: 575px) {
    .container-card__header {
        padding: 20px;
    }
    
    .container-card__body {
        padding: 20px;
    }
    
    .info-block {
        padding: 25px;
    }
    
    .loading-scheme-card {
        padding: 20px;
    }
}

/* ============================================
   Scroll Animations
============================================ */

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

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

.fadeInUp {
    animation-name: fadeInUp;
}

/* ============================================
   Enhanced Footer
============================================ */

.footer-one__quick-links-list li a {
    transition: all 0.3s ease;
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
}

.footer-one__quick-links-list li a:hover {
    background-color: rgba(133, 158, 63, 0.1);
    padding-left: 15px;
}

/* ============================================
   Mobile Navigation
============================================ */

.mobile-nav__toggler {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav__toggler:hover {
    background-color: rgba(133, 158, 63, 0.1);
    transform: scale(1.1);
}

/* ============================================
   Preloader Enhancement
============================================ */

.letters-loading {
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   Dynamic Map Styles
============================================ */

:root {
    --city: #ffffff;
    --label: #ffffff;
    --route-1: #ffdf69;
    --route-2: #ff8a3d;
}

/* Banner Pattern2 with Map Overlay */
.banner-one__pattern2 {
    position: relative;
    overflow: hidden;
}

.banner-one__pattern2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transform: scale(2.0);
    transform-origin: center;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.map-overlay svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-overlay .city {
    fill: var(--city);
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.8));
}

.map-overlay .city.core {
    filter: url(#soft-glow) drop-shadow(0 0 3px rgba(0, 0, 0, 0.8));
}

.map-overlay .city-label {
    font: 16px/1.05 system-ui, Segoe UI, Roboto, Arial, sans-serif;
    fill: var(--label);
    opacity: 0.95;
    font-weight: 600;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.8));
}

.map-overlay .route {
    fill: none;
    stroke-linecap: round;
    stroke-width: 3;
    stroke: url(#routeStroke);
    opacity: 0.8;
    filter: drop-shadow(0 0 3px rgba(255, 215, 128, 0.6));
}

.map-overlay .pulse {
    fill: url(#pulseGradient);
    opacity: 0;
}

.map-overlay .fly {
    filter: url(#soft-glow-strong);
}

/* ============================================
   Weight Distribution Visualization
============================================ */

.weight-distribution-visualization {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(133, 158, 63, 0.1);
}

.weight-distribution-image {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.weight-distribution-image img {
    transition: all 0.4s ease;
    border-radius: 15px;
}

.weight-distribution-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(133, 158, 63, 0.2);
}

.weight-distribution-caption h4 {
    color: var(--logistiq-black);
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
}

.weight-distribution-caption h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--logistiq-base), #6d8230);
    border-radius: 2px;
}

.weight-distribution-caption p {
    color: var(--logistiq-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments for weight distribution */
@media (max-width: 768px) {
    .weight-distribution-visualization {
        margin: 20px 0;
        padding: 20px;
    }
    
    .weight-distribution-caption h4 {
        font-size: 18px;
    }
    
    .weight-distribution-caption p {
        font-size: 14px;
    }
}

/* ============================================
   Hero Banner - Light & Modern Design
============================================ */

.banner-one--hero {
    position: relative;
    min-height: 90vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin-bottom: 0;
    padding-bottom: 0;
}

.banner-one__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.banner-one__video,
.banner-one__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    filter: brightness(0.7) contrast(1.1);
}

.banner-one--hero .container {
    position: relative;
    z-index: 10;
    padding: 60px 20px 80px;
    margin-bottom: 0;
}

.banner-one--hero .banner-one__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px;
}

.banner-one--hero .banner-one__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff !important;
    font-family: 'Manrope', 'Inter', sans-serif;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.banner-one--hero .banner-one__title-top {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.banner-one--hero .banner-one__subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 40px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.banner-one__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    border: 2px solid transparent;
}

.hero-btn--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.hero-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.hero-btn--outline {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.hero-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero animations */
.hero-animate {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-animate--delay-1 {
    animation-delay: 0.2s;
}

.hero-animate--delay-2 {
    animation-delay: 0.4s;
}

.hero-animate--delay-3 {
    animation-delay: 0.6s;
}

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

/* Responsive Hero Banner */
@media (max-width: 991px) {
    .banner-one__title {
        font-size: 2.5rem;
    }
    
    .banner-one__subtitle {
        font-size: 1.1rem;
    }
    
    .banner-one__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .banner-one--hero {
        min-height: 75vh;
        max-height: 75vh;
    }
    
    .banner-one--hero .container {
        padding: 40px 15px 60px;
    }
    
    .banner-one__title {
        font-size: 2rem;
    }
    
    .banner-one__title-top {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .banner-one__subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .hero-btn {
        padding: 16px 30px;
        font-size: 1rem;
    }
}

/* ============================================
   Calculator Mobile Responsive Styles
============================================ */

@media (max-width: 772px) {
    .page-wrapper .calculator-form {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .page-wrapper .form-group.full-width {
        grid-column: 1 !important;
    }
}

@media (max-width: 991px) {
    .page-wrapper .delivery-calculator-section {
        padding: 80px 0 !important;
    }
    
    .page-wrapper .delivery-calculator {
        padding: 50px 30px !important;
        border-radius: 24px !important;
    }
    
    .page-wrapper .calculator-title {
        font-size: 2.5rem !important;
        margin-bottom: 40px !important;
    }
    
    .page-wrapper .calculator-form {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        margin-bottom: 40px !important;
    }
    
    .page-wrapper .form-group {
        padding: 25px !important;
        border-radius: 16px !important;
    }
    
    .page-wrapper .form-group label {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }
    
    .page-wrapper .form-group input,
    .page-wrapper .form-group select,
    .page-wrapper .form-group textarea {
        padding: 18px 24px !important;
        font-size: 1.1rem !important;
        border-radius: 14px !important;
    }
    
    .page-wrapper .calculator-submit-btn {
        padding: 22px 40px !important;
        font-size: 1.2rem !important;
        border-radius: 18px !important;
        margin-top: 30px !important;
    }
}

@media (max-width: 767px) {
    .page-wrapper .delivery-calculator-section {
        padding: 60px 0 !important;
    }
    
    .page-wrapper .delivery-calculator {
        padding: 40px 20px !important;
        border-radius: 20px !important;
        margin: 0 15px !important;
    }
    
    .page-wrapper .calculator-title {
        font-size: 2rem !important;
        margin-bottom: 30px !important;
        padding: 0 10px !important;
    }
    
    .page-wrapper .calculator-title::after {
        width: 60px !important;
        height: 3px !important;
    }
    
    .page-wrapper .calculator-form {
        gap: 20px !important;
        margin-bottom: 30px !important;
    }
    
    .page-wrapper .form-group {
        padding: 20px !important;
        border-radius: 14px !important;
    }
    
    .page-wrapper .form-group label {
        font-size: 1rem !important;
        margin-bottom: 12px !important;
    }
    
    .page-wrapper .form-group label::after {
        width: 40px !important;
        height: 2px !important;
    }
    
    .page-wrapper .form-group input,
    .page-wrapper .form-group select,
    .page-wrapper .form-group textarea {
        padding: 16px 20px !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
    }
    
    .page-wrapper .form-group input[list] {
        padding-right: 45px !important;
        background-size: 18px !important;
        background-position: right 14px center !important;
    }
    
    .page-wrapper .form-group select {
        padding-right: 45px !important;
        background-size: 18px !important;
        background-position: right 14px center !important;
    }
    
    .page-wrapper .calculator-submit-btn {
        padding: 20px 30px !important;
        font-size: 1.1rem !important;
        border-radius: 16px !important;
        margin-top: 20px !important;
    }
}

@media (max-width: 480px) {
    .page-wrapper .delivery-calculator-section {
        padding: 40px 0 !important;
    }
    
    .page-wrapper .delivery-calculator {
        padding: 30px 15px !important;
        border-radius: 16px !important;
        margin: 0 10px !important;
    }
    
    .page-wrapper .calculator-title {
        font-size: 1.75rem !important;
        margin-bottom: 25px !important;
        line-height: 1.3 !important;
    }
    
    .page-wrapper .calculator-form {
        gap: 15px !important;
    }
    
    .page-wrapper .form-group {
        padding: 18px !important;
    }
    
    .page-wrapper .form-group label {
        font-size: 0.95rem !important;
    }
    
    .page-wrapper .form-group input,
    .page-wrapper .form-group select,
    .page-wrapper .form-group textarea {
        padding: 14px 18px !important;
        font-size: 0.95rem !important;
    }
    
    .page-wrapper .calculator-submit-btn {
        padding: 18px 25px !important;
        font-size: 1rem !important;
    }
}

/* ============================================
   Testimonials - Black Text Color
============================================ */

.testimonial-one__single-inner .text-box p {
    color: #000000 !important;
    font-weight: 400 !important;
}

.testimonial-one__single-inner .text-box {
    color: #000000 !important;
}

/* ============================================
   FAQ/Advantages - Black Text Color
============================================ */

.faq-one__content .accrodion-content .inner p,
.accrodion-content .inner p,
.faq-one .accrodion-content .inner p,
.faq-one .accrodion-content .inner,
.faq-one__content .accrodion-content .inner {
    color: #000000 !important;
    font-weight: 400 !important;
    -webkit-text-fill-color: #000000 !important;
    -webkit-text-stroke: none !important;
    text-shadow: none !important;
}
