/* Custom styles */

/* Button shine sweep + lift */
.sc_button, .hero-btn, button[type="submit"] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease !important;
}
.sc_button::after, .hero-btn::after, button[type="submit"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}
.sc_button:hover::after, .hero-btn:hover::after, button[type="submit"]:hover::after {
    left: 100%;
}
.sc_button:hover, .hero-btn:hover, button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}

/* Hero banner entrance animation */
.top_panel_image {
    animation: heroFadeIn 0.6s ease-out both;
}
.top_panel_image_title {
    animation: fadeUp 0.6s 0.2s both;
}
.top_panel_image .breadcrumbs {
    animation: fadeUp 0.6s 0.4s both;
}
@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Global Card Hover Effects
   ============================================ */

/* Feature cards (about-us columns, carriers columns, customers cards) */
.columns_wrap .sc_column_item,
.feature-card,
.sc_price_block,
.sc_testimonial_item {
    transition: all 0.35s ease !important;
}
.columns_wrap .sc_column_item:hover,
.feature-card:hover,
.sc_price_block:hover,
.sc_testimonial_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Feature card base styling */
.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px 25px;
    transition: all 0.35s ease;
    border: 1px solid #eee;
}
.feature-card img {
    transition: transform 0.35s ease;
}
.feature-card:hover img {
    transform: scale(1.1);
}
.feature-card h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #1a2a3a;
}
.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   Stats / Counter Section
   ============================================ */
.stat-item {
    padding: 20px 10px;
}
.stat-item .counter {
    font-size: 48px;
    font-weight: 700;
    color: #FF6600;
    display: inline-block;
    line-height: 1.1;
}
.stat-item .counter + span {
    font-size: 48px;
    font-weight: 700;
    color: #FF6600;
    display: inline-block;
    line-height: 1.1;
}
.stat-item p {
    font-size: 16px;
    color: #ccc;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Testimonials (about-us)
   ============================================ */
.testimonals_section {
    background: transparent;
}
.testimonals_section .sc_title {
    color: #fff;
}
.swiper-slide .sc_testimonial_item {
    background: #fff;
    border-radius: 16px;
    padding: 40px 35px 35px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}
.swiper-slide .sc_testimonial_item::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 64px;
    color: #FF6600;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 25px;
    line-height: 1;
}
.swiper-slide .sc_testimonial_avatar {
    text-align: center;
    margin-bottom: 20px;
}
.swiper-slide .sc_testimonial_avatar img {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border: 3px solid #FF6600;
}
.swiper-slide .sc_testimonial_wrap {
    text-align: center;
}
.swiper-slide .sc_testimonial_content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}
.swiper-slide .sc_testimonial_author {
    font-weight: 700;
    color: #1a2a3a;
    margin-top: 18px;
    font-size: 16px;
    letter-spacing: 0.3px;
}
.swiper-slide .sc_testimonial_author a {
    color: #1a2a3a;
    text-decoration: none;
}
.swiper-slide .sc_testimonial_field {
    font-size: 13px;
    color: #999;
    margin-top: 4px;
    letter-spacing: 0.2px;
}

/* Testimonial slider arrows */
.testimonals_section .sc_slider_controls_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}
.testimonals_section .sc_slider_prev,
.testimonals_section .sc_slider_next {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    cursor: pointer;
}
.testimonals_section .sc_slider_prev::before {
    font-family: FontAwesome;
    content: '\f104';
}
.testimonals_section .sc_slider_next::before {
    font-family: FontAwesome;
    content: '\f105';
}
.testimonals_section .sc_slider_prev:hover,
.testimonals_section .sc_slider_next:hover {
    background: #FF6600;
    color: #fff;
    transform: scale(1.1);
}

/* ============================================
   Price Blocks (forms)
   ============================================ */
.sc_price_block {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eee;
    margin-bottom: 30px;
}
.sc_price_block_head {
    margin-bottom: 20px;
}
.sc_price_block_money {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a3a;
}
.sc_price_block_title {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}
.sc_price_block_description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding: 8px 15px;
    background: #f9f9f9;
    border-radius: 20px;
    display: inline-block;
}

/* ============================================
   Hero Sub-section (customers page)
   ============================================ */
.hero-sub {
    padding: 60px 0;
}
.hero-sub .sc_title {
    font-size: 42px;
    margin-bottom: 20px;
}
.hero-sub-text {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}
.hero-sub .sc_price_block_link {
    margin-top: 30px;
}
.sc_button_outline {
    background: transparent !important;
    border: 2px solid #FF6600 !important;
    color: #FF6600 !important;
}
.sc_button_outline:hover {
    background: #FF6600 !important;
    color: #fff !important;
}

/* ============================================
   About Page
   ============================================ */
.about-intro {
    max-width: 750px;
    margin: 0 auto 50px;
}
.about-label {
    color: #FF6600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    font-weight: 600;
}
.about-intro .sc_title {
    color: #1a2a3a;
    font-size: 36px;
    margin-bottom: 18px;
}
.about-intro .sc_title::after {
    content: none;
}
.about-intro-text {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}
.about-content {
    margin-bottom: 35px;
}
.about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
}
.about-btn-wrap {
    margin-top: 10px;
}

/* About Stats */
.about-stats {
    background: #1a2a3a;
    padding: 70px 0;
}
.about-stat-item {
    padding: 20px 10px;
}
.about-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #FF6600;
    display: inline-block;
    line-height: 1.1;
}
.about-stat-item p {
    font-size: 15px;
    color: #ccc;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Values */
.about-values {
    padding: 80px 0;
    background: #fff;
}
.value-card {
    text-align: center;
    padding: 40px 25px 35px;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    background: #fff;
    margin-bottom: 30px;
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-color: #FF6600;
}
.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff5ed;
    transition: all 0.35s ease;
    font-size: 30px;
    color: #FF6600;
}
.value-card:hover .value-icon {
    background: #FF6600;
    color: #fff;
}
.value-card h4 {
    font-size: 19px;
    color: #1a2a3a;
    margin-bottom: 14px;
}
.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
    padding: 70px 0;
    text-align: center;
}
.about-cta h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 14px;
}
.about-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    margin-bottom: 30px;
}
.about-cta .sc_button {
    padding: 16px 45px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.about-cta .sc_button_outline {
    color: #fff !important;
    border-color: #fff !important;
}
.about-cta .sc_button_outline:hover {
    background: #FF6600 !important;
    border-color: #FF6600 !important;
    color: #fff !important;
}

/* ============================================
   Page Content Sections - Enhanced Spacing
   ============================================ */
.fullwidth_section {
    padding: 70px 0;
}
.copyright_wrap {
    padding: 30px 0 !important;
}
.light_section {
    background: #fafafa;
}

/* ============================================
   Column Item (carriers, about-us columns)
   ============================================ */
.columns_wrap .sc_column_item {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}
.columns_wrap .sc_column_item figure {
    margin-bottom: 15px;
}
.columns_wrap .sc_column_item h4 {
    font-size: 18px;
    color: #1a2a3a;
    margin-bottom: 12px;
}
.columns_wrap .sc_column_item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   Careers Page
   ============================================ */
.careers-section {
    padding: 80px 0;
}
.careers-text {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
}
.careers-cta {
    color: #FF6600;
    font-weight: 700;
    font-size: 20px;
    text-decoration: underline;
    transition: color 0.3s;
    display: inline-block;
    margin-top: 5px;
}
.careers-cta:hover {
    color: #e65c00;
}

/* ============================================
   Section Titles
   ============================================ */
.sc_title.sc_title_regular.sc_align_center {
    position: relative;
    margin-bottom: 50px;
    font-size: 32px;
    color: #1a2a3a;
}
.sc_title.sc_title_regular.sc_align_center::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FF6600;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ============================================
   Forms Page
   ============================================ */
.forms-subtitle {
    font-size: 20px;
    color: #1a2a3a;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6600;
    display: inline-block;
}

/* ============================================
   Image Rounded Corners
   ============================================ */
.img-responsive {
    border-radius: 10px;
}

/* ============================================
   Stats Section (customers)
   ============================================ */
.stats-section {
    background: #1a2a3a;
    padding: 60px 0;
    color: white;
}

/* ============================================
   OTR Services Section (customers)
   ============================================ */
.otr-services {
    padding: 60px 0;
}
.otr-services .sc_title {
    margin-bottom: 40px;
}
.otr-btn-wrap {
    margin-top: 40px;
}
.sc_button_primary {
    background: #FF6600 !important;
}
.service-list h4 {
    font-size: 18px;
    color: #1a2a3a;
    margin-bottom: 8px;
    margin-top: 25px;
}
.service-list h4:first-child {
    margin-top: 0;
}
.service-list h4 i {
    width: 28px;
    text-align: center;
    color: #FF6600;
}
.service-list p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    padding-left: 32px;
    margin-bottom: 0;
}

/* ============================================
   Client Logos (about-us)
   ============================================ */
.clients_section .sc_image_wrap {
    padding: 20px 30px;
    opacity: 0.6;
    transition: opacity 0.35s ease;
}
.clients_section .sc_image_wrap:hover {
    opacity: 1;
}

/* ============================================
   Carrier Feature Cards
   ============================================ */
.carrier-features {
    padding: 80px 0;
    background: #edf1f6;
}
.carrier-features .row {
    display: flex;
    flex-wrap: wrap;
}
.carrier-card-wrap {
    margin-bottom: 30px;
}
.carrier-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px 35px;
    border: 1px solid #dce3ed;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.carrier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #2a7de1;
    transform: scaleX(0);
    transition: transform 0.35s ease;
}
.carrier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(42,125,225,0.15);
    border-color: #2a7de1;
}
.carrier-card:hover::before {
    transform: scaleX(1);
}
.carrier-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #f0f6ff 0%, #e6f0ff 100%);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 30px;
    color: #2a7de1;
    box-shadow: 0 4px 12px rgba(42,125,225,0.08);
}
.carrier-card:hover .carrier-icon {
    background: linear-gradient(135deg, #2a7de1, #1a5cb5);
    color: #fff;
    border-radius: 50%;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(42,125,225,0.3);
}
.carrier-card h4 {
    font-size: 19px;
    color: #1a2a3a;
    margin-bottom: 14px;
    font-weight: 700;
}
.carrier-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   Blog Grid Images (carriers OTR Freight Modes)
   ============================================ */
.sc_blogger_item .post_thumb img {
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.sc_blogger_item:hover .post_thumb img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.sc_blogger_item {
    transition: all 0.35s ease;
}
.sc_blogger_item:hover {
    transform: translateY(-4px);
}

/* ============================================
   Base Page Background
   ============================================ */
body {
    background: #e2e6ec;
}
.light_section {
    background: #e8ecf2;
}
.carrier-features {
    padding: 80px 0;
    background: #e2e6ec;
}


/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: 80px 0;
}
.contact-info-card {
    background: #1a2a3a;
    border-radius: 20px;
    padding: 45px 35px;
    color: #fff;
    height: 100%;
}
.contact-info-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}
.contact-info-sub {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin-bottom: 35px;
    line-height: 1.6;
}
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    font-size: 20px;
    color: #FF6600;
}
.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.contact-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}
.contact-info-text span:last-child {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}
.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-social-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}
.contact-social-icons {
    display: flex;
    gap: 10px;
}
.contact-social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.contact-social-icon:hover {
    background: #FF6600;
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    border: 1px solid #e8ecf2;
    height: 100%;
}
.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 30px;
}
.contact-field {
    margin-bottom: 20px;
}
.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e4ea;
    border-radius: 12px;
    font-size: 15px;
    color: #333;
    background: #f8f9fb;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}
.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #FF6600;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,102,0,0.06);
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #aaa;
}
.contact-submit {
    background: #FF6600;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.contact-submit:hover {
    background: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,102,0,0.25);
}
.contact-submit i {
    font-size: 15px;
    transition: transform 0.3s ease;
}
.contact-submit:hover i {
    transform: translateX(4px);
}
.contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.contact-result {
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}
.contact-result.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.contact-result.error {
    display: block;
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ffccbc;
}

/* ============================================
   Responsive Tweaks - All Mobile Sizes
   ============================================ */

/* Shift Nationwide Coverage text slightly right so it doesn't overflow */
.sc_skills_bar3.sc_skills_vertical .sc_skills_info {
    text-align: center !important;
}

/* Force responsive on all mobile sizes */
@media (max-width: 767px) {
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    .page_wrap {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    .page_content {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .sc_content.container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* Small phones (< 480px) */
@media (max-width: 480px) {
    .fullwidth_section {
        padding: 45px 0;
    }
    .sc_title.sc_title_regular.sc_align_center {
        font-size: 24px;
        margin-bottom: 28px;
    }
    .hero-heading {
        font-size: 30px !important;
    }
    .hero-desc {
        font-size: 15px !important;
    }
    .hero-sub .sc_title {
        font-size: 28px !important;
    }
    .hero-sub-text {
        font-size: 15px !important;
    }
    .about-intro .sc_title {
        font-size: 24px;
    }
    .about-intro-text {
        font-size: 15px;
    }
    .about-stat-number,
    .stat-item .counter,
    .stat-item .counter + span {
        font-size: 32px;
    }
    .about-cta h2 {
        font-size: 24px;
    }
    .contact-info-title {
        font-size: 22px;
    }
    .contact-form-title {
        font-size: 20px;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 28px 18px;
    }
    .contact-info-items {
        gap: 20px;
    }
    .contact-submit {
        width: 100%;
        justify-content: center;
    }
    .feature-card {
        padding: 22px 14px;
    }
    .feature-card h4 {
        font-size: 16px;
    }
    .value-card {
        padding: 24px 14px 22px;
    }
    .value-card h4 {
        font-size: 15px;
    }
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 14px;
    }
    .carrier-card {
        padding: 28px 16px 24px;
    }
    .carrier-card h4 {
        font-size: 16px;
    }
    .carrier-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 14px;
    }
    .news_section .columns_wrap .col-sm-4 {
        width: 100%;
        float: none;
        padding: 0 0 12px;
    }
    .service-list h4 {
        font-size: 16px;
    }
    .otr-services .sc_title {
        font-size: 24px !important;
    }
    .careers-text {
        font-size: 15px;
    }
    .sc_blogger_item .post_thumb img {
        border-radius: 6px;
    }
    .sc_price_block {
        padding: 22px 14px;
    }
    .sc_price_block_money {
        font-size: 20px;
    }
    .forms-subtitle {
        font-size: 17px;
        margin: 30px 0 16px;
    }
    .price_section .col-xs-6 {
        width: 100%;
    }
    .sc_testimonial_item {
        padding: 22px 16px;
    }
    .swiper-slide .sc_testimonial_avatar img {
        width: 56px;
        height: 56px;
    }
    .swiper-slide .sc_testimonial_content p {
        font-size: 14px;
    }
}

/* Phones & small tablets (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .fullwidth_section {
        padding: 50px 0;
    }
    .sc_title.sc_title_regular.sc_align_center {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .hero-heading {
        font-size: 34px !important;
    }
    .hero-sub .sc_title {
        font-size: 32px !important;
    }
    .about-intro .sc_title {
        font-size: 28px;
    }
    .about-stat-number,
    .stat-item .counter,
    .stat-item .counter + span {
        font-size: 36px;
    }
    .stat-item p {
        font-size: 13px;
    }
    .about-cta h2 {
        font-size: 26px;
    }
    .feature-card {
        padding: 25px 15px;
    }
    .columns_wrap .sc_column_item {
        padding: 20px 15px;
    }
    .about-content .col-md-6 {
        margin-bottom: 20px;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
    .contact-section .col-md-5,
    .contact-section .col-md-7 {
        margin-bottom: 30px;
    }
    .value-card {
        padding: 25px 14px 22px;
    }
    .value-card h4 {
        font-size: 16px;
        word-break: break-word;
        hyphens: auto;
    }
    .value-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
        margin-bottom: 16px;
    }
    .carrier-card {
        padding: 30px 18px 25px;
    }
    .carrier-card h4 {
        font-size: 17px;
    }
    .carrier-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    .news_section .columns_wrap .col-sm-4 {
        width: 50%;
        float: left;
        padding: 0 8px;
        margin-bottom: 16px;
    }
    .news_section .post_thumb img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    .sc_price_block {
        padding: 25px 16px;
    }
    .sc_testimonial_item {
        padding: 28px 20px;
    }
}

/* Tablets (768px - 959px) */
@media (min-width: 768px) and (max-width: 959px) {
    .fullwidth_section {
        padding: 60px 0;
    }
    .sc_title.sc_title_regular.sc_align_center {
        font-size: 28px;
        margin-bottom: 35px;
    }
    .hero-heading {
        font-size: 40px !important;
    }
    .feature-card {
        padding: 25px 18px;
    }
    .value-card {
        padding: 30px 18px 25px;
    }
    .carrier-card {
        padding: 30px 20px 25px;
    }
    .news_section .columns_wrap .col-sm-4 {
        width: 33.33%;
        float: left;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    .news_section .post_thumb img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
    .contact-info-card,
    .contact-form-card {
        padding: 35px 25px;
    }
}
